ziahamza / webui-aria2

The aim for this project is to create the worlds best and hottest interface to interact with aria2. Very simple to use, just download and open index.html in any web browser.
MIT License
9.94k stars 1.47k forks source link

download m3u8 #520

Open archaeondlg opened 5 years ago

archaeondlg commented 5 years ago

When i download movies by a url of m3u8, it just downloads m3u8 file but not movie. what can i do to download a movie by the url of m3u8?

no1xsyzy commented 5 years ago

Use tools to parse that m3u8 file. Otherwise, ask for feature in aria2/aria2

no1xsyzy commented 5 years ago

BTW, m3u8 is not necessarily one file. It can combine audio and video from different files, include subtitle track, streaming, so on. Even TV channel (which lasts infinitely long) can be provided with m3u8.

josuearisty commented 4 years ago

When i download movies by a url of m3u8, it just downloads m3u8 file but not movie. what can i do to download a movie by the url of m3u8?

To download m3u8 movie files I use ffmpeg. This is the code: ffmpeg -i "url.m3u8" -c copy output.mp4 It could ask you to do something else but it is very easy anyway.