Is it possible to resample an MP3 file to a different rate (44.1) without doing a reencode? I have a few MP3 files that are at 48 and I need to switch 'em to 44.1, and I don't want to have to reencode my files to do so, as I'll lose quality. The source files are at CBR 320 and at 48kHz. Can this be done?

The current way I'm doing it is using the following command:

lame -b 320 -q 0 --resample 44.1 input.mp3 output.mp3

Is there a better way to do this?

link|improve this question

1  
I don't believe this is possible. – Randolph West Jan 14 '11 at 23:19
Yeah probably not. I'm not too familiar with the way that sample rate works in audio, but I'd assume that I'd have to reencode to change the sample rate. If you'd like to post this as an answer, I'd be happy to give you credit for it :) In the end, I just ended up doing the above and using id3cp to copy the ID3 tags over. – TK Kocheran Jan 14 '11 at 23:28
@Randolph you said it first...i just said it definitively...if you move your comment to an answer, I'll delete mine. – aking1012 Jan 15 '11 at 16:58
I have answered with a link to the Wikipedia article too. – Randolph West Jan 16 '11 at 0:14
feedback

1 Answer

up vote 1 down vote accepted

No, I don't believe this is possible. The sample rate is to do with the number of samples per second, which would require a re-encoding of the track to change this value.

See more on the Wikipedia article on Sampling rate.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.