07.12.2022, 15:26
The:
part, where your progressive content is converted to interlaced, should be adjusted accordingly.
No, Hybrid has no option for this, so you would have to write a script for this manually.
(or write a custom addition that is inserted before the end that reverses the field order)
Cu Selur
# converting progressive to interlaced for 'progressive to interlaced (1)'
clip = core.std.SeparateFields(clip=clip, tff=False)
clip = core.std.SelectEvery(clip=clip, cycle=4, offsets=[0, 3])
clip = core.std.DoubleWeave(clip=clip, tff=False) # resolution 1440x812
clip = core.std.SelectEvery(clip=clip, cycle=2, offsets=0) # new fps: 29.97
clip = core.std.SetFrameProp(clip=clip, prop="_FieldBased", intval=1)
No, Hybrid has no option for this, so you would have to write a script for this manually.
(or write a custom addition that is inserted before the end that reverses the field order)
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.