VideoHelp.com Forum
+ Reply to Thread
Results 1 to 5 of 5
Thread
  1. [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

    VHELP's - Sample Clips [last: 12.29.06],
    my YouTube videos
    Quote Quote  

  2. Always Watching guns1inger's Avatar
    Join Date: Apr 2004
    Location: Miskatonic U
    Try AudioDubEx() instead of AudioDub(). It works the same, but doesn't care of the source streams are missing video or audio streams
    Read my blogs here and here. Change England's Libel Laws - Sign Here
    Quote Quote  

  3. Noop. Won't work either:

    Using AVIsynth 2.57 -- 2006

    video = "c:\myvideo.avi"
    audio = "c:\mywave.wav"
    WavSource(audio)
    AudioDubEx(video,audio) <-- fails with error message: "invalid arguments"

    -vhelp 4850

    VHELP's - Sample Clips [last: 12.29.06],
    my YouTube videos
    Quote Quote  

  4. [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

    VHELP's - Sample Clips [last: 12.29.06],
    my YouTube videos
    Quote Quote  

  5. Save yourself some work:

    Video=AVISource("c:\myvideo.avi")
    Audio=WAVSource("c:\mywave.wav")
    AudioDub(Video,Audio)
    Quote Quote  




Similar Threads

  1. Audio and Video synchronization *solved*
    By Meriks in forum Editing
    Replies: 11
    Last Post: 4th Mar 2011, 06:11
  2. Replies: 3
    Last Post: 30th Sep 2009, 16:22
  3. WAV audio error using AVISynth scripts
    By rocky12 in forum Audio
    Replies: 3
    Last Post: 3rd Dec 2008, 09:03
  4. Replies: 0
    Last Post: 27th Aug 2008, 12:52
  5. How to add pulldown flags to a clip of mixed film/video?
    By Mizkreant in forum Video Conversion
    Replies: 6
    Last Post: 14th Aug 2007, 06:05
Search   Contact us   About   Advertise   Forum   RSS Feeds   Statistics   Tools