AlterFPS
From Avisynth wiki
(Difference between revisions)
m (1 revision) |
(add categories) |
||
(One intermediate revision by one user not shown) | |||
Line 1: | Line 1: | ||
− | This is just a quick, simple preview... It works similarly to [[ChangeFPS]] and [[ConvertFPS]], but with fields instead of frames. It was designed to be used to change the speed of film content when being played back on a video source. | + | {{FilterCat4|External_filters|Scripts|Adjustment_filters|Frame_Rate_Conversion}} |
+ | This is just a quick, simple preview... It works similarly to [[ChangeFPS]] and [[ConvertFPS]], but with fields instead of frames. It was designed to be used to change the speed of film content when being played back on a video source. [http://forum.doom9.org/showthread.php?t=74203 Doom9 Thread] | ||
Function AlterFPS (clip Last, float Speed, string "Method", bool "HiQual") { | Function AlterFPS (clip Last, float Speed, string "Method", bool "HiQual") { | ||
Line 12: | Line 13: | ||
(Method == "Blend") ? AssumeFieldBased.Weave.VerticalReduceBy2 () | (Method == "Blend") ? AssumeFieldBased.Weave.VerticalReduceBy2 () | ||
} | } | ||
− | + | <br> | |
− | [[ | + | <br> |
+ | ----------------------------------------------- | ||
+ | '''Back to [[External_filters#Frame_Rate_Conversion|External Filters]] ←''' |
Latest revision as of 17:36, 8 March 2015
This is just a quick, simple preview... It works similarly to ChangeFPS and ConvertFPS, but with fields instead of frames. It was designed to be used to change the speed of film content when being played back on a video source. Doom9 Thread
Function AlterFPS (clip Last, float Speed, string "Method", bool "HiQual") { Original = FrameRate Method = Default(Method, "") HiQual = Default(HiQual, False) AssumeFPS(Speed, True) (HiQual == False) ? ChangeFPS (2 * Original) : ConvertFPS (2 * Original) (Method == "Weave") ? SeparateFields.SelectEvery (4, 0, 3).Weave () (Method == "Blend") ? AssumeFieldBased.Weave.VerticalReduceBy2 () }
Back to External Filters ←