diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-08-23 11:56:35 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-08-24 12:54:45 +0200 |
commit | 3d6d59ef35d22b895645de455bd7a0772951bee2 (patch) | |
tree | 0d9692155751f762308bf568dec0a2e22c3e5a51 /doc/filters.texi | |
parent | c45178cf5bf94189c7d275be7a99d9e4f8f16009 (diff) | |
download | ffmpeg-3d6d59ef35d22b895645de455bd7a0772951bee2.tar.gz |
doc/filters: itemize examples for *settb filters
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index c2b65a9fad..8c239337f3 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -4199,24 +4199,39 @@ audio only). The default value for the input is "intb". -Follow some examples. +@subsection Examples +@itemize +@item +Set the timebase to 1/25: @example -# set the timebase to 1/25 settb=1/25 +@end example -# set the timebase to 1/10 +@item +Set the timebase to 1/10: +@example settb=0.1 +@end example -#set the timebase to 1001/1000 +@item +Set the timebase to 1001/1000: +@example settb=1+0.001 +@end example -#set the timebase to 2*intb +@item +Set the timebase to 2*intb: +@example settb=2*intb +@end example -#set the default timebase value +@item +Set the default timebase value: +@example settb=AVTB @end example +@end itemize @section concat |