Script for batch converting any video to mp
1. Copy HandBrakeCLI.exe to „C:\Windows\System32“
2. Create *.bat script , and copy this code :
@echo off
:next
if "%~1" == "" goto done
HandBrakeCLI -i "%~1" -o "%~1.mp4" -Z Normal
del "%~1"
shift
goto next
:done
exit
3. Now you can drag and drop your video (-s) on this this icon and handbrake will start encoding.
4. Please pay attention , that source file will be deleted after encoding.
To avoid deletion , remove line with "del "%~1""
0 comments :
Post a Comment
Comment: