The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
11 views

AudioQueue from NSData (u-law)

Gents & Ladies, hello again. For the first time I'm having to deal with sound in iOS, and instead of starting out with popular, easy to play sound files, I need to play u-law (mu-law), .Vox ...
-1
votes
0answers
17 views

Audio Queue Call Callback time is not same on ipod

I'm use AudioQueue Recorder on ipod touch 4 , but I seem between buffer and buffer times is not the same. Why is it ? the situation is correct? The following are my setup and result: ...
2
votes
0answers
65 views

iOS 4.3 AudioQueuePause vs home button

I use AudioQueue to play sound in my game. There are two sound objects: looped music and non-looped sfx. The problem that I observe is as follows: The music is started. The sfx is started. The sfx ...
0
votes
1answer
22 views

AudioQueue Bytes send to server

i am using AudioQueues to get Chunks of audio samples. here is my callback method void AQRecorder::MyInputBufferHandler( void * inUserData, ...
0
votes
2answers
70 views

a good guide to “Audio Queue Services”?

after looking on apple's example "SpeakHere" i got a little confused and i am looking for any guide for more basic practice. my goal finally is to create 2 sec audio "Chunks" and hand it over to the ...
1
vote
0answers
35 views

AudioQueue's Peak Power Progression is too Gradual

I'm using the standard Apple AudioQueue Services from the AudioToolBox library to use my device's microphone. I am keeping track of the peak audio level in real time, and this is working well except ...
0
votes
1answer
111 views

AEC ( Echo Cancellation Support ) in OSX Using AudioQueue

I am developing VOIP Application on OSX and iOS and will be using AudioQueue for Audio flow, what want to Know is, by default does AudioQueue support acoustic echo cancellation or do we need to add ...
0
votes
1answer
74 views

how to play audio between two iOS device simultaneously

Last month I asked a question that: How do I stream AVAsset audio wirelessly form one iOS device to another? After work these day, I finally make it happened, now I can send the audio from one to ...
0
votes
0answers
42 views

Audioqueue try to read ADPCM sound

I try to read a .asf stream with FFMPEG and the audio part is ADPCM IMA WAV codec. The sound i hear when i hear something is only noise. I suppose my AudioStreamBasicDescription are wrong. How can i ...
0
votes
2answers
102 views

Change Mic gain programmatically in OSX

I am on OSX 10.8 In my Application I had to change the Mic gain, I am using AudioQueue to capture the buffer, but not getting any pointers to change the Mic gain, Apple HAL documentation also, ...
0
votes
0answers
40 views

AudioQueue | Mute Speaker

I am on OSX, and need to Mute Speaker, i am using following function, (void)setMute:(bool)bMute{ if (bMute != [self isMute]) _mute = bMute; else return; // don't do ...
0
votes
1answer
101 views

Audio Queue Interface can deal with 40ms Audio Frame?

I am trying to record the audio in segment of 40ms. Audio Queue Interface can deal with 40ms Audio Frame? If 'Yes' then how can we achieve it? Thanks.
0
votes
1answer
126 views

Accessing Microphone and Camera Live Raw Data on iPhone

I need to access live raw data from camera and microphone on iPhone. I was searching for a few days, using "Remote IO" and "Audio Queue" were suggested for audio and AVCaptureSession for video. Since ...
1
vote
1answer
421 views

How do I stream AVAsset audio wirelessly form one iOS device to another?

I'm making something like streaming the audio from iPod library, send the data via network or bluetooth, and playback using audio queue. Thanks for this question and code. Help me a lot. I have two ...
1
vote
4answers
223 views

audio Queue - No matching function for call to 'AudioSessionInitialize'

I have a problem. I want use some functionality which work with sound in my app. I found example SpeakHere and include the main part functionality of this app in my app. But I have 3 errors: No ...
2
votes
0answers
114 views

AudioFileOpenURL unable to open raw pcm file

I'm using AudioQueueServices to play a raw pcm file. Let's call it somePcm.pcm. I'm using the following line to open the file: AudioFileOpenURL(myFileURL, kAudioFileReadPermission, 0, ...
0
votes
1answer
144 views

Audio Queue doesnt play sound

I am making application which uses Audio Queue. I made these code by reading and studying from books. I just want to play the audio file simply. it doesnt show any compile errors,but it doesn't ...
2
votes
1answer
390 views

iOS 6.1 AudioQueueStop, AudioQueueDispose error

Using Audio Queue for my iOS App, I have some problem with a test on iOS6.1, though it has worked fine on iOS6. The problem is AudioQueueStop and AudioQueueDispose don't return immediately, or ...
0
votes
0answers
265 views

iOS audioqueue unable to use kAudioFormatMPEG4AAC

Source code - (void)setupAudioFormat:(AudioStreamBasicDescription*)format { format->mSampleRate = SAMPLES_PER_SECOND; format->mFormatID = kAudioFormatLinearPCM; ...
0
votes
1answer
221 views

How to get samples from AudioQueue Services on iOS

I'm trying to get samples from AudioQueue to show spectrum of music (like in iTunes) on iPhone. Ive read a lot of posts but almost all asks about get samples when Recording, not playing :( I'm using ...
0
votes
0answers
95 views

Does Audio queue support 12.8kbps LPCM data playback?

I use ffmpeg to decode a local 3gp file just for audio in IOS Simulator environments. The audio format information of this file is as follows: aCodec name: AMR-NB (Adaptive Multi-Rate NarrowBand) ...
0
votes
0answers
77 views

AudioQueue playback of audio received over UDP

I'm trying to implement a small app for testing, I have a server that just echos back everything it receives. I'm using AudioQueue to record and play. I think I've got the recording right, it ...
1
vote
1answer
301 views

XCODE AVAudioPlayer error regarding AudioQueue: request to trim 0 + 1676 = 1676 frames from buffer containing 1152 frames

I am trying to play different sounds at different times. based on a button press or timer timeout etc. Here is the code. To play the sound function: -(void)myPlaySound:(NSString *)mySoundFile ...
1
vote
3answers
297 views

How to utilize hardware decode for audio?

I have a buffer that contain packets read by ffmpeg from a video file encoded using H264/AAC According to Apple document, audio stream encoded in AAC can be decode with hardware support, how to ...
1
vote
0answers
83 views

AudioQueueBuffer data turn to ZERO after a few seconds when I using AudioQueue as input with low latency

I had a serious problem with the AudioQueueInput. I alloc every Audio Queue Buffer with the size of 512 samples (at 44.1kHZ sampling rate). My callback function is written as follow: void ...
0
votes
1answer
165 views

How to play audio buffer which from remote side for iOS?

I was post a question which about fetch AudioBuffer from Recorder, my relate question: Is there any high level Audio Queue Record Service Library for iOS? I can fetch the buffer from recorder ...
1
vote
0answers
61 views

AudioQueue PropertyListener IsRunning only callback once

OSStatus err = AudioQueueNewOutput(&audioDescription, AudioPlayerAQOutputCallback, ( void* )self, nil, nil, 0, &audioQueue); if( err != noErr ) NSLog(@"Couldn't open AudioFile."); ...
0
votes
1answer
113 views

How to play Audio using raw data? - IOS

I have been working on Audio capture and playback, I am trying to play audio using a buffer. I will get buffer as character pointer I have to read from the buffer and play if anything is present in ...
2
votes
0answers
214 views

Recording with AudioQueue and Monotouch static sound

I have written a small program in MonoTouch to record sound from the mic of my iPhone 4s using an InputAudioQueue. I save the recorded data in an array and feed this buffer to the my audio player for ...
0
votes
1answer
176 views

Audio queue cannot record audio after playing a stream

I am using Mat Gallager's Audio Streamer in order to play an audio stream. At another point in the program (a different controller) I am trying to record something from the device's microphone. This ...
0
votes
2answers
426 views

XCode 4.5.1 AudioQueue & linker command failed

I would be so exactly how I can. I would record a sound with my audioqueue. I have a project and added all frameworks, that I needed for my project (so that is not the problem). I have change only 2 ...
1
vote
2answers
460 views

AudioQueueStart fails after a phone call in iphone4

i'm trying to record from an app with AudioQueue in ios6 and iphone4, i've found that when last thing i've done with the phone is a call, then AudioQueueStart fails with (2003329396), and can't start ...
0
votes
0answers
82 views

Why the audiofilestream get all remote song is vbr even the song is cbr

I write a small test to play remote song and I am sure the song which I tested is cbr. I try to judge it by vbr = ((AudioStreamPacketDescription *)inPacketDescriptions != nil); but I always get the ...
1
vote
1answer
527 views

iPhone AudioStreamer AudioQueue Realtime FFT

I'm using Matt Gallagher's AudioStreamer to play a mp3 audio stream. Now I want to do FFT in realtime and visualize the frequencies using OpenGL ES on the iPhone. I'm wondering where to catch the ...
1
vote
1answer
231 views

Audio Queue : AudioQueueStart returns -50

I'm trying to write a microphone power meter module in a GLES app (Unity3d). It works fine in UIKit application. But when I integrate into my unity3d project, the AudioQueue cannot start property.The ...
2
votes
1answer
337 views

What exactly is an audio queue processing tap?

These have been around in OS X for a little while now and just recently became available in ios with ios 6. I am trying to figure what they let you do exactly. So the idea is you can tap into an audio ...
2
votes
1answer
118 views

AudioQueue Buffer is Empty in Callback

I am using AudioQueue to read the AudioBuffer which indirectly read the Audio input from Mic, But it seems, Callback is not hitting, Below is logic in brief 1-- Run a Audio Thread 2 -- Create ...
1
vote
0answers
135 views

kAudioSessionCategory_MediaPlayback

trying to get the setup property kAudioSessionProperty_OverrideCategoryMixWithOthers to work with MediaPlayback category in AudioQueue. Ultimately I need the app to mix with other audio and play in ...
0
votes
0answers
142 views

Scrubbing an audio stream in MonoTouch using an OutputAudioQueue

Using the MonoTouch audio streaming example found here, how do I manipulate the AudioQueue to seek a position in the stream using a UISlider? I've tried using var audioTimeStamp = new AudioTimeStamp ...
1
vote
1answer
186 views

Audio hardware latency on the iPhone

I'm currently developing an app which plays an audio file (mp3, but can change to WAV to reduce decoding time), and records audio at the same time. For synchronization purposes, I want to estimate the ...
15
votes
2answers
832 views

Implementing and Troubleshooting Background Audio in iOS

There are a lot of questions relating to background music playback in iOS on StackOverflow. None fully explore all edge cases, the aim of this question is to be the final word in background audio ...
1
vote
0answers
247 views

iOS AC3 AudioStreamBasicDescription properties aren't filled after calling AudioFileGetProperty method

I am calling the AudioFileGetProperty method in order to set properties of AudioStreamBasicDescription object for .ac3 audio file, but as a result all properties are 0. Here is my code NSString ...
0
votes
0answers
224 views

iPhone Recording external audio from AudioQueue

On the iPhone, when trying to record audio from SPOTIFY, Music app player (iPod), the AudioQueue stops when changing the AudioRoute. This happens switching audio from iPod to Spotify or viceversa. ...
0
votes
0answers
179 views

monotouch get raw data from microphone with InputAudioQueue

i am tying to get some raw data from my iphone with the InputAudioQueue, all i am trying to get is a short array on byte array from the buffer, i did extract the data to short array but it seems to ...
2
votes
0answers
135 views

Record sounds using AudioQueue and AQRecorder from SpeakHere example

I can have 2 AQRecorder running at the same time? I want to hold a recording into two files and I want to run two AudioQueueRef simultaneously, it is possible? Thanks
0
votes
1answer
183 views

AC3 audio FramesPerPacket size

I do create the Audio Queue in following way AudioQueueNewOutput(&audioFormat, audioQueueOutputCallback, (__bridge void*)self, NULL, NULL, 0, &mAudioQueue) Where the format is following ...
0
votes
0answers
73 views

Strange error on AudioQueueEnqueueBufferWithParameters

Guys I'm getting following kAudioQueueErr_QueueInvalidated return value error on AudioQueueEnqueueBufferWithParameters. In corresponding header file kAudioQueueErr_QueueInvalidated stands for - On ...
2
votes
1answer
304 views

Audio mixing on iPhone : Need advice

I'm using AudioQueue Service to play audio in my app. I need to play several audio files together. What I do now I just create as much audio queue as much i need to play files. I.e. I create two audio ...
0
votes
0answers
94 views

Mixing audio with AudioQueue service [closed]

I'm looking for some reference on mixing sounds by means of AudioQueue service. Can anybody provide me with some useful link/reference. Is it possible to do at all ?
1
vote
1answer
454 views

ffmpeg with AudioUnit

What I have My aim is to parse some media file using ffmpeg and provide video and audio playback. Which I do successfully using the OpenGL for video and AudioQueue for audio. What I need to do I ...

1 2 3