Skip to content

Instantly share code, notes, and snippets.

View h3ssan's full-sized avatar

Hassan A Hashim h3ssan

View GitHub Profile
@h3ssan
h3ssan / m3u8-to-mp4.md
Created September 13, 2022 15:50 — 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