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 videoBy adom in forum Video ConversionReplies: 9Last Post: 5th Oct 2011, 16:51
- 
  how to get audio/video AVI from Avisynth?By spiritgumm in forum Newbie / General discussionsReplies: 10Last Post: 12th Jun 2010, 19:24
- 
  Video/audio not synced problem. (Avisynth)By michcio in forum AudioReplies: 0Last Post: 18th Jan 2010, 13: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, 04:23
- 
  Stackhorizontal errorBy zsuppguy in forum Newbie / General discussionsReplies: 10Last Post: 8th Jan 2010, 13:58


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			

 Quote
 Quote