Tony Bark to Technology@lemmy.worldEnglish • 1 month agoThe Age-Checked Internet Has Arrivedwww.wired.comexternal-linkmessage-square150fedilinkarrow-up1570arrow-down110
arrow-up1560arrow-down1external-linkThe Age-Checked Internet Has Arrivedwww.wired.comTony Bark to Technology@lemmy.worldEnglish • 1 month agomessage-square150fedilink
minus-square@gandalf_der_12te@discuss.tchncs.delinkfedilinkEnglish3•edit-21 month agoto convert from hls (m3u8 streams) to mp4, you can also use ffmpeg: ffmpeg -i https://y.com/path/to/stream.m3u8 -c copy output.mp4 -i <input> specifies the input file -c copy specifies that the contents should not be re-encoded (which would take a lot of time and computing power) output.mp4 is the output file
minus-squaremasterofn001linkfedilinkEnglish3•1 month agoNow this I can use. Vlc can be a bit… Tedious. Thanks.
to convert from hls (m3u8 streams) to mp4, you can also use ffmpeg:
ffmpeg -i https://y.com/path/to/stream.m3u8 -c copy output.mp4
-i <input>
specifies the input file-c copy
specifies that the contents should not be re-encoded (which would take a lot of time and computing power)output.mp4
is the output fileNow this I can use.
Vlc can be a bit… Tedious.
Thanks.