Created
November 3, 2018 07:19
Take a screenshot of a live twitch stream.
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
# "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