View Single Post
Old 21st October 2022, 16:39   #2  |  Link
johnmeyer
Registered User
 
Join Date: Feb 2002
Location: California
Posts: 2,695
1. You generate the additional frames needed to go from 24 events per second to 60 events per second, but do this using the 1000/1001 conversion that is needed for NTSC video.

2. You convert frames to fields.

3. You remove every other field and then weave the remaining fields back together.

This code assumes your video has been assigned to the variable "source" and returns the result in the variable "final." MFlowFPS is a function in the MVTools2 DLL.

Code:
MFlowFps(source,super, backward_vec, forward_vec, num=60000,den=1001,ml=600)
SeparateFields()
SelectEvery(4, 0, 3)
final=Weave()
johnmeyer is offline   Reply With Quote