Currently, I add a watermark to the bottom right of my video to prevent others from republishing it. However, they blur the watermark so I'm thinking of adding a moving watermark that changes its position every x seconds.
Below is my current ffmpeg command:
ffmpeg -i input.mp4 -i logo.png -filter_complex "[1][0]scale2ref=iw/4:ow*90/272[wm][vid];[vid][wm]overlay=W-w-W*10/100:H-h-H*5/100" -preset veryfast output.mp4
How can I make the watermark position from the bottom right to top right, to top left, and bottom left every 30 seconds? Thank you.