0

Hi ,,,,is it possible to open a m3u files in Html...and how ....any tips..on how to...thanks in advance.👍

M3u .files. inventory.

24th Apr 2020, 4:25 AM
RAJENDRA MAHABIR
RAJENDRA MAHABIR - avatar
2 Antworten
0
What is m3u files?
24th Apr 2020, 3:30 PM
🇮🇳Vivek🇮🇳
🇮🇳Vivek🇮🇳 - avatar
0
🇮🇳Vivek🇮🇳 m3u is a playlist text file format (originaly from winamp audio player)... RAJENDRA MAHABIR it's only possible with the help of a server sided language (the server could be local), with the file to be opened stored in the server area... You need to use JS on client/front side (inside an html page) to make a XMLHttpRequest for the file to the server, and send from server the file content and build the html dynamically with JS using DOM API (or build dynamically the html page on server side to include the file content either as data reachable by JS from client/front side or as html formatted content directly). JS access to client/front side file system is not allowed for security reasons ;) Another workaround would be to upload the file to the server from your local file system through the html page (doesn't requires js but user actions and so it's allowed as the user allows manually access to specific file explicitly), but that doesn't avoid the other operations ;)
25th Apr 2020, 2:11 AM
visph
visph - avatar