Created
May 2, 2017 22:36
-
-
Save trolleway/895335e7671a7d62bd9ad123b78a90e3 to your computer and use it in GitHub Desktop.
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
REM склейка кадров в видео с заданным fps | |
"c:\Program Files (x86)\RICOH THETA\tools\ffmpeg.exe" -y -f image2 -framerate 60 -i %04d.jpg -vf format=yuv420p 103-3-30.mp4 | |
REM создание клипа со статической картой, увеличение масштаба до размера кадра | |
"c:\Program Files (x86)\RICOH THETA\tools\ffmpeg.exe" -loop 1 -f image2 -t 4 -i map.png -vf scale=4608:2592 -pix_fmt yuv420p map.mp4 | |
REM вклеить в начало ролика карту | |
"c:\Program Files (x86)\RICOH THETA\tools\ffmpeg.exe" -y -i map.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts | |
"c:\Program Files (x86)\RICOH THETA\tools\ffmpeg.exe" -y -i 103-3-30.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts | |
"c:\Program Files (x86)\RICOH THETA\tools\ffmpeg.exe" -y -i "concat:intermediate1.ts|intermediate2.ts|intermediate1.ts" -c copy -bsf:a aac_adtstoasc 103-4.mp4 | |
REM Добавить музыку | |
"c:\Program Files (x86)\RICOH THETA\tools\ffmpeg.exe" -y -i 103-4.mp4 -i "C:\Users\trolleway\Downloads\De Lorra - Tomorrow.mp3" -codec copy -shortest 103-5.mp4 | |
del 103-4.mp4 | |
del intermediate1.ts | |
del intermediate2.ts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment