open notepad and paste in the following
Code:
function ResampleAudio(clip v1, int rate) {
v2 = Blankclip()
v1 = AudioDub(v1,v2)
return v1
}
save it as "ResampleAudio.avs" making sure to set to all files in the pull down menu
then in your avs script create a line (best near the top maybe line 1,2 or 3) called
Code:
Import("path to\ResampleAudio.avs")
then last but not least right at the very bottom of the avs script place this line
Code:
ResampleAudio(44100)
and that should solve your problems make sure when it does load you right click on it and edit and untick the audio box