aboutsummaryrefslogtreecommitdiffhomepage
path: root/DOCS/man/af.rst
Commit message (Collapse)AuthorAge
* af_rubberband: add af-command and option to change the pitchGravatar Hector Martin2016-09-19
| | | | | This allows both fixed and dynamic control over the audio pitch using librubberband, which was previously not exposed to the user.
* af_pan: add af-command support to change the matrixGravatar Hector Martin2016-09-19
| | | | | This allows for seamless changes in the downmixing matrix without having to reinitialize the filter chain.
* audio/filter: remove delay audio filterGravatar Paul B Mahol2016-08-12
| | | | Similar filter is available in libavfilter.
* af_lavcac3enc: make encoder configurableGravatar wm42016-06-23
|
* manpage: minor correctionsGravatar wm42016-01-24
| | | | Pointed out by der_richter on IRC.
* manpage: fix broken exampleGravatar wm42015-09-27
| | | | Fixes #2353.
* manpage: add a note about libavfilterGravatar wm42015-09-11
|
* af_lavrresample: add normalize suboptionGravatar wm42015-09-08
|
* audio/filter: remove af_bs2b tooGravatar wm42015-09-04
| | | | | | | Some users still use this filter, so the filter was going to be kept. But I overlooked that libavfilter provides this filter. Remove the redundant wrapper from mpv. Something like --af=lavfi=bs2b should work and give exactly the same results.
* audio/filter: remove some useless filtersGravatar wm42015-09-03
| | | | | | | | | | | | | | | | | | | | | | | | All of these filters are considered not useful anymore by us. Some have replacements in libavfilter (useable through af_lavfi). af_center, af_extrastereo, af_karaoke, af_sinesuppress, af_sub, af_surround, af_sweep: pretty simple and useless filters which probably nobody ever wants. af_ladspa: has a replacement in libavfilter. af_hrtf: the algorithm doesn't work properly on most sources, and the implementation was buggy and complicated. (The filter was inherited from MPlayer; but even in mpv times we had to apply fixes that fixed major issues with added noise.) There is a ladspa filter if you still want to use it. af_export: I'm not even sure what this is supposed to do. Possibly it was meant for GUIs rendering audio visualizations, but it couldn't really work well. For example, the size of the audio depended on the samplerate (fixed number of samples only), and it couldn't retrieve the complete audio, only fragments. If this is really needed for GUIs, mpv should add native visualization, or a proper API for it.
* af_volume: add a replaygain fallback optionGravatar wm42015-06-23
|
* af_convert24: remove this filterGravatar wm42015-06-16
|
* manpage: clarify --af=formatGravatar Kevin Mitchell2015-04-15
|
* manpage: remove extra newline at end of af.rstGravatar Kevin Mitchell2015-04-15
|
* manpage: correct option minchn->minch for lavcac3encGravatar Kevin Mitchell2015-03-30
|
* man: fix PDF buildGravatar Martin Herkt2015-03-15
|
* af_rubberband: make all librubberband options configurableGravatar wm42015-02-11
| | | | | | | librubberband exports a big load of options. Normally, the default settings (whether they're librubberband defaults or our defaults) should be sufficient, but since I'm not so sure about this, making it configurable allows others to figure it out for me.
* af_rubberband: pitch correction with librubberbandGravatar wm42015-02-11
| | | | | | | | | If "--af=rubberband" is used, librubberband will be used to speed up or slow down audio with pitch correction. This still has some problems: the audio delay is not calculated correctly, so the audio position jitters around by a few milliseconds. This will probably ruin video timing.
* manpage: fix af_scaletempo suggested commandsGravatar wm42015-02-10
|
* audio: drop swapped-endian audio formatsGravatar wm42014-09-23
| | | | | | | | | | | | | | | | | | | | Until now, the audio chain could handle both little endian and big endian formats. This actually doesn't make much sense, since the audio API and the HW will most likely prefer native formats. Or at the very least, it should be trivial for audio drivers to do the byte swapping themselves. From now on, the audio chain contains native-endian formats only. All AOs and some filters are adjusted. af_convertsignendian.c is now wrongly named, but the filter name is adjusted. In some cases, the audio infrastructure was reused on the demuxer side, but that is relatively easy to rectify. This is a quite intrusive and radical change. It's possible that it will break some things (especially if they're obscure or not Linux), so watch out for regressions. It's probably still better to do it the bulldozer way, since slow transition and researching foreign platforms would take a lot of time and effort.
* man: fix a whole bunch of typosGravatar Martin Herkt2014-09-01
|
* af_lavcac3enc: lower minimum channel number to 3Gravatar wm42014-08-12
| | | | It seems only stereo PCM should be passed through.
* af_lavcac3enc: change default bitrate to 640Gravatar wm42014-08-12
| | | | | | | No reason to use less. Since the name "default" is misleading now, replace it with "auto" (still recognize the old name).
* DOCS: remove en/ sub-directoryGravatar wm42014-06-20
This additional sub-directory doesn't serve any purpose anymore. Get rid of it.