I keep getting this error: Error using i(line 13) Device Error: Unanticipated host error

32 次查看(过去 30 天)
Fs=8000 ; bits=16; Channels=1;
filename= 'a.wav';
rec=audiorecorder(Fs,bits,Channels);
duration=3;
disp('REC-START');
recordblocking(rec,duration); %This is line 13, where the error is
disp('REC-END');
onoma=getaudiodata(rec);
audiowrite('a.wav',onoma,Fs);
%I'm trying to record an audio file and play it afterwards.
%How can I correct this error?
  1 个评论
oscillator
oscillator 2022-2-17
I used matlab online , wrote the same code and got the following message:
No audio input device found on this system.
What dos that mean? What should I do?

请先登录,再进行评论。

回答(1 个)

Anshika Chourasia
Anshika Chourasia 2022-2-23
Hi,
As a first step in troubleshooting this issue, I would suggest updating the software with latest release as it fixes most of the "Device Error" related issues. And, please make sure you restart MATLAB after plugging in any new devices because MATLAB does not automatically refresh the list of devices.
If the problem still persists then please share the output of the "audiodevinfo" command by saving it to a .MAT file. You can do this by entering the following commands at the command window:
>> info = audiodevinfo;
>> save('audioInfo.mat', 'info');
Ensure that the required device is present in the 'output' field of the struct.

类别

Help CenterFile Exchange 中查找有关 Audio I/O and Waveform Generation 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by