X-Git-Url: https://git.harvie.cz/?a=blobdiff_plain;f=bash%2Flame-recoder%2Flamer.bash;h=ff0602e74380dfd45ef46dcaf3ee912abfd48b2b;hb=e9c37a44c8bf93d53766303ff10997829efe92a9;hp=d22b7434da6be743e20e790609b62ad0fd6f3a81;hpb=9ee7b8d95722edec810d3d9d615479cac24215d5;p=mirrors%2FPrograms.git diff --git a/bash/lame-recoder/lamer.bash b/bash/lame-recoder/lamer.bash index d22b743..ff0602e 100755 --- a/bash/lame-recoder/lamer.bash +++ b/bash/lame-recoder/lamer.bash @@ -27,11 +27,11 @@ echo -e "lame-recursive v$version (Harvie 2o1o) - Supports multiple CPUs/cores Usage: $0 [preset] [cpu-cores] - Example: cd ~/music; $0 standart + Example: cd ~/music; $0 standard Example: cd ~/spoken; $0 voice presets: - VBR: voice, medium, standart, extreme, insane (= 320kbps CBR) + VBR: voice, medium, standard, extreme, insane (= 320kbps CBR) ABR: 8, 16, 32, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320 For more info: lame --preset help @@ -82,11 +82,11 @@ encode() { tsign " Done: '$infile'; retval=$?"; } -echo "==> I will use $cpus CPU cores"; +echo "==> I will use $cpus CPU cores"; export -f encode; export quality outdir lamelog -find -regextype posix-egrep -iregex '.*'"$filetypes" | grep -v /"$outdir" | tr '\r\n' '\0\0' | xargs -0 -n 1 -P "$cpus" bash -c 'encode "$@"' -- +find -regextype posix-egrep -iregex '.*'"$filetypes" | grep -v /"$outdir" | sort -n | tr '\r\n' '\0\0' | xargs -0 -n 1 -P "$cpus" bash -c 'encode "$@"' -- echo ' -==> All files were processed. +==> All files were processed. ==> But you should rather check them before deleting the originals... ==> Thank you for using lame-recursive by Harvie ( http://blog.harvie.cz/ )'