
Quick Links:
Empeg FAQ
|
RioCar.Org
|
Hijack
|
BigDisk Builder
|
jEmplode
|
emphatic
Repairs: Repairs
|
#274593 - 18/01/2006 20:35
Re: Compressing Mp3's from high bit VBR to 128 CBR
[Re: mlord]
|
carpal tunnel
Registered: 29/08/2000
Posts: 14510
Loc: Canada
|
Quote: The catch is all the files are in structured subfolders IE.(A-D\Artist\Album). I want re-encode the files into a new folder.
In that case:
mkdir new
cd old
find . -type d -exec mkdir -p ../new/{} \;
find . -name \*.mp3 -exec lame --preset cbr 128 {} ../new/{} \;
Cheers
Edited by mlord (18/01/2006 20:36)
|
Top
|
|
|
|
|
|
|