Skip to content

Instantly share code, notes, and snippets.

View unref's full-sized avatar

Nikolay G unref

  • saint-petersburg, russia
View GitHub Profile
@unref
unref / m3u8-to-mp4.md
Created January 31, 2021 16:11 — forked from tzmartin/m3u8-to-mp4.md
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