VirtualDub Audio Question

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
Locked
Watatashi
Joined: Tue Jan 14, 2014 8:29 pm
Org Profile

VirtualDub Audio Question

Post by Watatashi » Mon Apr 20, 2015 3:36 am

Hello all! I have been using MakeMKV to rip footage from Blu-Ray and then taking the resulting .MKV files to VirtualDub to repackage them as .AVI and this has been working beautifully. I have been using the following script to load the footage into VirtualDub.

Code: Select all

LWLibavVideoSource("File.mkv")
But I have been wondering what I have to do to load the audio into VirtualDub as well so that I could have some clips with the source audio to use in my edits. How would I go about doing that?

Thanks in advance.

User avatar
RTW47
Joined: Sat Oct 30, 2010 10:48 am
Status: Knight of Ni
Location: Argument Clinic
Org Profile

Re: VirtualDub Audio Question

Post by RTW47 » Mon Apr 20, 2015 11:38 am

for importing both video and audio track, you can try doing:

Code: Select all

Video = LWLibavVideoSource("File.mkv")
Audio = LWLibavAudioSource("File.mkv")
AudioDub(Video, Audio)

Locked

Return to “AviSynth Help”