↧
Answer by Chakri for Ffmpeg drawtext on top of scaled video regardless of...
Got it working with below command:ffmpeg -loop 1 -i image.jpg -r 29.970 -c:v libx264 -t 15 -pix_fmt yuv420p -profile:v high -level 4.2 -vf "scale=1920:1080, drawtext = text='Resumes in...
View ArticleAnswer by Weaver for Ffmpeg drawtext on top of scaled video regardless of...
If the image is the only video source then video is just the image and "overlay from the top left corner of the video" means the same as "overlay from the top left corner of the image". So you are...
View ArticleFfmpeg drawtext on top of scaled video regardless of image size
I am making a video from single image using ffmpeg and draw text on top of the video.How can I drawtext that will overlay on top of the scaled video size instead of the image scale?Right now when I add...
View Article