View Single Post
Old 2nd May 2006, 04:11   #218  |  Link
HOLiC
Registered User
 
Join Date: Jan 2006
Posts: 32
Hi, I have a quick question!
Is it necessary to use colormatrix right after source, before ivtc?
(I just remebemer someone saying that filter won't do anything if it didn't come right after the source..)

I'm trying to encode something using "tivtc mkv-vfr" method and I can't use colormatrix, since I keep getting an error about clip being not matched, or something like this:

Quote:
Avisynth Open failure:
TFM: crc32 in input files does not match that of current clip...
So, I placed colormatrix after ivtc, and it seems to work fine:

Quote:
mpeg2source()

TFM(mode=1,input="tfm.txt")
oldcount=framecount
tdecimate(mode=5,hybrid=2,input="tdec.txt",tfmIn="tfm.txt",mkvOut="timecodes.txt")

colormatrix(mode="Rec.709->Rec.601")

oldfps=framerate
averagefps=(float(framecount)/float(oldcount))*oldfps
assumefps(averagefps).Nicefps()
I'm just worried that if I do it like this, the filter won't do anything...
I would appreciated it if someone would confirm this.
Thanks in advance!!
HOLiC is offline   Reply With Quote