audio-recording

iPhone SDK Smaller CAF files: lower recording quality with Audio Queues?

In my iPhone app I have voice recording functionality the utilizes Audio Queue voice recording functions of the SDK. I'm saving directly to CAF format and using the following settings for the AudioStreamBasicDescription reference: audioFormat.mFormatID = kAudioFormatLinearPCM; I can see that there are other format ids I could use lik...

Android. How to Do Audio Recording with High Volume?

Hi, I will describe briefly my trouble with audio recording. So, I am doing audio recording using MediaRecorder, but unfortunately when I playback the recorded audio, I have media with a very low volume. I don't here anything (almost anything). Is there any possibility to setup recording volume? Thanks. ...

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...

Efficient way to produce many small recordings and connect it to database.

For a language course I need to record many sentences and words separately. Ideally I would click on a button next to the written sentence in my database (e.g. MS Access or MySQL) and record the sentence. Then go to the next sentence. Is there a way to do it that simple? Until now, I record the sentence one by one in audio software l...

Improve Android Audio Recording quality?

Hi, is there any possibility to make audio recording with higher quality? And how can I read information that User is saying something? In Audio Recording application you can see such indicator (I don't know the right name for it). Thanks. ...

I need to develop a project involving hardware which should also work the same on Windows as well as Macs. Whats the way forward?

Whats the best approach (read painless) that I could take? Primarily, the application needs to record the webcam video + mic recording on the disk and compress the video using ffmpeg (or something similar). So there is hardware involved + running a separate process for encoding. I was seriously considering Adobe AIR - but I read on the...

How to do sound recording through a web?

Then save it at server side,is it possible? ...

Recording and saving sounds from applications?

I Would like to make an appliaction in c# (or vb.net) that records every sound that comes out from the speakers when i tell it to, and when im finished i want to push a button and save it as an mp3 (or some other format). So far i have only found APIs that can record something from a microphone. My Question is: Is there anything in th...

Audio streaming from iPhone to a server?

How can I stream the audio recorded from iPhone to a server continuously? Am I really have to use RTP? Any other suggestions? Thanks. ...

how to combine user voice and curently playing audio in iphone sdk?

Hello all, I want to create a karaoke like application.First tell me is it possible or not. How do i combine two sounds? suppose i am playing instrumental and want to record my voice so that i can create a new song using my voice. ...

combining live recording audio in another audio file iphone sdk?

Does someone knows how we can combine our current recording into another background playing music? I need some sample code for this. I want to create something like karaoke application in which we can record our voice over an instrumental music. ...

Record speaker output with Audio Unit

What I'm trying to do: Record the speaker output using Audio Units. What I have tried: I'm using Apples sample code "RecordAudioToFile", (http://developer.apple.com/mac/library/samplecode/RecordAudioToFile) which does exactly what I want, except that it use the microphone as input. It thought changing kAudioHardwarePropertyDefaultInput...

Is that possible to get the current sample amplitude by MediaRecorder or other class

Hi everyone, I have a media recorder, and want to record a media from mic and get it's amplitude sample. I want to try to get the correct and current amplitude instantaneously when calling some API. But there is just one API in MediaRecorde for getting amplitude: getMaxAmplitude, and it is used to get the maximum absolute amplitude measu...

Is it possible to create a simple answering machine in android?

I'm thinking of creating an answering machine in android that automatically alerts the caller that he/she has reached the answering machine after an alloted time and then records the message. Is it possible in android? ...

Extracting SMPTE timecode from audio stream

Hi all, I'm working on an audio recording system. My task involves extracting the SMPTE time code from audio input stream, generated by a synchronizer device. I'm using ASIO SDK to get the time code of each callback buffer but it's always zero. Perhaps somebody has experience in ASIO SDK (or any other platform/sdk that can be used to e...

Simultaneous record and play from same file

I'm attempting to use Audio Queue Services for the first time. After reading all the documentation and playing with some sample code, I think I understand the classes pretty well and have implemented my own playback and recording application without any problems. I need to simultaneously record and play from the same buffer, but I'm hav...

Dynamic time warping to compare two audio recordings

I'd like to use Dynamic Time Warping to compare two feature vectors for two audio recordings (of course I'm doing all the necessary preprocessing first). My program should output the similarity between the two audio recordings in percent. For example 100% means that the two recordings are completely identical, and the more different are ...

Distorted sound when using remote I/O AudioUnit

Consider aurioTouch sample application provided by Apple. I wanted to simulate a lengthy processing of the recorded audio and modified the sample by introducing a delay of 0.1 second in the render callback method: PerformThru. This leads to a distorted audio and static noise being played through iPhone's speaker or headphones. The noise ...

Android - Can I do this with MediaRecord/MediaPlayer instead of AudioRecord/Track?

I currently use AudioRecord to record audio in from the mic of an Android device and then pipe that straight to an AudioTrack that plays it out the Earpiece of an Android device. I'm wondering can I do the same but with the MediaPlayer and MediaRecorder classes instead as I need to use the AMR-NB encoding that is available on the Media ...

How to use RtAudio with Direct Sound on windows.

The RtAudio documentation says. Windows (DirectSound): The configure script provides support for the MinGW compiler. DirectSound support is specified with the "--with-ds" flag. In order to compile RtAudio under Windows for the DirectSound API, you must have the header and source files for DirectSound version 5.0 or higher. As far as I...