`Eclipse wrote:avisource("C:\Documents and Settings\PC User\My Documents\death note amv-lagarith.avi")
ConvertToYV12()
deen("a3d")
temporalcleaner()
mftoon()
WAVSource("C:\Documents and Settings\PC User\My Documents\My Music\SP0000.wav")
Okay, here's the problem: Every line up until <b>mftoon()</b> returned a video. But then you called <b>WAVSource()</b>, which ignores everything you put before it and only returns audio. Your video is now gone.
What you need is something along the lines of:
<b><i>[first few lines go here]</i>
mftoon()
video=last
audio=WAVSource("C:\Documents and Settings\PC User\My Documents\My Music\SP0000.wav")</b>
Then use the variable names <b>video</b> and <b>audio</b> to refer to the video and the audio respectively. Usually, the next step would be <b>AudioDub(video,audio)</b>.
`Eclipse wrote:AudioDub (WAVSource ("C:\Project Folder\SFIIVTest\SFIIVTest T01 2_0ch 192Kbps 48KHz.wav")(AVISource("C:\Documents and Settings\PC User\My Documents\death note amv-lagarith.avi")))
There's three problems with this:
1) The arguments are in the wrong order. Video source goes first, audio source second.
2) You need a comma in between the two arguments. Your most recent post didn't fix this either.
3) The video source is straight from the file, without going through all that filtering you wanted to do. See above for the proper way to do it.