[SOLVED] -- see my last post, in blue.
Ok. I am having no luck with interleaving Video and Audio under AVIsynth.
Using AVIsynth 2.57 -- 2006
vid = "myvideo.avi"
aud = "mywave.wav"
interlave(vid,aud) <-- fails
. . .
vid = "myvideo.avi"
aud = "mywave.wav"
interlave(aud) <-- fails
. . .
vid = "myvideo.avi"
aud = "mywave.wav"
AudioDub(vid,aud) <-- fails
. . .
vid = "myvideo.avi"
aud = "mywave.wav"
WavSource(aud)
AudioDub(vid,aud) <-- fails with error message: "invalid arguments"
. . .
So, what am I missing. google is not turning up anything on processing a video file with an audio when your source video has no audio. I need to feed a video only source and then mux in the .wav audio because I am manipulaint the framerate and if I add (mux) the audio in later, it will mess things up a bit. I want to avoid it and just feed the vid/aud in the first avisynth script before doing any framerate conversion stuff.
Any help would be appreciated, thanks.
-vhelp 4849
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 8 of 8
			
		- 
	
- 
	[SOLVED] -- Aug 25, 2008 11:30pm 
 
 Ok. After nearly giving up, I found something that works:
 
 
 vid = "c:\myvideo.avi"
 aud = "c:\mywave.wav"
 
 video = AVIsource( vid )
 audio = WavSource( aud )
 AudioDub(Video,Audio)
 
 -vhelp 4851
- 
	Save yourself some work: 
 
 Video=AVISource("c:\myvideo.avi")
 Audio=WAVSource("c:\mywave.wav")
 AudioDub(Video,Audio)
- 
	Hi, 
 
 My audio source is ac3 and it does not seem to work.
 
 Any ideas?PHP Code:Video=MPEG2Source("video.d2v")
 Audio=DirectShowSource("audio.ac3")
 AudioDub(video, audio)
 
 
 Thanks
- 
	Maybe try NicAC3Source from the NicAudio.dll: 
 
 http://www.avisynth.nl/users/warpenterprises/
Similar Threads
- 
  Audio and Video synchronization *solved*By Meriks in forum EditingReplies: 11Last Post: 4th Mar 2011, 07:11
- 
  [Solved] How to normalize various wav files to same volume level?By freebird73717 in forum AudioReplies: 3Last Post: 30th Sep 2009, 17:22
- 
  WAV audio error using AVISynth scriptsBy rocky12 in forum AudioReplies: 3Last Post: 3rd Dec 2008, 10:03
- 
  Ulead Video Studio 11 - how to add multiple sub and more movie clipBy mic2x in forum SubtitleReplies: 0Last Post: 27th Aug 2008, 13:52
- 
  How to add pulldown flags to a clip of mixed film/video?By Mizkreant in forum Video ConversionReplies: 6Last Post: 14th Aug 2007, 07:05


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

 Quote
 Quote