microphone

Listening to the iPhone mic with SCListener and playing music at the same time: how?

Hello, I am using Stephen Celis' SCListener class (for iPhone) to "listen" from the microphone, but I also need to be playing music at the same time using the MediaPlayer framework. However, when I start listening with SCListener, the music fades out and stops. I have set the kAudioSessionCategory_PlayAndRecord property on the audio se...

Can't make microphone work on Flex

Hi, A Adobe Flex issue... I'm attaching a microphone to a NetStream, but there is no mic activity. The privacy is set to Allow, the microphone.muted is false and the activity level is -1. Only when I open the flash settings, and open the Microphone tab, it starts to dispatch the Activity events, and it starts to stream the audio. Als...

Windows mobile microphone low level properties

Hello everyone, I would like to know if there is any managed or unmanaged library for accesing microphone properties in windows mobile. I want to collect real-time info from the microphone: decibels, tone and so on... Any idea? Any .dll for that in windows mobile? Thanks in advance. ...

OpenAL Real Time Audio Processing from Microphone

Hello. I would like to write a cross-platform application that can process and play back microphone data in real time. Imagine as a proof of concept a chat room where people can talk to each other and apply filters to their voices. Is OpenAL appropriate for this? If not, can someone provide an alternative? Additionally, if anyone ca...

Speech Recognition for Julius using audio instead of Microphone

I need to test Julius Speech to Text conversion with some audio. moreover it would be possible to simulate noise over the audio. is anyone aware of such a software? Has anyone worked with Julius? Any Comments on the library? ...

Displaying left/right stereo activity while capturing audio from microphone (JAVA)?

I am trying to analyze the microphone input through Java so you can graphically display where the sound is coming from around the computer. I have audio capture code working well (from: http://www.developer.com/java/other/article.php/1565671#Complete%20Program%20Listings) and have tried to implement: (FloatControl) targetDataLine.getCon...

Both using , recording from microphone and playring ipodmusic.

I would like to recording from microphone and playing i-pod library music at the same time. so i try to code like this . -( void ) SetUpAudioSession{ // getting mpobject MPMusicPlayer *mp = [ MPMusicPlayerController applicationMusicPlayer ]; ( or MPMusicPlayer *mp = [ MPMusicPlayerController iPodMusicPlayer ]; ) // getting player...

Access webcam and microphone input in VB.net

How can you access the webcam and microphone in VB.net, assuming the user even has one? I fail to see a My.Computer.Webcam or My.Computer.Microphone, both of which would probably have been a nice addition. Thanks for the help! If there is no easy method for doing this, what is the name of the driver that handles this and what methods s...

Microphone detection Actionscript 3

Hi guys, I'm having a few problems detecting whether a microphone is detected or not. I'm running the function Microphone.getMicrophone() and that should return null if there is no microphone attached, or if the user has clicked Deny on the security panel, right? The problem I'm facing is, on some computers where there is no microphone ...

Detecting if the microphone is on

Is there a way to programmatically detect whether the microphone is on on Windows? ...

Wrong control id for mixer API in Windows XP

Hi. I am having a problem with the Mixer API in Windows XP. I am trying to change the microphone recording level and mute state for a distinct sound device (I have multiple devices installed). Do do this, I need the MIXERLINE.dwLineID member in order to obtain MIXERCONTROL.dwControlID. I am trying to do this by passing MIXERLINE_COMP...

DirectSound: how to change the input volume of a microphone?

Hi, I have some questions about Directsound and windows mixers. My goal is to enumerate all microphones and be able to change the input volume of each one. I think i'm not far from the solution, but I don't find what is wrong in my code. Here is what I have done: - I enumerate all input devices and get a GUID for each one - I use a meth...

No Microphone error on iPod Touch

I've build an iPhone app that should work on an iPod Touch as well, but I'm getting reports that the app is not working on iPod touches. It's displaying an error message saying there's no mic available on the device. The thing is, the app does nothing whatsoever with audio, and I can't find anything related in the project settings. The ...

Capture microphone audio stream in Windows using C

I'm looking to build a Morse decoder (and eventually a coder) in C. I'd like to use the audio port as input, and sample the incoming voltage on the port. How do I go about reading the voltage on a microphone audio port in Windows using C? ...

How get sound input from microphone in python, and process it on the fly?

Greetings, I'm trying to write a program in Python which would print a string every time it gets a tap in the microphone. When I say 'tap', I mean a loud sudden noise or something similar. I searched in SO and found this post: http://stackoverflow.com/questions/1797631/recognising-tone-of-the-audio I think PyAudio library would fit my...

How to develop for player 10.1 beta?

I've been waiting for the day that flash gets access to raw audio data. That day is now, but i'm not sure how to get 10.1 working in CS4. I have 10.1 installed and a function bound to the mic's "SampleDataEvent.SAMPLE_DATA" but my "micSampleData" function is not being called. var mic = Microphone.getMicrophone(); Security.showSettings(S...

Converting microphone data into AMR

It is possible to convert microphone data into AMR based data? ...

How to mute the microphone c#

Hi! I wanted to know, what would the coding be if I wanted to toggle mute/unmute of my microphone. I am making a program that can run in the background and pickup a keypress event and toggle mute/unmute of the mic. Any help with any of that coding would be very helpful. I am pretty new to C#, and this is just a really simple program I wa...

How to send audio stream via UDP in java?

Hi to all :) I have a problem, i have set MediaLocator to microphone input, and then created Player. I need to grab that sound from the microphone, encode it to some lower quality stream, and send it as a datagram packet via UDP. Here's the code, i found most of it online and adapted it to my app: public class AudioSender extends Thre...

iPhone microphone high-pass filter

Hi all, In my app, I am using the AVAudioRecorder to detect input from the microphone. However, I need to create a high-pass filter so that I only register higher-pitched sounds. I've looked into FFT, but I can't figure out how to implement it. So, now I'm looking to kind-of fudge an FFT with a high-pass filter. Any help would be gre...