I am developing an audio player application using Juce Framework. The music file paths are stored in a string array and when playlist is saved as file, a txt file includes these paths is created.
I want to read & write m3u files and display mp3 tags such as song name, artist name, cover etc. So what do you suggest? Is there any example or library you would suggest to create and use m3u playlist files?
I examined an m3u file created by VLC Player. It seems like all the process can be done using string processing functions. The m3u file I have examined is below.
#EXTM3U
#EXTINF:244,RihannaVEVO - Rihanna - Diamonds
music.mp3
Is the constant and only format like the example above? What do you suggest to done this work?
here is an example. You will have to implement your own SAF read/write mechanisms but hopefully this gets you on your way