Changes between Version 4 and Version 5 of Capture/Desktop
- Timestamp:
- Oct 9, 2013, 8:52:02 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Capture/Desktop
v4 v5 3 3 Use the '''[http://ffmpeg.org/ffmpeg-devices.html#x11grab x11grab]''' device: 4 4 {{{ 5 ffmpeg - f x11grab -r 25 -s 1024x768-i :0.0+100,200 output.flv5 ffmpeg -video_size 1024x768 -framerate 25 -f x11grab -i :0.0+100,200 output.flv 6 6 }}} 7 7 … … 10 10 If you need audio too, you can use '''[http://ffmpeg.org/ffmpeg-devices.html#alsa-1 alsa]''' like this: 11 11 {{{ 12 ffmpeg - f x11grab -r 25 -s 1024x768-i :0.0+100,200 -f alsa -ac 2 -i pulse output.flv12 ffmpeg -video_size 1024x768 -framerate 25 -f x11grab -i :0.0+100,200 -f alsa -ac 2 -i pulse output.flv 13 13 }}} 14 14