Current Status: I have a movie I recorded on a microscopy and a .txt file with two columns: time and temperature. This file is synchronous with the video. I would like to 'edit' the video so there is a text box with the temperature that would update as the movie plays.
My approach, for the moment, is to use ffmpeg
. I managed to draw some text and it seems all is working as intended.
The problem is: I can't find any reference on how to update that text dynamically. I am using some Python to read the file and launch ffmpeg
with subprocess.
I would like to ask if anyone knows some workaround for this. Maybe some other approach.