Last active
February 19, 2024 22:46
-
-
Save vahidd/99cb6e9271278acf4f2606b33ae6aeb0 to your computer and use it in GitHub Desktop.
How to download HLS streams
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
| Take the following steps: | |
| 1- First install ffmpeg with brew: | |
| $ brew install ffmpeg | |
| 2- Then run the following command: | |
| $ ffmpeg -i "HLS STREAM URL" -c copy -bsf:a aac_adtstoasc output.mp4 | |
| (don't forgot to replace "HLS STREAM URL" with your stream URL and also double quote the url) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment