Is there a way in python to convert timecodes, for example:
t1 = 00:05:08 in 24fps
==> What is t1 in 23.997 fps?
I basically want to convert from dropframe to non-dropframe and vice versa.
So far I have:
from timecode import Timecode
tc1 = Timecode('29.97', '00:04:22:04')
tc1. ?