Created
August 28, 2016 15:04
-
-
Save Vaduz/5fbfd6ac651c371148bd9dc3a7a329b3 to your computer and use it in GitHub Desktop.
recursively convert iso file to mkv by using handbrakecli in windows
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
gci . *.ISO -R | ForEach-Object { $input = $_.FullName; $newfile = "E:\ISOs\" + $_.BaseName + ".mkv"; &"C:\Program Files\HandBrake\HandBrakeCLI.exe" -i "$input" -o "$newfile" --preset "High Profile" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment