MRC01
Major Contributor
When I download music in 192-24 I often downsample it to 96-24 to save space, since there should be no perceptual difference. To do this I use sox 14.4 on my Ubuntu 24 system, specifically:
Usually the 96k files are smaller, 3/4 of the size. Yet lately I've encountered a couple of albums where all the files got slightly bigger when downsampled. Both versions (192 and 96) sound fine and a spectrum analysis looks the same. I can't think of anything that would cause this. Any ideas?
Code:
mt="--multi-threaded"
bf="--buffer 2097152"
srate="96000"
sox -V2 -S $bf $mt "$file" "${outdir}/${file}" rate -v "${srate}"