Skip to content

Instantly share code, notes, and snippets.

@nddrylliog
Created October 27, 2013 17:57
Show Gist options
  • Save nddrylliog/7185717 to your computer and use it in GitHub Desktop.
Save nddrylliog/7185717 to your computer and use it in GitHub Desktop.
Script to stream to twitch.tv
#!/bin/sh
YOUR_KEY="something that starts with live_, get it at http://www.twitch.tv/broadcast"
ffmpeg -v warning -s 1920x1080 -f x11grab -r 25 -i :0.0 -f pulse -ac 1 -i default -c:v libx264 -preset veryfast -b:v 450k -maxrate 700k -bufsize 4000k -pix_fmt yuv420p -s 1280x720 -c:a libmp3lame -ab 64k -ar 44100 -threads 2 -f flv "rtmp://live-ams.twitch.tv/app/#{YOUR_KEY}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment