Convert M3U playlist to URL

rale -  
jee pee Posted messages 31912 Registration date   Status Modérateur Last intervention   -

Hello,

I have an M3U playlist file, but I want to create a URL from this playlist to add it to my application. Do you know how to do this, please?

THANK YOU

1 réponse

jee pee Posted messages 31912 Registration date   Status Modérateur Last intervention   9 947
 

Hello,

A .M3U file is a text file that can be opened with an editor like Notepad; it looks like this:

 #EXTM3U #EXTINF:31,Suprême NTM - Interlude ../NTM/Supreme NTM/06-Interlude.mp4 #EXTINF:247,Suprême NTM Feat. Lord Kossity - Ma Benz ../NTM/Supreme NTM/07-Ma Benz.mp4 #EXTINF:242,Suprême NTM Feat. Jahyze - C'est Arrivé Près D'chez Toi ../NTM/Supreme NTM/08-C'est Arrivé Près D'chez Toi.mp4 #EXTINF:219,Suprême NTM - On Est Encore Là (I) ../NTM/Supreme NTM/09-On Est Encore Là (I).mp4

a file header tag
and for each track 2 lines (or more): the title and the file name.

I have a relative address ../NTM/Supreme NTM/07-Ma Benz.mp4 but more generally, a complete path D:/Musique/Artistes/NTM/Supreme NTM/07-Ma Benz.mp4 is found.

Do you want to make a URL for each title? In what form would your URL be?
a file:///D:/Musique/Artistes/NTM/Supreme NTM/07-Ma Benz.mp4

And what application is this URL intended for? How to pass the URL to it?


0