Good morning Andreas,awand wrote: Just one thing. I mostly work with 24fps and 25fps films. In the script I see that it's made for 16.666 and 18.75fps. If I want to render the final output file to Ie. 24fps or 25fps, what do I do then?
The script can change the input to any play speed and convert it to any frame rate. I have mentioned 16,666 and 18,75 because these are the most common play speeds for super-8.
A few examples:
Important! Assumed that the input is progressive and no duplicate frames!
-----------------------------------------------------------------------------------------
1) Super-8 film original shot at 18fps, convert to standard PAL 25fps:
Code: Select all
play_speed= 18.75
numerator= 25
denumerator= 1
Code: Select all
play_speed= 24
numerator= 25
denumerator= 1
3) Creating slow motion, the input can have any play speed, covert to standard PAL 25fps:
Code: Select all
play_speed= 6
numerator= 25
denumerator= 1
It will fail on frames with heavy motion blur.
4) Super-8 film original shot at 18fps, convert to standard NTSC 29,97fps:
Code: Select all
play_speed= 18
numerator= 30000
denumerator= 1001
5) Super-8 film original shot at 18fps, no conversion:
Code: Select all
play_speed= 18
numerator= 18
denumerator= 1
Fred.