MATLAB: Convert wav file from 16 bit to 8 bit

depth bit audio

I read file wav in 16 bit How covert wav to 8 bit depth

Best Answer

Specify the bit per sample option to the audiowrite function. For example
[y, Fs] = audioread('handel.wav');
audiowrite('handle2.wav', y, Fs, 'BitsPerSample', 8);
Related Question