summaryrefslogtreecommitdiffstats
path: root/flactomp3
blob: 32ed2e3f77a5bf4aab58bca7de8fc77782ee940a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

shopt -s globstar

if (($# < 1)); then
	echo "usage: ${0##*/} <directory>"
	exit
fi

if [[ ! -d $1 ]]; then
	echo "argument must be a directory"
	exit 1
fi

dir=${1%/}
copydir_suffix="_mp3"

find "$dir" -type d -exec mkdir -p ${dir}${copydir_suffix}/{} +
find "$dir" -type f -name '*.flac' -print0 | parallel -0 ffmpeg -i {} -qscale:a 0 '{=s#^([^/])(.*)\.flac$#\1'"${copydir_suffix}"'\2.mp3#=}'