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

47 visualizaciones (últimos 30 días)
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 comentario
oscillator
oscillator el 17 de Feb. de 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?

Iniciar sesión para comentar.

Respuestas (1)

Anshika Chourasia
Anshika Chourasia el 23 de Feb. de 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.

Categorías

Más información sobre Audio I/O and Waveform Generation en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by