How to save a .wav file into different path after processed?

1 回表示 (過去 30 日間)
Epri Pratiwi
Epri Pratiwi 2020 年 8 月 11 日
編集済み: Stephen23 2020 年 8 月 11 日
Anyone know how to save it into different path? Thanks
[y, fs] = audioReadNCU();
[y, fs] = wavToPreprocWav(y, fs);
band = wavToElectrode(y, fs);
y = electrodeToWav(band, fs);
sound(y, fs);
audiowrite('1_ace_8.wav',y,fs);

採用された回答

Stephen23
Stephen23 2020 年 8 月 11 日
編集済み: Stephen23 2020 年 8 月 11 日
D = 'absolute or relative path to the folder where you want to save the file';
F = fullfile(D,'1_ace_8.wav');
audiowrite(F,y,fs);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFilename Construction についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by