Hi,
I use avisynth to play two videos in one, great.
But, I would like to get the audio from the right video.
a=avisource("xx.avi").converttoYUY2().Crop(40,60,-40,-60).BilinearResize(720,576)
b=avisource("xx.avi").converttoYUY2().Crop(40,0,-80,0)
c=StackHorizontal(a,b)
return(c)
####
The Avisynth docs say: Most other information (sound track, frame rate, etc) is taken from the first clip
####
Is there any possibility to get the audio from the right file?
thanks in advance
erik
+ Reply to Thread
Results 1 to 4 of 4
-
-
got it (thanx to bigotti5 from doom9):
a=avisource("xxx.avi").converttoYUY2().Crop(40,0,-80,0)
b=avisource("xxx.avi").converttoYUY2().Crop(40,60,-40,-60).BilinearResize(720,576)
c=StackHorizontal(b,a)
d=audiodub(c,a)
return(d)
a is on the right side and the audio is from a!
erik
Similar Threads
-
avisynth to fade audio but not video
By adom in forum Video ConversionReplies: 9Last Post: 5th Oct 2011, 15:51 -
how to get audio/video AVI from Avisynth?
By spiritgumm in forum Newbie / General discussionsReplies: 10Last Post: 12th Jun 2010, 18:24 -
Video/audio not synced problem. (Avisynth)
By michcio in forum AudioReplies: 0Last Post: 18th Jan 2010, 12:43 -
Trimming the audio to go along with the video cuts in avisynth?
By mt123 in forum Newbie / General discussionsReplies: 0Last Post: 10th Jan 2010, 03:23 -
Stackhorizontal error
By zsuppguy in forum Newbie / General discussionsReplies: 10Last Post: 8th Jan 2010, 12:58