saint-francis
17th December 2007, 04:03
When I try this script I get errors in involving anything below the video source:
video = DGDecode_mpeg2source("G:\my movie",info=3)
ColorMatrix(hints=true)
crop( 0, 58, 0, -64)
Spline36Resize(720,304)
Undot ()
audio = DirectShowSource("G:\my movie.mp4", audio=true)
AudioDub(video, audio)
I tried making a script for just the video and importing it and using that as the video source and then I get errors involving audiodub. But if I don't filter the video at all it plays fine, albeit unfiltered.
Here's an example:
video = DGDecode_mpeg2source("G:\my movie",info=3)
audio = DirectShowSource("G:\my movie.mp4")
AudioDub(video, audio)
Can someone please explain to me how to correctly use audiodub? Or is there a better way to accomplish what I'm trying to do?
video = DGDecode_mpeg2source("G:\my movie",info=3)
ColorMatrix(hints=true)
crop( 0, 58, 0, -64)
Spline36Resize(720,304)
Undot ()
audio = DirectShowSource("G:\my movie.mp4", audio=true)
AudioDub(video, audio)
I tried making a script for just the video and importing it and using that as the video source and then I get errors involving audiodub. But if I don't filter the video at all it plays fine, albeit unfiltered.
Here's an example:
video = DGDecode_mpeg2source("G:\my movie",info=3)
audio = DirectShowSource("G:\my movie.mp4")
AudioDub(video, audio)
Can someone please explain to me how to correctly use audiodub? Or is there a better way to accomplish what I'm trying to do?