Using the `ffmpeg-python` wrapper (https://github.com/kkroening/ffmpeg-python), I’d like to add a number of frames to a timestamp. Does anyone know how I can accomplish that in Python?
For example:
timestamp = 00:03:31,764
number_of_frames = 5
new_timestamp = timestamp + number_of_frames
Thanks! :)