Page 1 of 1
FPS Converter 50p to 25i or 60p to 30i
Posted: Thu May 19, 2016 1:48 pm
by gor
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
Re: FPS Converter 50p to 25i or 60p to 30i
Posted: Thu May 19, 2016 5:04 pm
by admin
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
Re: FPS Converter 50p to 25i or 60p to 30i
Posted: Wed Jun 08, 2016 11:14 am
by gor
Hi!
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
Have FUN!
Gabi