Created
May 17, 2021 21:08
-
-
Save DaniruKun/7571fecd72aff650ae2abfd95744484a to your computer and use it in GitHub Desktop.
Download YT VOD in timestamp interval
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
youtube-dl -f "(bestvideo+bestaudio/best)[protocol!*=dash]" --external-downloader ffmpeg --external-downloader-args "-ss 00:00:00 -to 00:00:00" "youtube link" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Another alternate version:
ffmpeg -ss 00:01:00 -to 00:02:00 -i "$(youtube-dl -f best --get-url 'https://www.youtube.com/watch?v=dc7I-i7sPrg')" -c:v copy -c:a copy kiosk.mp4