The reason why i needed the command line is that i need to convert one folder full of MTS files to AVI and they GUI is too time consuming for me. So instead I written a script to convert all the MTS on a folder into AVI. Here is the script (download the CLI version at Handbrake)
#!/bin/bash
for file in *.MTS
do
outfile=${file%.MTS}.avi
./HandBrakeCLI -i $file -o $outfile
doneFor those how doesn't know what to do with the script above:
* Alt+F2 --> gnome-terminal
Type the following:
* cd <your directory>
* touch convert.sh
* gedit convert.sh
* <copy the script above, save and exit>
* sudo chmod +x convert.sh
To run type
* ./convert
Hope this helps :)
0 comments:
Post a Comment