why separation audio channel always have result 16 bits per sample?
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi everyone
I wanna ask you about audio separation
Why separation audio channel always have result 16 bits per sample?
This happens when I do a channel split from 2 channels to 1 channel the first audio has 24 bit-sample and 2 channel
The second audio has 8 bit-sample and 2 channel
when converted to 1 channel, the audio is changed to 16 bits per sample
Therefore, how do we maintain the sample bits?
For example, the original audio is 24 bits per sample with 2 channels, the audio is separated into 24 bits per sample and 1 channel
I use this code:
thank you
[y,Fs]=audioread('water.flac');
size(y)
% single_channel_from_y = y(:,1);
x=y(:,1)
size(x)
plot(y)
plot(x)
audiowrite('onechannel(24).wav',x,Fs);
% sound(x)
댓글 수: 1
Mathieu NOE
2021년 9월 7일
Please check this , audiowrite by default will generate 16 bits audio if you export in wav format
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Audio I/O and Waveform Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!