Advertisement
OgreVorbis

Still photo video maker

Feb 1st, 2023
1,007
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.37 KB | None | 0 0
  1. @echo off
  2. title Single Photo VP9 Video Maker
  3. color 0b
  4. echo This program will make a video from only a single image file and sound file.
  5. echo.
  6. set /p IMGFILE=Drag image here:
  7. set /p AUDFILE=Drag audio here:
  8. set /p OUTFILE=Type output file name (.webm):
  9. ffmpeg -loop 1 -i %IMGFILE% -i %AUDFILE% -c:v libvpx-vp9 -c:a libopus -b:a 128k -pix_fmt yuv420p -shortest %OUTFILE%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement