Created
December 24, 2022 22:40
-
-
Save matu3ba/615ca0f110db39c805b3ed11f023b292 to your computer and use it in GitHub Desktop.
download chunklist streams (m3u8) with ffmpeg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
#sript to download chunklist streams videos | |
#ffmpeg -i "url_path_to_file.m3u8" -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 file.mp4 | |
ffmpeg -i "uri/chunklist_somehash.m3u8" -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 file.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment