Created
February 9, 2018 05:40
-
-
Save grishy/daffbf82bfd6b6a7db17ea4fdd266643 to your computer and use it in GitHub Desktop.
This file contains 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
```bash | |
$ .\ffmpeg.exe -r 60 -f image2 -s 1280x720 -i bg.jpg -i audio.mp3 -vcodec libx264 -b 4M -acodec copy OUTPUT.mp4 | |
``` | |
``` | |
Mode LastWriteTime Length Name | |
---- ------------- ------ ---- | |
-a---- 09.02.2018 8:36 5191680 audio.mp3 | |
-a---- 09.02.2018 8:34 3757177 bg.jpg | |
-a---- 09.02.2018 8:33 42919936 ffmpeg.exe | |
-a---- 09.02.2018 8:39 109 readme.txt | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for /R %%f in (*.mp3) do .\ffmpeg.exe -y -r 60 -f image2 -s 1280x720 -i bg.jpg -i "%%f" -vcodec libx264 -b 4M -acodec copy ".\out%%~nxf.mp4"