Created
March 24, 2013 11:16
-
-
Save mresetar/5231464 to your computer and use it in GitHub Desktop.
Batch convert Olympus PL-1 video files to smaller MPEG4 AAC H264 video with Lame 128KB MP3
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
@echo off | |
set ffmpeg_dir=e:\portable\ffmpeg\bin | |
for /F "delims=" %%I in ('"dir /B | findstr -E -I "P[0-9][0-9]*.*\.avi""') do ( | |
%ffmpeg_dir%\ffmpeg.exe -i %%I -c:v libx264 -preset slow -crf 18 -b:a 128k Converted_%%I | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment