diff options
Diffstat (limited to 'audioconversion.sh')
-rw-r--r-- | audioconversion.sh | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/audioconversion.sh b/audioconversion.sh new file mode 100644 index 0000000..4b53cd1 --- /dev/null +++ b/audioconversion.sh @@ -0,0 +1,40 @@ +#!/bin/sh +if [ -z "$1" ] || [ -z "$2" ] +then +echo "Enter an input directory followed by an output directory!" +else +echo "Copying Directories..." +find $1 -mindepth 1 -type d -print0| while read -d '' -r dir; +do +#echo $dir; +d1=${dir#$1} +#echo "$2$d1" +&>mkdir -v "$2$d1" +done +#Link to all pictures, lyric files, etcetera. +echo "Creating Links for non-audio files..." +find $1 -iname '*.png' -o -iname '*.jpg' -o -iname '*html' -o -iname '*.lrc' -o -iname '*.txt' -o -iname '*.cue' -o -iname '*.exe' -o -iname '*.mpg' -o -iname '*.bmp' -o -iname '*.ico' | while read file; +do +#echo "$2${file#$1}" +&>ln -p "$file" "$2${file#$1}" +done +echo "Copying pre-existing mp3s and unlinkable files..." +find $1 -iname '*.mp3' -o -iname '*.log' -o -iname '*.m3u' -o -iname '*.m3u8' -o -iname '*.accurip' -o -iname '*pdf' -o -iname '*.rtf'| while read file; +do +&>cp "$file" "$2${file#$1}" +done +find $1 -iname 'desktop.ini' -o -iname 'Thumbs.db' -o -iname '*nfo'| while read file; +do +rm "$file" +done +echo "Converting audio... Please be Patient!" +find $1 -mindepth 2 -type d -print0| while read -d '' -r dir; +do + if [ $(find "$dir" | wc -l) == $(find "$2${dir#$1}" | wc -l) ] + then + echo "$2${dir#$1} already contains converted files!" + else + track2track -t mp3 -j 20 -d "$2${dir#$1}" "$dir"/*.flac "$dir"/*.wav "$dir"/*.mp4 "$dir"/*.m4a "$dir"/*.wv "$dir"/*.ape + fi +done +fi |