I am trying to overlay my video with the timecode.
Currently, I have this:
ffmpeg -y -i input.avi -vf "drawtext=:fontfile=/Windows/Fonts/myfont.ttf:timecode='00\:00\:00\:00':rate=$framerate: fontcolor=white: x=700: y=555" -crf $quality -vcodec libx264 output.avi
This works but uses the default format of hh:mm:ss:ff.
Is it possible to just display the elapsed time in seconds only?
If not, is there another way of displayed the number of elapsed seconds?