Move both the -acodec aac and -strict experimental options somewhere after the last -i option on the command line before the output file name.
Avconv parameters are parsed as "avconv [input parameters1] -i input1 [input parameters2] -i input2 [output parameters] outputfile", so when you added these parameters before the second -i , they were interpreted as parameters for the second input, not exit.
mstorsjo
source share