EDIT: Talking about Avisynth plugin.
Sorry if my question seems weird, because I think people don't normally do this.
but if I want to remove half of the frames using Tdecimate, is there a difference between
cycleR= 1, cycle =2
and
cycleR=4, cycle=8
Will they function the same?
+ Reply to Thread
Results 1 to 5 of 5
-
-
They may not act the same. TDecimate() preferentially removes duplicate frames. In a sequence like "0 0 1 1 2 2 3 3" you will get the same result, "0 1 2 3". But with a sequence like "0 0 0 0 0 1 2 3 " the former will give you "0 0 1 3" or "0 0 0 2", the latter "0 1 2 3". Ie, the former case it looks at groups of 2 frames and then removes one (hopefully a duplicate, but if there is no duplicate a unique frame will be removed. The latter looks at groups of 8 frames and removes the 4 duplicates.
-
If you want to remove half the frames, TDecimate is the wrong tool. Use Selecteven() or Selectodd(). Either one will do. They are both specialized versions of the more general SelectEvery() function.
-
TDecimate has modes without a "cycle" length as such.
TDecimate(mode=7, rate=24.0/1.001) will output 23.976fps. It may or may not work better than the standard modes, depending on your source. Mode=2 can be used for 2 pass duplicate removal.
If you just want to remove every second frame, as previously mentioned..... Selecteven() or Selectodd()
Similar Threads
-
TDecimate vs. Srestore?
By Vitality in forum DVD RippingReplies: 11Last Post: 19th Jan 2019, 19:13 -
Interlacing after TIVTC
By Vitality in forum RestorationReplies: 12Last Post: 26th Nov 2018, 15:01 -
QTGMC and TDecimate as a custom IVTC script?
By Vitality in forum RestorationReplies: 9Last Post: 22nd Nov 2018, 16:04 -
Need help using TIVTC
By Joycon in forum Newbie / General discussionsReplies: 1Last Post: 9th Sep 2018, 07:53 -
How to TDecimate to 23.976fps with 30fps capture device
By tyee in forum Capturing and VCRReplies: 18Last Post: 30th Dec 2015, 00:20