diff options
author | wm4 <wm4@nowhere> | 2014-10-02 02:58:52 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-10-02 02:58:52 +0200 |
commit | ae2e2b974077f13c48007635c399918125822286 (patch) | |
tree | 2b3fc2c4783024fd6372099de80ec451927d8a27 /DOCS | |
parent | b5942f80de481cabab07ce1cee7a2b6a537b4c93 (diff) |
audio: enable pitch correction by default when playing fast
Apparently this is what users want. When playing with normal speed,
nothing is done. When playing slower than normal, resampling is used
instead, because scaletempo (which does the pitch correction) adds
too many artifacts.
Diffstat (limited to 'DOCS')
-rw-r--r-- | DOCS/man/options.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst index e8e41331d6..45f0d7358a 100644 --- a/DOCS/man/options.rst +++ b/DOCS/man/options.rst @@ -95,6 +95,9 @@ Playback Control ``--speed=<0.01-100>`` Slow down or speed up playback by the factor given as parameter. + If ``--audio-pitch-correction`` is used, playing with a speed higher than + normal automatically inserts the ``scaletempo`` audio filter. + ``--loop=<N|inf|no>`` Loops playback ``N`` times. A value of ``1`` plays it one time (default), ``2`` two times, etc. ``inf`` means forever. ``no`` is the same as ``1`` and @@ -755,6 +758,11 @@ Video Audio ----- +``--audio-pitch-correction=<yes|no`` + If this is enabled, playing with a speed higher than normal automatically + inserts the ``scaletempo`` audio filter. For details, see audio filter + section. + ``--ao=<driver1[:suboption1[=value]:...],driver2,...[,]>`` Specify a priority list of audio output drivers to be used. For interactive use one would normally specify a single one to use, but in |