Congratulation for this great project.
I'm wondering if you can include in FPS Converter Filter one option to transcode from progressive frame in interlace frame.
Best regards,
Gabi
FPS Converter 50p to 25i or 60p to 30i
Re: FPS Converter 50p to 25i or 60p to 30i
Hi Gabi, thank you and thanks for the suggestion I think it's a trivial task so consider it done. Please note that all encoders that are fixed to deliver i25 and i30 deals with this automatically.
-steipal
-steipal
Re: FPS Converter 50p to 25i or 60p to 30i
Hi!
As a quick setup for FPS Converter 50p to 25i, the following Custom AviSynth Script is looking good!
Have FUN!
Gabi
As a quick setup for FPS Converter 50p to 25i, the following Custom AviSynth Script is looking good!
Code: Select all
m_clip = ConvertToYUY2(m_clip)
m_clip = AssumeTFF(m_clip)
m_clip = SeparateFields(m_clip)
m_clip = SelectEvery(m_clip, 4, 0, 3)
m_clip = Weave(m_clip)
Return m_clip
Gabi