View Single Post
Old 10th September 2020, 19:17   #43  |  Link
Cary Knoop
Cary Knoop
 
Cary Knoop's Avatar
 
Join Date: Feb 2017
Location: Newark CA, USA
Posts: 397
Quote:
Originally Posted by Sharc View Post
So? What's your proposal then?
Something like this and then either duplicate or interpolate the frames to get to 25p?

Code:
sourcefile = 'G:/Vapoursynth/vid.mkv'
c = core.ffms2.Source(sourcefile)

c = core.std.SeparateFields(c, tff=True)
c = haf.srestore(c,frate=25)
c = core.std.DoubleWeave(c, tff=True)[::2]
c = hnw.QTGMC(c, TFF=True, Preset="Very Slow")
c = c[::2]
c.set_output(0)
Cary Knoop is offline   Reply With Quote