On Tue, 25 Mar 2008 22:34:29 +0200 Oleg Gashev wrote: > Приветсвую! > > Как конвертнуть .ape в .mp3? > #!/bin/sh
for a in ./*.ape ; do
mac "$a" "${a%ape}wav" -d
done
for a in ./*.wav ; do
lame -q 2 -m s -b 320 "$a" "${a%wav}mp3";
done
exit 0
--
Матвийчук Олег aka Matvey, LRU#349092
http://mathway.narod.ru
I am the "ILOVEGNU" signature virus. Just copy me to your signature.
This email was infected under the terms of the GNU General Public License.
signature.asc
Description: PGP signature

