Skip to content

Commit 1e57b75

Browse files
committed
Update Batch Prores script with documentation
1 parent 29e7268 commit 1e57b75

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

BatchConvertToProres.bat

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
for %%a in ("*.MXF") do .\ffmpeg.exe -i "%%a" -vcodec prores -profile:v 3 "prores\%%~na.mov"
1+
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"
26
pause

0 commit comments

Comments
 (0)