Changes between Version 21 and Version 22 of Capture/Desktop
- Timestamp:
- Apr 27, 2020, 1:58:04 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Capture/Desktop
v21 v22 110 110 111 111 {{{ 112 ffmpeg -video_size 1920x1080 -framerate 30 -f x11grab -i :0.0 -c:v libx264 -crf 0 -preset ultrafast output.mkv112 ffmpeg -video_size 1920x1080 -framerate 30 -f x11grab -i :0.0 -c:v libx264rgb -crf 0 -preset ultrafast output.mkv 113 113 }}} 114 114 115 {{{-crf 0}}} tells x264 to encode in lossless mode; {{{-preset ultrafast}}} advises it to do so fast. 115 {{{-crf 0}}} tells x264 to encode in lossless mode; {{{-preset ultrafast}}} advises it to do so fast. Note the use of `libx264rgb` rather than `libx264`; the latter would do a lossy conversion from RGB to yuv444p. 116 116 117 117 The encoder should be fast enough on most modern hardware to record without any framedrop, and even leave enough CPU headroom for other applications. … … 120 120 121 121 {{{ 122 ffmpeg -i output.mkv -c:v libx264 -crf 0 -preset veryslow output-smaller.mkv122 ffmpeg -i output.mkv -c:v libx264rgb -crf 0 -preset veryslow output-smaller.mkv 123 123 }}}
