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

41 views (last 30 days)
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 Comment
oscillator
oscillator on 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?

Sign in to comment.

Answers (1)

Anshika Chourasia
Anshika Chourasia on 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.

Categories

Find more on Audio I/O and Waveform Generation in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!