Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: source/patched-ffmpeg-mt/doc/ffmpeg-doc.texi

Issue 4533003: patched ffmpeg nov 2 (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: source/patched-ffmpeg-mt/doc/ffmpeg-doc.texi
===================================================================
--- source/patched-ffmpeg-mt/doc/ffmpeg-doc.texi (revision 65184)
+++ source/patched-ffmpeg-mt/doc/ffmpeg-doc.texi (working copy)
@@ -226,14 +226,13 @@
@item -aspect @var{aspect}
Set aspect ratio (4:3, 16:9 or 1.3333, 1.7777).
-@item -croptop @var{size} (deprecated - use the crop filter instead)
-Set top crop band size (in pixels).
-@item -cropbottom @var{size} (deprecated - use the crop filter instead)
-Set bottom crop band size (in pixels).
-@item -cropleft @var{size} (deprecated - use the crop filter instead)
-Set left crop band size (in pixels).
-@item -cropright @var{size} (deprecated - use the crop filter instead)
-Set right crop band size (in pixels).
+@item -croptop @var{size}
+@item -cropbottom @var{size}
+@item -cropleft @var{size}
+@item -cropright @var{size}
+All the crop options have been removed. Use -vf
+crop=width:height:x:y instead.
+
@item -padtop @var{size}
@item -padbottom @var{size}
@item -padleft @var{size}
@@ -496,6 +495,12 @@
@example
ffmpeg -i h264.mp4 -vcodec copy -vbsf h264_mp4toannexb -an out.h264
@end example
+@item -force_key_frames @var{time}[,@var{time}...]
+Force key frames at the specified timestamps, more precisely at the first
+frames after each specified time.
+This option can be useful to ensure that a seek point is present at a
+chapter mark or any other designated place in the output file.
+The timestamps must be specified in ascending order.
@end table
@section Audio Options

Powered by Google App Engine
This is Rietveld 408576698