tebasuna51
30th March 2017, 12:22
There are a BD movie at fps 23.976 than seems created from a 25 fps source deleting the 25th frame (and maybe the 1000th), like using ChangeFps(24), or maybe ChangeFps(24000,1001).
In order to recover the original fps, or at least test if this is the problem for the not smoth play of BD, I want a script than do something like:
A = Source(BD_video) # B is the output clip
0 == (FrameCount(A) + 1) % 24 : Add_2_frames_to_B ? Add_1_frame_to_B
return B
where Add_2_frames_to_B add the current A frame and a interpolated frame between current and next.
There are a plugin than can do something like that?
If not, a smart script to check that if possible.
Thanks.
In order to recover the original fps, or at least test if this is the problem for the not smoth play of BD, I want a script than do something like:
A = Source(BD_video) # B is the output clip
0 == (FrameCount(A) + 1) % 24 : Add_2_frames_to_B ? Add_1_frame_to_B
return B
where Add_2_frames_to_B add the current A frame and a interpolated frame between current and next.
There are a plugin than can do something like that?
If not, a smart script to check that if possible.
Thanks.