Created
November 20, 2015 04:59
-
-
Save paulwakeford/40e52cd57aaf5c230eb2 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
############################################################################### | |
# | |
# Script to recursively search a directory and batch convert all files of a given | |
# file type into another file type via HandBrake conversion. | |
# | |
# To run in your environment set the variables: | |
# hbcli - Path to your HandBrakeCLI | |
# | |
# dirs - Array of starting directories for recursive search | |
# | |
# input_file_type - Input file type to search for | |
# | |
# output_file_type - Output file type to convert into | |
# | |
# | |
# Change log: | |
# 2012-01-08: Initial release. Tested on Mac OS X Lion. | |
# 2012-02-09: Added ability to process multiple directories. | |
# 2012-02-12: Added default system beep to signal end of all processing. | |
# | |
############################################################################### | |
hbcli=/usr/local/Cellar/ffmpeg/2.6_1/bin/ffmpeg | |
input_file_type="mkv" | |
output_file_type="dd5.mkv" | |
move_file_type="wasdts" | |
dirs=( '/Volumes/media/video/Films' | |
) | |
echo "# Using HandBrakeCLI at "$hbcli | |
echo "# Converting "$input_file_type" to "$output_file_type | |
# Convert from one file to another | |
convert() { | |
# The beginning part, echo "" | , is really important. Without that, HandBrake exits the while loop. | |
echo ""# | $hbcli -i "$1" -vcodec copy -acodec ac3 -ac 6 "$2" ; | |
} | |
# Iterate over the array of directories | |
for i in "${dirs[@]}" | |
do | |
echo "Processing source directory: " $i | |
# Find the files and pipe the results into the read command because the read command properly handles spaces in directories and files names. | |
find "$i" -iname *dts*.$input_file_type | while read in_file | |
do | |
echo "Processing file..." | |
echo ">Input "$in_file | |
# Replace the file type | |
out_file=$(echo $in_file|sed "s/\(.*\.\)$input_file_type/\1$output_file_type/g") | |
echo ">Output "$out_file | |
move_file=$(echo $in_file|sed "s/\(.*\.\)$input_file_type/\1$move_file_type/g") | |
echo ">Move "$move_file | |
# Convert the file | |
convert "$in_file" "$out_file" | |
if [ $? != 0 ] | |
then | |
echo "$in_file had problems" >> handbrake-errors.log | |
else | |
mv "$in_file" "$move_file" | |
fi | |
echo ">Finished "$out_file "\n\n" | |
done | |
done | |
echo "DONE CONVERTING FILES" | |
echo -en "\007" | |
echo -en "\007" | |
echo -en "\007" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment