diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-08-30 11:14:13 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-10-04 11:55:03 +0200 |
commit | 3d86a13b47b726e49c2d780c5f723c290e8a36b4 (patch) | |
tree | 09767fa0bcc2289017cd6ef369864b7c37334a62 /doc | |
parent | 1d326e91875bcc9b9e0e907f5b94842172e66ec8 (diff) | |
download | ffmpeg-3d86a13b47b726e49c2d780c5f723c290e8a36b4.tar.gz |
fftools/ffmpeg: drop the -async option
It has been deprecated in favor of the aresample filter for almost 10
years.
Another thing this option can do is drop audio timestamps and have them
generated by the encoding code or the muxer, but
- for encoding, this can already be done with the setpts filter
- for muxing this should almost never be done as timestamp generation by
the muxer is deprecated, but people who really want to do this can use
the setts bitstream filter
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ffmpeg.texi | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 42440d93b4..e9020b30d5 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -1697,18 +1697,6 @@ The default is -1.1. One possible usecase is to avoid framedrops in case of noisy timestamps or to increase frame drop precision in case of exact timestamps. -@item -async @var{samples_per_second} -Audio sync method. "Stretches/squeezes" the audio stream to match the timestamps, -the parameter is the maximum samples per second by which the audio is changed. --async 1 is a special case where only the start of the audio stream is corrected -without any later correction. - -Note that the timestamps may be further modified by the muxer, after this. -For example, in the case that the format option @option{avoid_negative_ts} -is enabled. - -This option has been deprecated. Use the @code{aresample} audio filter instead. - @item -adrift_threshold @var{time} Set the minimum difference between timestamps and audio data (in seconds) to trigger adding/dropping samples to make it match the timestamps. This option effectively is |