We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29e7268 commit 1e57b75Copy full SHA for 1e57b75
BatchConvertToProres.bat
@@ -1,2 +1,6 @@
1
-for %%a in ("*.MXF") do .\ffmpeg.exe -i "%%a" -vcodec prores -profile:v 3 "prores\%%~na.mov"
+REM Convert MP4 files into Prores
2
+REM Change the *.MP4 for whatever you need to change
3
+REM you may need to create the prores folder
4
+REM Eventually this will be a powershell script but for now it just works.
5
+for %%a in ("*.MP4") do .\ffmpeg\ffmpeg.exe -i "%%a" -vcodec prores -profile:v 3 ".\prores\%%~na.mov"
6
pause
0 commit comments