Using CCE SP 2.5 to convert some NTSC DV-2 to MPEG-2. I can load and convert the avi directly thorough CCE no problem.
Installed AviSynth 2.5.6 and am trying to use the Doom9 tutorial:
http://www.doom9.org/index.html?/dv/guide.html
The avs file is as follows:
AviSource("C:\MyDVFile.avi")
ReInterpolate411()
SeparateFields()
odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
Interleave(evn,odd)
Weave()
DoubleWeave.SelectOdd()
When the avs file was loaded CCE it thought there were just 240 frames and gave "checksum errors". I then did a little searching and found that ReInterpolate411 was an additional filter, which I downloaded and unzipped into my AviSynth plugins folder.
Now when I try open the avs file in CCE, CCE just closes.
I am a complete newbiew when it comes to AviSynth, so I may be missing something startlingly obvious, so any ideas would be most appreciated.
Many thanks in advance
Paul.
+ Reply to Thread
Results 1 to 4 of 4
-
-
Add ConvertToYUY2() and AudioDub(BlankClip()) at end of script,
CCE closes/crashes due to a bug with .avs files and AMD.
AviSource("C:\MyDVFile.avi")
ReInterpolate411()
SeparateFields()
odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
Interleave(evn,odd)
Weave()
DoubleWeave.SelectOdd()
AudioDub(BlankClip())
ConvertToYUY2() -
Actually, it was a bug in that version...
You either had to serve it audio, or at least serve "fake" audio... -
And test the script in VDubMod before sending it to CCE. If something's wrong with the script, at least VDubMod will give you an error message that might help to pinpoint the problem. But your current problem will most likely be fixed with the AudioDub line.
I prefer this method of filtering interlaced sources:
LeakKernelBob(Order=1)#if TFF, Order=0 if BFF
Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
SeparateFields()
SelectEvery(4,0,3)#if TFF, SelectEvery(4,1,2) if BFF
Weave()
ConvertToYUY2(Interlaced=True)
You can get LeakKernelDeint here:
http://www.avisynth.org/warpenterprises/
You'll have to Load the .dll before using it. And if it's interlaced, don't forget the "Interlaced=True" in ConvertToYUY2
Similar Threads
-
CCE, MP4 and AviSynth Error
By Maikeru-sama in forum Video ConversionReplies: 28Last Post: 11th Jun 2008, 04:24 -
CCE, AviSynth and MP4 Question
By Maikeru-sama in forum Video ConversionReplies: 5Last Post: 31st Mar 2008, 11:19 -
MKV, CCE and AviSynth Question
By Maikeru-sama in forum Video ConversionReplies: 10Last Post: 14th Jan 2008, 16:35 -
Matted to anamorphic with aviSynth/CCE?
By Sephiroth666 in forum Newbie / General discussionsReplies: 3Last Post: 7th Jan 2008, 00:00 -
Questions about CCE, H264 and AviSynth
By Maikeru-sama in forum Video ConversionReplies: 18Last Post: 21st Dec 2007, 20:38