필터 지우기
필터 지우기

May I ask can I change the value of the maximum amplitude of wav file and save as new wav file?

조회 수: 1 (최근 30일)
May I ask can I change the value of the maximum amplitude of wav file and save as new wav file? For example I want to change max1 and max2 to other value and save as other wav file after change it.
[y,Fs] = audioread('test4.wav');
amplitudes = abs(y);
left=y(:,1);
max1 = max(abs(left));
right=y(:,2);
max2 = max(abs(right));
disp(max1);
disp(max2);

답변 (0개)

카테고리

Help CenterFile Exchange에서 Waveform Generation에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by