FPS Converter 50p to 25i or 60p to 30i

Use this forum to request features. Maybe you'll get lucky!
Post Reply
gor
Posts: 8
Joined: Mon Dec 28, 2015 12:23 pm

FPS Converter 50p to 25i or 60p to 30i

Post 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
admin
Site Admin
Posts: 1658
Joined: Sat Feb 08, 2014 10:39 pm

Re: FPS Converter 50p to 25i or 60p to 30i

Post 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
gor
Posts: 8
Joined: Mon Dec 28, 2015 12:23 pm

Re: FPS Converter 50p to 25i or 60p to 30i

Post 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
Post Reply