Skip to content

Instantly share code, notes, and snippets.

View stepbrobd's full-sized avatar
馃摗
F/KC1VZR

StepBroBD stepbrobd

馃摗
F/KC1VZR
View GitHub Profile
@stepbrobd
stepbrobd / m3u8.sh
Last active October 5, 2023 15:17
download m3u8 stream to mp4 with ffmpeg
#!/bin/bash
set -exuo pipefail
ffmpeg \
-v debug \
-headers $'Connection: Keep-Alive\r\n' \
-headers $'User-Agent: <user agent>\r\n' \
-headers $'Cookie: key1=value1; key2=value2\r\n' \
-i 'https://<target m3u8 URL>' \