Effacer les filtres
Effacer les filtres

Microphone not recognized in simulink

13 vues (au cours des 30 derniers jours)
isra
isra le 15 Jan 2017
Commenté : Isra Haroun le 13 Août 2017
Hello
I'm having trouble recording using MATLAB. It says that no audio input devices are detected. I tried recording outside MATLAB and my mic was working perfectly, only MATLAB wouldn't recognize any mic I plugged in. Here is a screenshot of what I got:
Thanks

Réponses (2)

Vishal Neelagiri
Vishal Neelagiri le 17 Jan 2017
In order to communicate with the audio hardware on a given computer, Simulink uses the open source PortAudio library. The PortAudio library supports a range of APIs designed to communicate with the audio hardware on a given platform. The following API choices were made when building the PortAudio library for Simulink:
Windows®: DirectSound, WDM—KS, ASIO™
Linux®: OSS, ALSA
Mac: CoreAudio
For Windows, the default is DirectSound, for Linux, the default is ALSA, and for Mac there is only one choice.
To determine the audio hardware API currently selected, type the following command in the MATLAB command prompt.
getpref('dsp','portaudioHostApi')
The output is a scalar indicating the choice of the API. 1 — DirectSound 3 — ASIO 7 — OSS 8 — ALSA 11 — WDM-KS To select a particular API, type the following command in the MATLAB command prompt.
setpref('dsp','portaudioHostApi',N)
It might be possible that the API that was setup on your computer is different than the one that is required by your operating system.
The above information is present in the following documentation link:
https://www.mathworks.com/help/dsp/ref/fromaudiodevice.html#brls9zm-1
  2 commentaires
isra
isra le 18 Jan 2017
Thanks for replying, I tried it and it gave me 1, which directsound. I'm using windows 7 so this should be correct right?
bob hnoupa
bob hnoupa le 12 Fév 2017
I have the same problem and no solution yet. (stereo usb sound card audio adapter)
When I try " audiorecorder" for example:
r = audiorecorder(22050, 16, 1);
.... it worked last week, but today not!
Error: "No audio input device found on this system."
Matlab system for raspberry (Raspberry Pi 3 Model B) reinstalled, but still no sound device - exactly as on the pics of ISRA here.
if typing:
getpref('dsp','portaudioHostApi')
ans = 1
Any new ideas what should I do? Thanks very for help

Connectez-vous pour commenter.


Alex Dashevsky
Alex Dashevsky le 11 Août 2017
I have the same problem. My microphone connects to usb. How can solve it ?
  1 commentaire
Isra Haroun
Isra Haroun le 13 Août 2017
I didn't continue in that approach, I had a similar problem with my usb camera too. I just had to download some drivers for windows camera from the list of vendors. I assume it's the same with the mic. you can look for the detected audio devices on the data acquisition app and download any missing drivers if nothing is detected.

Connectez-vous pour commenter.

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by