anyone know of a host or uploader that can upload .m3u8 files to mp4?

SamuraiJack56

Member
22
2024
13
630
im looking for an uploader that will convert .m3u8 files (not live streams) to mp4 video, all the url's are from cloudfront.net/streams/ domains
any help would be appreciated, i dont want to have to download them all to my pc and then upload them
 
5 comments
Yes I developed a script that convert m3u8 to mp4 with all available qualities . But it is not for sale yet . I can help if you have some links want to conert just PM
 
chatgpt + python + ffmpeg
one file:
ffmpeg -i "input.m3u8" -c copy -bsf:a aac_adtstoasc output.mp4

and more than one files:
@Echo offfor %%f in (*.m3u8) do ( ffmpeg -i "%%f" -c copy -bsf:a aac_adtstoasc "%%~nf.mp4" echo Converted %%f to %%~nf.mp4)
 
chatgpt + python + ffmpeg
one file:
ffmpeg -i "input.m3u8" -c copy -bsf:a aac_adtstoasc output.mp4

and more than one files:
@Echo offfor %%f in (*.m3u8) do ( ffmpeg -i "%%f" -c copy -bsf:a aac_adtstoasc "%%~nf.mp4" echo Converted %%f to %%~nf.mp4)
could you please elaborate more on what this is? and do i upload the code to a webserver or what?
Post automatically merged:

Yes I developed a script that convert m3u8 to mp4 with all available qualities . But it is not for sale yet . I can help if you have some links want to conert just PM
i pm'ed you
 
could you please elaborate more on what this is? and do i upload the code to a webserver or what?
You do this on your computer.
But if you want it automated, you can make a php script with python or whatever language you want, put it on the server and it does everything automatically.

You must have ffmpeg and python installed on the server.
Depending on the number of requests / files, traffic, file size, ffmpeg can consume a lot of resources, so you need a good server.
 
Back
Top