diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-04-23 14:56:01 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-04-27 11:04:51 +0200 |
commit | e5474f5c48dc4a051bf9d31966a86908cb04fa63 (patch) | |
tree | 1a1f0a2af81fec3e69993e974a0f648513f5821c /doc/ffmpeg.texi | |
parent | bbd3dc49ffc0ae2eb3ed665652093619e360312a (diff) | |
download | ffmpeg-e5474f5c48dc4a051bf9d31966a86908cb04fa63.tar.gz |
doc: fix syntax for durations and timestamps.
Omitting the seconds has not worked for a long time, if ever.
Omitting the minutes too is just nonsensical for a duration
(it is indistinguishable from just seconds).
Diffstat (limited to 'doc/ffmpeg.texi')
-rw-r--r-- | doc/ffmpeg.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index e14885c5b5..75d5c1965d 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -164,7 +164,7 @@ streams are delayed by @var{offset} seconds. Set the recording timestamp in the container. The syntax for @var{time} is: @example -now|([(YYYY-MM-DD|YYYYMMDD)[T|t| ]]((HH[:MM[:SS[.m...]]])|(HH[MM[SS[.m...]]]))[Z|z]) +now|([(YYYY-MM-DD|YYYYMMDD)[T|t| ]]((HH:MM:SS[.m...])|(HHMMSS[.m...]))[Z|z]) @end example If the value is "now" it takes the current time. Time is local time unless 'Z' or 'z' is appended, in which case it is |