Log in

View Full Version : m2v player


dani82
13th February 2002, 08:05
is there a program that lets me play a m2v and wav file at the same time;

Ex. I use virtualdub to load a m1v and a wav file so i can see if the audio is in synch or not; but i need a program for m2v.

hakko504
13th February 2002, 08:17
(adjusted script from AVISynth's reference doc (http://www.videotools.net))# Load mpeg video and add audio
# video in mpeg2video file and audio in a WAV file
# DirectShowSource sometimes want a framerate as second argument

video = DirectShowSourceSource("mpeg.m2v")
audio = WAVSource("audio.wav")
AudioDub(video, audio)