| OLD | NEW |
| 1 \input texinfo @c -*- texinfo -*- | 1 \input texinfo @c -*- texinfo -*- |
| 2 | 2 |
| 3 @settitle FFmpeg Documentation | 3 @settitle FFmpeg Documentation |
| 4 @titlepage | 4 @titlepage |
| 5 @sp 7 | 5 @sp 7 |
| 6 @center @titlefont{FFmpeg Documentation} | 6 @center @titlefont{FFmpeg Documentation} |
| 7 @sp 3 | 7 @sp 3 |
| 8 @end titlepage | 8 @end titlepage |
| 9 | 9 |
| 10 @chapter Synopsis | 10 @chapter Synopsis |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 @item hd480 | 219 @item hd480 |
| 220 852x480 | 220 852x480 |
| 221 @item hd720 | 221 @item hd720 |
| 222 1280x720 | 222 1280x720 |
| 223 @item hd1080 | 223 @item hd1080 |
| 224 1920x1080 | 224 1920x1080 |
| 225 @end table | 225 @end table |
| 226 | 226 |
| 227 @item -aspect @var{aspect} | 227 @item -aspect @var{aspect} |
| 228 Set aspect ratio (4:3, 16:9 or 1.3333, 1.7777). | 228 Set aspect ratio (4:3, 16:9 or 1.3333, 1.7777). |
| 229 @item -croptop @var{size} (deprecated - use the crop filter instead) | 229 @item -croptop @var{size} |
| 230 Set top crop band size (in pixels). | 230 @item -cropbottom @var{size} |
| 231 @item -cropbottom @var{size} (deprecated - use the crop filter instead) | 231 @item -cropleft @var{size} |
| 232 Set bottom crop band size (in pixels). | 232 @item -cropright @var{size} |
| 233 @item -cropleft @var{size} (deprecated - use the crop filter instead) | 233 All the crop options have been removed. Use -vf |
| 234 Set left crop band size (in pixels). | 234 crop=width:height:x:y instead. |
| 235 @item -cropright @var{size} (deprecated - use the crop filter instead) | 235 |
| 236 Set right crop band size (in pixels). | |
| 237 @item -padtop @var{size} | 236 @item -padtop @var{size} |
| 238 @item -padbottom @var{size} | 237 @item -padbottom @var{size} |
| 239 @item -padleft @var{size} | 238 @item -padleft @var{size} |
| 240 @item -padright @var{size} | 239 @item -padright @var{size} |
| 241 @item -padcolor @var{hex_color} | 240 @item -padcolor @var{hex_color} |
| 242 All the pad options have been removed. Use -vf | 241 All the pad options have been removed. Use -vf |
| 243 pad=width:height:x:y:color instead. | 242 pad=width:height:x:y:color instead. |
| 244 @item -vn | 243 @item -vn |
| 245 Disable video recording. | 244 Disable video recording. |
| 246 @item -bt @var{tolerance} | 245 @item -bt @var{tolerance} |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 Intra_dc_precision. | 488 Intra_dc_precision. |
| 490 @item -vtag @var{fourcc/tag} | 489 @item -vtag @var{fourcc/tag} |
| 491 Force video tag/fourcc. | 490 Force video tag/fourcc. |
| 492 @item -qphist | 491 @item -qphist |
| 493 Show QP histogram. | 492 Show QP histogram. |
| 494 @item -vbsf @var{bitstream_filter} | 493 @item -vbsf @var{bitstream_filter} |
| 495 Bitstream filters available are "dump_extra", "remove_extra", "noise", "h264_mp4
toannexb", "imxdump", "mjpegadump". | 494 Bitstream filters available are "dump_extra", "remove_extra", "noise", "h264_mp4
toannexb", "imxdump", "mjpegadump". |
| 496 @example | 495 @example |
| 497 ffmpeg -i h264.mp4 -vcodec copy -vbsf h264_mp4toannexb -an out.h264 | 496 ffmpeg -i h264.mp4 -vcodec copy -vbsf h264_mp4toannexb -an out.h264 |
| 498 @end example | 497 @end example |
| 498 @item -force_key_frames @var{time}[,@var{time}...] |
| 499 Force key frames at the specified timestamps, more precisely at the first |
| 500 frames after each specified time. |
| 501 This option can be useful to ensure that a seek point is present at a |
| 502 chapter mark or any other designated place in the output file. |
| 503 The timestamps must be specified in ascending order. |
| 499 @end table | 504 @end table |
| 500 | 505 |
| 501 @section Audio Options | 506 @section Audio Options |
| 502 | 507 |
| 503 @table @option | 508 @table @option |
| 504 @item -aframes @var{number} | 509 @item -aframes @var{number} |
| 505 Set the number of audio frames to record. | 510 Set the number of audio frames to record. |
| 506 @item -ar @var{freq} | 511 @item -ar @var{freq} |
| 507 Set the audio sampling frequency (default = 44100 Hz). | 512 Set the audio sampling frequency (default = 44100 Hz). |
| 508 @item -ab @var{bitrate} | 513 @item -ab @var{bitrate} |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 968 ffplay(1), ffprobe(1), ffserver(1) and the FFmpeg HTML documentation | 973 ffplay(1), ffprobe(1), ffserver(1) and the FFmpeg HTML documentation |
| 969 @c man end | 974 @c man end |
| 970 | 975 |
| 971 @c man begin AUTHORS | 976 @c man begin AUTHORS |
| 972 The FFmpeg developers | 977 The FFmpeg developers |
| 973 @c man end | 978 @c man end |
| 974 | 979 |
| 975 @end ignore | 980 @end ignore |
| 976 | 981 |
| 977 @bye | 982 @bye |
| OLD | NEW |