Skip to content

Instantly share code, notes, and snippets.

View machine1376's full-sized avatar

Machine1376 machine1376

View GitHub Profile
@tzmartin
tzmartin / m3u8-to-mp4.md
Last active July 16, 2024 14:46
m3u8 stream to mp4 using ffmpeg

1. Copy m3u8 link

Alt text

2. Run command

echo "Enter m3u8 link:";read link;echo "Enter output filename:";read filename;ffmpeg -i "$link" -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 $filename.mp4