Hello,
Songs may have art embedded in them (ex: an mp3 file can have album art). How does VLC expose this information?
What I know so far:
1. I can get access to the art url by using "libvlc_meta_t.libvlc_meta_ArtworkURL"
This will return "attachment://" if the art is embedded in the file.
2. I see that the file "src/input/meta.c" has lots of code that appears to extract the image itself from the media file.
Does anyone know how I can access this data using libvlc (or anything else)? I want to be able to display album art in my application which uses libvlc as its media player.
Thank you,
Marc