diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-07-11 21:10:17 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-07-19 16:33:02 +0200 |
commit | 0fe8acf2d69bf4bce620128e48b62a957421a106 (patch) | |
tree | 9a1c4faf95dbd0f6932a590d2075a9e73bb90a00 /doc/ffmpeg.texi | |
parent | 52ab418588ba14a53b40a80ea32589f8844f3ce6 (diff) | |
download | ffmpeg-0fe8acf2d69bf4bce620128e48b62a957421a106.tar.gz |
ffmpeg: add -(no)stdin option.
Allows to disable interaction from standard input.
Useful, for example, if ffmpeg is in the background process group.
Roughly the same result can be achieved with "ffmpeg ... < /dev/null"
but it requires a shell.
Diffstat (limited to 'doc/ffmpeg.texi')
-rw-r--r-- | doc/ffmpeg.texi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index c9b6514fed..904a50589a 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -361,6 +361,14 @@ the encoding process. It is made of "@var{key}=@var{value}" lines. @var{key} consists of only alphanumeric characters. The last key of a sequence of progress information is always "progress". +@item -stdin +Enable interaction on standard input. On by default unless standard input is +used as an input. + +Useful, for example, if ffmpeg is in the background process group. Roughly +the same result can be achieved with @code{ffmpeg ... < /dev/null} but it +requires a shell. + @item -debug_ts (@emph{global}) Print timestamp information. It is off by default. This option is mostly useful for testing and debugging purposes, and the output |