diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-08-18 18:19:55 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-08-20 15:00:23 +0200 |
commit | e30a0b1b3b1f06bc34f43e8f77ddfd97503d8736 (patch) | |
tree | d02f2703a5be27cc7283061ef51e027c045f8640 /doc/filters.texi | |
parent | 9d84a17ba5d036078e2714f761b5370d6140f1ca (diff) | |
download | ffmpeg-e30a0b1b3b1f06bc34f43e8f77ddfd97503d8736.tar.gz |
lavfi: add ashowinfo filter
Useful for debugging.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index ce7d064b00..dd99c73175 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -137,6 +137,56 @@ For example, to resample the input audio to 44100Hz: aresample=44100 @end example +@section ashowinfo + +Show a line containing various information for each input audio frame. +The input audio is not modified. + +The shown line contains a sequence of key/value pairs of the form +@var{key}:@var{value}. + +A description of each shown parameter follows: + +@table @option +@item n +sequential number of the input frame, starting from 0 + +@item pts +presentation TimeStamp of the input frame, expressed as a number of +time base units. The time base unit depends on the filter input pad, and +is usually 1/@var{sample_rate}. + +@item pts_time +presentation TimeStamp of the input frame, expressed as a number of +seconds + +@item pos +position of the frame in the input stream, -1 if this information in +unavailable and/or meanigless (for example in case of synthetic audio) + +@item fmt +sample format name + +@item chlayout +channel layout description + +@item nb_samples +number of samples (per each channel) contained in the filtered frame + +@item rate +sample rate for the audio frame + +@item planar +if the packing format is planar, 0 if packed + +@item checksum +Adler-32 checksum of all the planes of the input frame + +@item plane_checksum +Adler-32 checksum for each input frame plane, expressed in the form +"[@var{c0} @var{c1} @var{c2} @var{c3} @var{c4} @var{c5} @var{c6} @var{c7}]" +@end table + @c man end AUDIO FILTERS @chapter Audio Sources |