Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
5answers
17k views

Best way to learn iphone audio queue services, step by step tutorial

I'm trying to learn how to handle audio at a fairly low level with audio queue services. I have been progrmaing in memory managed languages for quite a while, and have just completed the c programing ...
6
votes
3answers
2k views

Using Audio Queue Services to play PCM data over a socket connection

I'm writing a remote desktop client for the iPhone and I'm trying to implement audio redirection. The client is connected to the server over a socket connection, and the server sends 32K chunks of PCM ...
5
votes
1answer
2k views

Reading audio buffer data with AudioQueue

I am attempting to read audio data via AudioQueue. When I do so, I can verify that the bit depth of the file is 16-bit. But when I get the actual sample data, I'm only seeing values from -128 to 128. ...
4
votes
2answers
1k views

AudioQueueStart fails when iphone app running in background iOS4.0

I'm having difficulties starting the AudioQueue when my app is in the background with iOS4.0 The code works fine when the app is active, but fails with -12985 code when running in the background. ...
3
votes
2answers
239 views

Does an audio queue callback function have to be a C style function? Or can it be an objective C style method?

Does an audio queue callback function have to be a C style function? Or can it be an objective C style method?
3
votes
1answer
411 views

Record and play using Audio Queues in iPhone

Can someone explain how we can use Audio Queue services to record sound from Microphone and play it live? Explain how we can achieve it. If possible give code snippets.
3
votes
2answers
4k views

Example of using Audio Queue Services

I am seeking an example of using Audio Queue Services. I would like to create a sound using a mathematical equation and then hear it. Thanks. Sagiftw
3
votes
3answers
1k views

How to lower sound on the iphone's sdk Audioqueue?

I'm using Aran Mulhollan' RemoteIOPlayer, using audioqueues in the SDK iphone. I can without problems: - adding two signals to mix sounds - increasing sound volume by multiplying the UInt32 I get ...
3
votes
2answers
6k views

How do I get the filesystem path for a resource on iPhone?

On the iPhone I need to get the path for the resource. OK, done that, but when it comes to CFURLCreateFromFileSystemRepresentation thing, I just don't know how to solve this. Why does this error ...
2
votes
1answer
114 views

Audio recorded using Audio Queue Services to data

I want to transmit voice from one iPhone to another. I have established connection between two iPhones using TCP and I have managed to record voice on the iPhone and play it using Audio Queue ...
2
votes
1answer
250 views

Problem On playback MP3 data buffer using AudioQueue Service : Prime failed (-50)

guys: These days I was struggling for finding the way to playback network audio stream (in MP3 packet format) using AudioQueue Service on iPhone. To achieve this target successively, I firstly got ...
2
votes
1answer
126 views

Audio Queues for multi channel real time audio processing on Mac

I have a 4 mic array connected to an iMac via an external audio interface (RME Fireface). I need to record from all 4 simultaneously, get individual signals, perform some operations, and play an ...
2
votes
1answer
208 views

kAudioQueueProperty_CurrentLevelMeter on Mac OS X 10.6.7

I am querying AudioQueueRef for kAudioQueueProperty_CurrentLevelMeter and code that perfectly worked on 10.6.6 now gives me just zeros in level.mAveragePower and level.mPeakPower. Is anybody aware of ...
2
votes
0answers
401 views

Audio Queue Services recording to .mp4 file, that cannot be play. And Magic Cookie issue

I am a newbie Mac programmer just for 3 months. I got a Audio Queue Services problem, hope anyone can help me. I using Audio Queue Services API created a recording program, and output AAC format ...
2
votes
1answer
696 views

Audio Queue Services: changing output device

I've spent the last week on an unplanned excursion into the depths of the Macintosh sound system after NSSound proved to be unequal to the task.. I finally got my file playing with Audio Queue ...
2
votes
1answer
194 views

play iphone audio at constant volume

I am using AudioQueue Services to play audio in my app (AQPlayer borrowed from Speak Here) and I would like to know if it is possible to play the audio at a constant volume regardless of the iphone ...
2
votes
3answers
882 views

How to check current time and duration in AudioQueue

How to get total time duration of music in audioQueue. I am using NSTimeInterval AQPlayer::getCurrentTime() { NSTimeInterval timeInterval = 0.0; AudioQueueTimelineRef timeLine; OSStatus ...
2
votes
1answer
754 views

How to start writing out an existing AudioQueue in response to an event?

I am writing a class that opens an AudioQueue and analyzes its characteristics, and then under certain conditions can begin or end writing out a file from that AudioQueue that is already instantiated. ...
2
votes
1answer
736 views

Manipulating AudioQueueBuffer audio data results in noise

I try to implement an iPhone sound processing app using SpeakHere sample app as a starting point. The app involves manipulating buffered audio samples during playback. When I multiply the samples by a ...
1
vote
2answers
28 views

Can we use the Core Audio SDK for developing sound effect units for iOS?

There's a so called "Core Audio SDK" which Apple says is for "Mac OS X development". Since there are similarities between Core Audio on the Mac and Core Audio on iOS maybe it's possible to use that ...
1
vote
1answer
52 views

Which Audio API to use for creating Audio Effects?

I want to record audio and apply custom-built sound effect filters, then play it back. Are Audio Units and Audio Queue Services the API I'm looking for? Or are there other APIs which fit this purpose ...
1
vote
2answers
120 views

Why might my AudioQueueOutputCallback not be called?

I'm using the Audio Queue Services API to play audio streamed from a server over a TCP socket connection on an iPhone. I can play the buffers that were filled from the socket connection, I just cannot ...
1
vote
2answers
101 views

Simultaneous playback (10+) with AudioQueueServices

Can anyone show me how this is done for for the iPhone? I am trying to make a game to play about 12 sounds at exactly the same time and I can't figure out how to use AudioQueueServices. I understand ...
1
vote
2answers
280 views

Counting audio power peaks iOS

Edited the question due to progressive insights :-) I am creating an app that is listening to the audio input. I want it to count peaks. (peaks will be at a max frequency of about 10 Hz.) After a ...
1
vote
1answer
338 views

Getting accurate time from FFMPeg with Objective C (Audio Queue Services)

My iPhone app plays an audio file using FFMPeg. I'm getting the elapsed time (to show to user) from the playing audio (in minutes and seconds after converting from microseconds, given by FFMPeg) like ...
1
vote
1answer
227 views

AudioQueueFreeBuffer warning

I am getting warning "AudioQueueObject::FreeBuffer: AQBuffer * 0x6273fd0 has enqueue count of 1" for API AudioQueueFreeBuffer... How to avoid this warning? I am getting this warning in ...
1
vote
1answer
535 views

How would I recognize the noise of a clap in an iPhone application?

Within my iPhone application, how would I recognize the noise that a clap makes?
1
vote
1answer
552 views

iOS Background Audio Icon

I've followed the API Docs and WWDC Videos exactly, to play audio in the background via an Audio Session (using the AudioQueue services). It all works just fine, but there is no "Play" indicator ...
1
vote
1answer
339 views

Setting the input volume on an audio queue

So I can't find anything online that says I can't do this, but whenever I try to do it on the iPhone, errors are returned from AudioQueueSetParameter. Specifically, if I try this code: ...
1
vote
1answer
532 views

AudioQueue: Can't read raw data in AudioFileReadPackets

I'm working on a DSP related iOS app. Part of the work is to copy audio data from outBuffer ->mAudioData to an user-specified array for data processing. The read method is like this: OSStatus result ...
1
vote
0answers
137 views

How does one use multiple files with an AudioQueue?

I'm just looking thought the apple iOS example "SpeakHere" ...
1
vote
4answers
1k views

Audio Processing: Playing with volume level

I want to read a sound file from application bundle, copy it, play with its maximum volume level(Gain value or peak power, I'm not sure about the technical name of it), and then write it as another ...
1
vote
0answers
222 views

Problem with AudioQueueStart() on iPad

I am having the following problem with Audio Queue Services, and was hoping it sounded familiar to someone else. First I execute: AudioQueueAddPropertyListener(audioQueue, ...
1
vote
1answer
349 views

Pause recording callback for AudioQueue

I have a basic doubt about AudioQueues, I am using AudioQueue to record and am basically following the SpeakHere app. I found out that whenever I pause recording using the api: AudioQueuePause on ...
1
vote
1answer
478 views

How to slow down or speed up the playback of audio when using Audio Queue Services?

Is that possible? How is this done in theory? Would I simply make a very small buffer packet size and then delay the playback artificially? I assume that's the low-brain way? How could I do it in such ...
1
vote
1answer
994 views

Record/Playback with AudioQueue on iPhone

I am currently using Audio Queues on the iPhone to record and playback audio. What I would like to be able to do is to record some audio, allow the user to pause the record queue, and to seek back ...
1
vote
1answer
124 views

Unexpected behavior with AudioQueueServices callback while recording audio

I'm recording a continuous stream of data using AudioQueueServices. It is my understanding that the callback will only be called when the buffer fills with data. In practice, the first callback has ...
1
vote
1answer
939 views

Recording Audio on iPhone and Sending Over Network with NSOutputStream

I am writing an iPhone application that needs to record audio from the built-in microphone and then send that audio data to a server for processing. The application uses a socket connection to ...
1
vote
1answer
603 views

Audio Queue Services on iPhone only playing the first enqueued buffer?

I've been up all night trying to figure this one out. My code is basically the same as Apple's example here. However, the device plays only the FIRST buffer placed in the queue (I hear the contents ...
1
vote
2answers
718 views

Building better positional audio [AudioQueue manipulation]

I'm building an app that has a requirement for really accurate positional audio, down to the level of modelling inter-aural time difference (ITD), the slight delay difference between stereo channels ...
1
vote
1answer
285 views

AudioQueueOfflineRender returning empty data

I'm having problems using AudioQueueOfflineRender to decode AAC data. When I examine the buffer after the call, it is always filled with empty data. I made sure the input buffer is valid and packet ...
1
vote
1answer
597 views

Missing chunks when creating file with AudioQueue

So a .wav file has a few standard chunks. In most of the files I work with, the "RIFF" chunk is first, then a "fmt " chunk, then the "DATA" chunk. When recording using AVAudioRecorder, those chunks ...
1
vote
5answers
8k views

How to deal with forward declaration / #import in Cocoa Touch (Objective-C cross C++) correctly?

I am trying to write this header file: //@class AQPlayer; //#import "AQPlayer.h" @interface AQ_PWN_iPhoneViewController : UIViewController { AQPlayer* player; } @end AQPlayer is a .mm file ...
0
votes
0answers
25 views

AudioQueue playback skip some audio

I making a VoIP application on iPhone and using AudioQueueServices for playback and record voice. Audio data streaming via UDP. The recording is ok, but playback plays only several buffers and after ...
0
votes
1answer
52 views

iPhone 4s mic is worse than iPhone 4 mic

I'm using Audio Queue Framework with sample rate 44100 Hz to record data from the microphone on iPhone. Then I test frequency response for iPhone 4 and iPhone 4s. iPhone 4s mic is blind on ...
0
votes
2answers
29 views

Do I need to deal with Audio Units when I need custom audio effects or can I rely on Audio Queue Services?

From my understanding Audio Queue Services are a higher level API than Audio Units, which use Audio Units. OpenAL also uses Audio Units. So Audio Units is the lowest level audio API in iOS. I need to ...
0
votes
1answer
16 views

Audio output queue on iOS 5

Has anyone ever experienced that an audio output queue in iOS 5 is silent even though the queue is running and no errors are returned? Downloaded a sample code that had the same issue.
0
votes
0answers
17 views

how to play silence using AudioQueueEnqueueBuffer… with kAudioFormatMPEG4AAC_HE(VBR)

I am working with a network application, so someting i will lose packet or where i have start play , there is no data for playing. this is my source code: struct AQPlayerState *pAqData = (struct ...
0
votes
0answers
64 views

AudioFileStreamParseBytes returns “pty?” on streamed, recorded data

I am working on an app that involves recording audio on one device and playing it back on another device connected with a socket connection. I am using Audioqueues to record data on one peer device, ...
0
votes
1answer
47 views

Audio Queue Services callback: AudioStreamPacketDescription cannot be copied?

I am creating a simple iOS app that records audio with a circular buffer. This means that it continually records audio, but only keeps the last 15 buffers in memory. I do this by copying all the data ...

1 2