Changes between Version 78 and Version 79 of StreamingGuide
- Timestamp:
- Oct 16, 2016, 6:25:21 PM (18 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StreamingGuide
v78 v79 54 54 Example 1, no sound: 55 55 {{{ 56 ffmpeg -f x11grab -s 1920x1200 - r15 -i :0.0 -c:v libx264 -preset fast -pix_fmt yuv420p -s 1280x800 -threads 0 -f flv "rtmp://live.twitch.tv/app/live_********_******************************"56 ffmpeg -f x11grab -s 1920x1200 -framerate 15 -i :0.0 -c:v libx264 -preset fast -pix_fmt yuv420p -s 1280x800 -threads 0 -f flv "rtmp://live.twitch.tv/app/live_********_******************************" 57 57 }}} 58 58 Example 2, first screen (on dual screen setup, or if on a single screen): 59 59 {{{ 60 ffmpeg -f x11grab -s 1920x1200 - r15 -i :0.0 -f pulse -ac 2 -i default -c:v libx264 -preset fast -pix_fmt yuv420p -s 1280x800 -c:a aac -b:a 160k -ar 44100 -threads 0 -f flv "rtmp://live.twitch.tv/app/live_********_******************************"60 ffmpeg -f x11grab -s 1920x1200 -framerate 15 -i :0.0 -f pulse -ac 2 -i default -c:v libx264 -preset fast -pix_fmt yuv420p -s 1280x800 -c:a aac -b:a 160k -ar 44100 -threads 0 -f flv "rtmp://live.twitch.tv/app/live_********_******************************" 61 61 }}} 62 62 Example 3, second screen (on dual screen setup): 63 63 {{{ 64 ffmpeg -f x11grab -s 1920x1200 - r15 -i :0.0+1920,0 -f pulse -ac 2 -i default -c:v libx264 -preset fast -pix_fmt yuv420p -s 1280x800 -c:a aac -b:a 160k -ar 44100 -threads 0 -f flv "rtmp://live.twitch.tv/app/live_********_******************************"64 ffmpeg -f x11grab -s 1920x1200 -framerate 15 -i :0.0+1920,0 -f pulse -ac 2 -i default -c:v libx264 -preset fast -pix_fmt yuv420p -s 1280x800 -c:a aac -b:a 160k -ar 44100 -threads 0 -f flv "rtmp://live.twitch.tv/app/live_********_******************************" 65 65 }}} 66 66