I would like to add two audio files using avconv. In the documentation, I found the following way to implement this:
avconv -i INPUT1 -i INPUT2 -filter_complex amix=inputs=2:duration=first:dropout_transition=3 OUTPUT
However, when I try to run this, I get the following errors:
Unrecognized option 'filter_complex' Failed to set value 'amix=inputs=2:duration=first:dropout_transition=3' for option 'filter_complex'
I have been looking for a solution for quite some time, but havenβt found anything.
I have version 0.8.3-4: 0.8.3-0ubuntu0.12.04.1 avconv. Do I need to change something in the configurations or use a different version of avconv? Is there any other way that I could mix audio files?
Thank you for your help.
source share