DaveG
DaveG

Reputation: 501

How to apply drawtext and watermark at the same time?

drawtext cmd:

ffmpeg -ss 100 -t 5 -i input.mp4 -vf "drawtext=text=HELLO:fontsize=60" output_1.mpeg

watermark cmd:

ffmpeg -ss 100 -t 5 -i input.mp4 -i watermark.png -filter_complex "overlay=10:10" output_2.mpeg

but what if I want to apply these two cmd at the same time?

Upvotes: 0

Views: 69

Answers (1)

Gyan
Gyan

Reputation: 93058

Use both filters in the same vf filterchain, separated by commas.

ffmpeg -ss 100 -t 5 -i input.mp4 -i watermark.png -filter_complex "overlay=10:10,drawtext=text=HELLO:fontsize=60:x=100:y=100" output_2.mpeg

Upvotes: 1

Related Questions