ansitest/wav2mp3.sh
2024-06-10 13:04:10 -06:00

27 lines
328 B
Bash

#!/bin/bash
# Source files in /mnt/cdtemp2/dv
# Dest is /mnt/cdtemp
#cd /mnt/cdtemp2/dv
# Curdir instead
# toolame
for c in *.wav;
do
echo '.'$c'.'
time lame \
--disptime 2 \
-q 4 \
--vbr-new \
-V 3 \
-B 196 \
$c tmpfile.mp3
mv -v tmpfile.mp3 $c.mp3
#/mnt/cdtemp/audio/$c.mp3
done
ls -alh
## --preset BLAH \