Squished
11th July 2006, 19:48
Say I have a movie that has a consistant telecine pattern, and rather than have an IVTC filter guess at what to do, I want to force it to follow the pattern I specify.
Currently, I use:
---------------
mpeg2source("C:\Transfer\movie.d2v")
Telecide(order=1,ovr="movie.tel",post=0)
Decimate(cycle=5)
---------------
Inside of the "movie.tel" file, I have ranges that define the telecine pattern. In this particular movie, there is one cadence change, so I use two ranges. For example:
2,195422 ncccn
195424,24000 ncccn
This works fine to restore the progressive frames with no combing errors at all, the problem comes with Decimate(). I want Decimate() to follow the pattern as well, and as far as I can tell, it will only read a list of frames to remove from a file for manual decimation. Is there some sort of shorthand way to tell it what frames to decimate like there is with Telecide()?
I really prefer not to depend on "educated guesses" in Decimate () when I have the oportunity to get it perfect. I would figure it would rely on hints more than it does... maybe there is some threshold value that I can set to a specific value to get Decimate() to honor the hints passed from Telecide exclusively?
Thanks!
Squished Squirrel
Currently, I use:
---------------
mpeg2source("C:\Transfer\movie.d2v")
Telecide(order=1,ovr="movie.tel",post=0)
Decimate(cycle=5)
---------------
Inside of the "movie.tel" file, I have ranges that define the telecine pattern. In this particular movie, there is one cadence change, so I use two ranges. For example:
2,195422 ncccn
195424,24000 ncccn
This works fine to restore the progressive frames with no combing errors at all, the problem comes with Decimate(). I want Decimate() to follow the pattern as well, and as far as I can tell, it will only read a list of frames to remove from a file for manual decimation. Is there some sort of shorthand way to tell it what frames to decimate like there is with Telecide()?
I really prefer not to depend on "educated guesses" in Decimate () when I have the oportunity to get it perfect. I would figure it would rely on hints more than it does... maybe there is some threshold value that I can set to a specific value to get Decimate() to honor the hints passed from Telecide exclusively?
Thanks!
Squished Squirrel