Created
October 22, 2019 14:16
-
-
Save det-peralta/974de6aea265672493d80c49f9db8b4d to your computer and use it in GitHub Desktop.
Adding image to a video file using ffmpeg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for /r %%i in (*.png) do ( | |
ffmpeg.exe -loop 1 -t 3 -i %%i -c:v libx264 -pix_fmt yuv420p %%i_1.mp4 | |
) | |
del list.txt | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment