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

32 Ansichten (letzte 30 Tage)
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 Kommentar
oscillator
oscillator am 17 Feb. 2022
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?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Anshika Chourasia
Anshika Chourasia am 23 Feb. 2022
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.

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by