Microphone not recognized in simulink

23 visualizzazioni (ultimi 30 giorni)
isra
isra il 15 Gen 2017
Commentato: Isra Haroun il 13 Ago 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

Risposte (2)

Vishal Neelagiri
Vishal Neelagiri il 17 Gen 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 Commenti
isra
isra il 18 Gen 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 il 12 Feb 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

Accedi per commentare.


Alex Dashevsky
Alex Dashevsky il 11 Ago 2017
I have the same problem. My microphone connects to usb. How can solve it ?
  1 Commento
Isra Haroun
Isra Haroun il 13 Ago 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.

Accedi per commentare.

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by