HELP...Error when trying to join 2 AVI's - Sampling rates are different

Tonylfc

New member
HELP!!!
Tried to join to AVI files together but get an error saying the Audio streams have different sampling rates, which are 32691.00000 v 32663.00000.
Is there a way of converting or adjusting so as to get the AVI's into one file so i can burn to DVD.

Thanks if you can help
 
If you are just going to convert anyway then you could just join with AVISynth, could also save to pcm wav.

AVISynth would be something like
part1 = avisource("part1.avi")
part2 = avisource("part2.avi")
return part1+part2

Then just encode that instead of the AVI. Assuming that whatever you are using accepts avisynth scripts as input, fake AVIS avi's or pipe from avs2yuv.
 
Top