mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffmpeg: document the unit for the -fs option parameter
This commit is contained in:
parent
b7d45d0b0f
commit
f491f033f5
@ -143,7 +143,7 @@ Stop writing the output after its duration reaches @var{duration}.
|
|||||||
@var{duration} may be a number in seconds, or in @code{hh:mm:ss[.xxx]} form.
|
@var{duration} may be a number in seconds, or in @code{hh:mm:ss[.xxx]} form.
|
||||||
|
|
||||||
@item -fs @var{limit_size} (@emph{output})
|
@item -fs @var{limit_size} (@emph{output})
|
||||||
Set the file size limit.
|
Set the file size limit, expressed in bytes.
|
||||||
|
|
||||||
@item -ss @var{position} (@emph{input/output})
|
@item -ss @var{position} (@emph{input/output})
|
||||||
When used as an input option (before @code{-i}), seeks in this input file to
|
When used as an input option (before @code{-i}), seeks in this input file to
|
||||||
|
2
ffmpeg.c
2
ffmpeg.c
@ -305,7 +305,7 @@ typedef struct OutputFile {
|
|||||||
int ost_index; /* index of the first stream in output_streams */
|
int ost_index; /* index of the first stream in output_streams */
|
||||||
int64_t recording_time; /* desired length of the resulting file in microseconds */
|
int64_t recording_time; /* desired length of the resulting file in microseconds */
|
||||||
int64_t start_time; /* start time in microseconds */
|
int64_t start_time; /* start time in microseconds */
|
||||||
uint64_t limit_filesize;
|
uint64_t limit_filesize; /* filesize limit expressed in bytes */
|
||||||
} OutputFile;
|
} OutputFile;
|
||||||
|
|
||||||
static InputStream *input_streams = NULL;
|
static InputStream *input_streams = NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user