Tony Bark@pawb.social to Technology@lemmy.worldEnglish · 2 days agoThe Age-Checked Internet Has Arrivedwww.wired.comexternal-linkmessage-square144fedilinkarrow-up1553arrow-down112
arrow-up1541arrow-down1external-linkThe Age-Checked Internet Has Arrivedwww.wired.comTony Bark@pawb.social to Technology@lemmy.worldEnglish · 2 days agomessage-square144fedilink
minus-squaregandalf_der_12te@discuss.tchncs.delinkfedilinkEnglisharrow-up3·edit-223 hours 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-squaremasterofn001@lemmy.calinkfedilinkEnglisharrow-up3·19 hours 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.