Shadic
3rd June 2009, 15:47
I have two video file and two audio file I wanted to link together and then shave off the end of it. I have two audio tracks I wanted to do this with so my script looks like this.
v=DirectShowSource("K:\CCS BD\CCS 1-7.mkv") + DirectShowSource("K:\CCS BD\CCS 8-14.mkv")
a=Wavsource("K:\CCS BD\F1_T3_Audio - Japanese(B1).wav") + Wavsource("K:\CCS BD\F1_T3_Audio - Japanese(B2).wav")
AudioDub(v,a)
Trim(0,287924)
now when I use the wave that is stereo I could play the video in my media player with no issues at all and it would encode properly too. But when I replace the stereo file with a 5.1 channel wave file I could not preview the script in my media player the audio would not play. And if I were too encode the audio it would start to become out of synce and after 1 hour and 40 minutes all audio is lost. Is this because of a limitation on file size in Avisynth. Or is this a global problem? because if I tried to play the 5.1 wave file by itself it's only shows up to be 50 minutes long.
v=DirectShowSource("K:\CCS BD\CCS 1-7.mkv") + DirectShowSource("K:\CCS BD\CCS 8-14.mkv")
a=Wavsource("K:\CCS BD\F1_T3_Audio - Japanese(B1).wav") + Wavsource("K:\CCS BD\F1_T3_Audio - Japanese(B2).wav")
AudioDub(v,a)
Trim(0,287924)
now when I use the wave that is stereo I could play the video in my media player with no issues at all and it would encode properly too. But when I replace the stereo file with a 5.1 channel wave file I could not preview the script in my media player the audio would not play. And if I were too encode the audio it would start to become out of synce and after 1 hour and 40 minutes all audio is lost. Is this because of a limitation on file size in Avisynth. Or is this a global problem? because if I tried to play the 5.1 wave file by itself it's only shows up to be 50 minutes long.