I am trying to burn (hardcode) an SRT file and a timecode value to a MP4 file, but to no avail.
I am currently burning the srt and timecode using the below commands:
Burn SRT
ffmpeg -i input.mp4 -vf subtitles=subs.srt out.mp4
Burn Timecode
ffmpeg -i input.mp4 -filter_complex "drawtext=fontfile=/Windows/Fonts/arial.ttf:x=320:y=main_h-50:fontsize=32:fontcolor='white':timecode='00\:00\:00\:00':rate=29.97" -y output.mp4
However, I am not able to combine the two into a single command as ffmpeg does not allow usage of -vf and -filter_complex together.
Is there a workaround?