-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose FLAC VORBIS_COMMENT block in metadata #5527
Comments
If it's stored as ID3 data at the start of the file and isn't disabled via |
Sure, I have tried to retrieve the title with MediaMetadataRetriever, it works, so it definitely in there, I just don't know the proper way to get it |
This stream does not have an ID3 prefix, but after the STREAMINFO block at the start there is a PICTURE block and a VORBIS_COMMENT block. The latter has a title and artist, but I don't think we're parsing it at the moment. (It looks like we only handle STREAMINFO and SEEKTABLE in our libflac wrapper.) I will mark this as a enhancement to store the vorbis comment payload in the metadata but it's low priority for now. I think we'd also be happy to accept a pull request for this. |
@ojw28 |
This is being worked on already, I think by @vavadhani or one of his colleagues. We expect support to be added soon. |
Alright, then I will search for something else :) |
Decode and add vorbis comments from the flac file to metadata. google#5527
Is there a way to pull out .flac file metadata (title, album name...)? I tried the EventLogger in the sample app, It work for .mp3 .m4a but not for .flac. I believe the default FlacExtractor already enable peekId3Data.
Not sure this feature is implemented or not.
The text was updated successfully, but these errors were encountered: