Save mp4 fast

Hello friends;

I want to add only one png file to my clip, as seen in the attachment below. The clip was already ready.

Can we adjust this to be faster than the normal process?

Thanks in advance to the helpful friend.

To add music to a single picture i would use ffmpeg on a commandline

ffmpeg -loop 1 -i picture.jpg -i audio.mp3 -c:v libx264 -preset ultrafast -tune stillimage -vf "fps=30,format=yuv420p,scale=1920:1080" -c:a copy -shortest out.mp4

https://trac.ffmpeg.org/wiki/Slideshow#Addingaudio

EDIT: Optimized for speed, added output fps and scale to 1920z1080

1 Like

I tried it for the clip. Yes, it accelerated. But he didn’t add the logo…


Ok. I solved it with the line of code you gave… Thank you very much…