Page 1 of 1

16 bits mp3 resample to 32 bits

Posted: Mon Feb 27, 2023 12:33 pm
by XiotSamuel
do any one have idea / repo for resample 16 bits depth mp3 to a 32 bits depth mp3?

Re: 16 bits mp3 resample to 32 bits

Posted: Wed Mar 15, 2023 7:13 am
by tempo.tian
Resample only works on PCM format.
To covert 16bits to 32bits PCM, if all use little endian, you need only left shift 16 bits, no need resample.
If you want to change 16bits mp3 to 32bits mp3, you need firstly decode mp3 into pcm, convert to 32 bits then re-encode to mp3.

Re: 16 bits mp3 resample to 32 bits

Posted: Fri Mar 17, 2023 6:54 am
by XiotSamuel
Any way to convert the mp3 into pcm, is this kind of function include in ADF, or I need to download extra library?

Re: 16 bits mp3 resample to 32 bits

Posted: Tue Mar 21, 2023 6:28 am
by tempo.tian