Created
November 3, 2018 07:19
-
-
Save Vigrond/6571d5348e04539e17fd5042e6f345a9 to your computer and use it in GitHub Desktop.
Take a screenshot of a live twitch stream.
This file contains 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
# "install ffmpeg" | |
# git clone https://github.com/FFmpeg/FFmpeg.git | |
# cd FFmpeg | |
# ./configure --enable-openssl | |
# make | |
# sudo make install | |
# | |
# "install youtube-dl" | |
# pip3 install youtube-dl | |
# | |
# then... | |
ffmpeg -i $(youtube-dl -g 'https://www.twitch.tv/bobross') -vframes 1 -pred 1 output.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment