Ticket #2389 (closed enhancement: invalid)
Inversion audio filter
| Reported by: | sun | Owned by: | |
|---|---|---|---|
| Priority: | wish | Component: | avfilter |
| Version: | unspecified | Keywords: | |
| Cc: | Blocked By: | ||
| Blocking: | Reproduced by developer: | no | |
| Analyzed by developer: | no |
Description
A filter that inverts selected audio channels would be useful, for example to process a balanced signal from an XLR microphone.
Change History
comment:2 Changed 2 months ago by sun
I think (hope) the right english term is phase inversion. This means that the displacement of an audio wave is inverted.
This gives further information about balanced audio, which is commonly used:
http://en.wikipedia.org/wiki/Balanced_audio
comment:3 Changed 2 months ago by Cigaes
If I understand correctly, that means that for stereo signal, the left signal must be kept unchanged and the right signal must be multiplied by -1?
comment:4 Changed 2 months ago by sun
Right. After that you merge the two signals into one mono signal which iwill be free of interferences.
comment:6 Changed 3 weeks ago by richardpl
See:
ffmpeg -i input -af pan="stereo:c0=c0:c1=-1*c1" -ac 1 out
Note: See
TracTickets for help on using
tickets.



Even if this may be clear for many developers, please explain what "audio inversion" means.