The audioqueueservices tag has no wiki summary.
0
votes
0answers
52 views
audioqueueservices or audiotoolbox framework to play audio with synchronization capabilities access packets of incoming audio
Is there any good example or tutorial for synchronizing mp3 file with its visuals using audioqueueservices or audiotoolbox framework.
As audioqueueservices and audiotoolbox framework can be used to ...
0
votes
0answers
41 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
145 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 ...
0
votes
1answer
272 views
ios audio queue - how to meter audio level in buffer?
I'm working on an app that should do some audio signal processing. I need to measure the audio level in each one of the buffers I get (through the Callback function). I've been searching the web for ...
1
vote
0answers
241 views
Why call to CFRunLoopRunInMode() in Audio Queue Playback code?
I'm following the iOS "Audio Queue Programming Guide - Playing Audio". Near the end of the guide, there are calls to CFRunLoopRunInMode() in the step Start and Run an Audio Queue:
do { ...
2
votes
1answer
151 views
VoIP functionality using Audio Queue or Audio Unit
Can u please tell me how this can be done ? recording the audio on one device & playing on other (VoIP) ?
I m stuck here: I m getting the input voice data on one device in this function
void ...
0
votes
1answer
156 views
when in audio callback function, how to update the UI/call the view controller?
I am currently learning to use Audio Queue Services in iOS. For this, I followed Audio Queue Services Programming Guide - Recording Audio. This works.
Now I would like to update a UI element (a power ...
1
vote
1answer
182 views
Is mBytesPerFrame needed in AudioStreamBasicDescription?
In AudioStreamBasicDescription struct:
struct AudioStreamBasicDescription {
Float64 mSampleRate;
UInt32 mFormatID;
UInt32 mFormatFlags;
UInt32 mBytesPerPacket;
UInt32 ...
0
votes
1answer
160 views
AudioQueueOutputCallback not called at first
My question may be similar to this: Why might my AudioQueueOutputCallback not be called?
It seems that person was able to fix by running audio stuff on main thread. I cannot do that.
I enqueue ...
6
votes
1answer
1k views
Playback and Recording simultaneously using Core Audio in iOS
I need to play and record simultaneously using Core Audio. I really do not want to use AVFoundation API (AVAudioPlayer + AVAudioRecorder) to do this as I am making a music app and cannot have any ...
0
votes
2answers
152 views
Removing Silence from Audio Queue session recorded audio in ios
I'm using Audio Queue to record audio from the iphone's mic and stop recording when silence detected (no audio input for 10seconds) but I want to discard the silence from audio file.
In ...
0
votes
1answer
322 views
when audioqueue play lpcm decoded from ffmpeg, the elapsed time of audio queue exceeds the duraion of the media
When play the lpcm data decoded from ffmpeg with audioqueue, the elapsed time got by AudioQueueGetCurrentTime exceeds the duration of media. But when decode the same media with AVFoundation framework, ...
0
votes
1answer
118 views
EXC_BAD_ACCESS with AudioFileReadPackets
I've been trying to serialize a local audio file following the instructions here, only instead of feeding the packets directly to the AudioQueBuffer, I would like send it over bluetooth/wifi using ...
1
vote
0answers
161 views
How to read Audio queue service bufer by byte?
I am recording sound from mic input using Audio queue service.
-(void)startRecording{
[self setupAudioFormat:&recordState.dataFormat];
recordState.currentPacket = 0;
OSStatus ...
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
310 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
95 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 ?
0
votes
1answer
285 views
Recording audio output only from speaker of iphone excluding microphone
I am trying to record the sound from iPhone speaker. I am able to do that, but I am unable to avoid mic input in the recorded output. Tried with sample code available in different websites with no ...
0
votes
1answer
412 views
Audio Recording on iOS
I've just started working on a project that requires me to do lots of audio related stuff on iOS.
This is the first time I'm working in the realm of audio, and have absolutely no idea how to go about ...
0
votes
0answers
74 views
AudioQueueFlush - what is it good for?
Could some kind soul explain whether AudioQueueFlush is actually necessary? Recording audio I was losing the contents of the last buffers when stopping, but AudioQueueStop(recordState.queue, YES) ...
0
votes
0answers
135 views
Output Left/Right channels with Audio Queue
Trying to output funciton generated sine waves to left/right outputs in iOS app using AudioQueueBufferRef. I was able to accomplish L/R split successfully with an AudioUnit using AudioBufferList, but ...
2
votes
2answers
1k views
AVAssetReader to AudioQueueBuffer
Currently, I'm doing a little test project to see if I can get samples from an AVAssetReader to play back using an AudioQueue on iOS.
I've read this:
( Play raw uncompressed sound with AudioQueue, no ...
2
votes
0answers
374 views
Save to buffer instead of file when recording aac with Audio Queue Services
My goal is to record audio in AAC format and send it over a network connection as a stream.
I'm using Audio Queue Services and have based my code on the SpeakHere example. I know that for writing to a ...
0
votes
1answer
320 views
Accessing raw audio data with Audio Queue using AudioFileReadPackets
I'm attempting to access the raw audio data sent to the Audio Queue callback, but I after calling AudioFileReadPackets, the number of bytes (numBytes) is 0.
void ...
0
votes
0answers
72 views
Change SampleRate of AudioQueueService runtime
I have a playlist, which has songs with different sample rate's eg. 44100hz, 48000hz. Can you tell me how do I change the sample rate runtime. I have one more condition, the songs are playing back to ...
0
votes
1answer
168 views
Right choice to play audio and video content
What I'm doing :
I need to play audio and video files that are not supported by Apple on iPhone/iPad for example mkv/mka files which my contain several audio channels.
I'm using libffmpeg to find ...
0
votes
0answers
79 views
Is it okay to have a single large buffer when using Apple Audio Queue?
I am trying to load an audio file entirely into memory, for playback some time later in my program. My program should never have to access the hard drive after initialization has completed.
I am ...
0
votes
0answers
285 views
Handling interruptions AVAudioSessionDelegate | endInterruptionWithFlags is not called
I am working on a music player app. To handle interruptions am using AVAudioSessionDelegate methods beginInterruption and endInterruptionWithFlags. Whenever there is an audio interruption, ...
0
votes
1answer
184 views
Playing Audiobooks (m4b media format) using AudioQueue services | iPhone
I am working on developing an iPhone app to play music. Am using AudioQueue services to play the audio files. App plays all media files correctly, but the app fails to play audiobooks, which I think ...
1
vote
1answer
1k views
Objective-C - Passing Streamed Data to Audio Queue
I am currently developing an app on iOS that reads IMA-ADPCM audio data in over through a TCP socket and converts it to PCM and then plays the stream. At this stage, I have completed the class that ...
0
votes
2answers
146 views
How to analyze the audio file recorded in audio queue sevices in iOS?
I know the file path. How am I going to open it? I want the LPCM format like the one in the buffer when recording the audio.
1
vote
2answers
229 views
How to send a message to self in a C function in obj-C?
I have a C function(a callback function in Audio Queue Services) and I want to send message to self. How to do that?
If I type in [self message], there is an error:
Use of undeclared identifier ...
1
vote
0answers
93 views
How i can work with AvCaptureSession and OpenAL or an other service to play the sound
I like to implement a voice chat, i have first capture audio with CaptureSession and when i try to play the audio, i have some problems.
With OpenAL, i can't have the sound, data have been append in ...
0
votes
2answers
622 views
How to get the linear PCM from a recording on iPhone?
I want to do something like speaker verification on iPhone (as a course project). And I'm wondering how to get linear PCM from the speaker. I read about the documentation about queue services, and it ...
1
vote
2answers
184 views
Skip between multiple files while playing audio in iPhone iOS
For a project I need to handle audio in an iPhone app quite special and hope somebody may point me in the right direction.
Lets say you have a fixed set of up to thirty audio files of the same ...
4
votes
0answers
271 views
Timing of Audio Queue Services and iPhone System Sounds
I am analyzing incoming audio on an iPhone/iPod Touch using the Audio Queue Services. The desired behavior of the analyzer boils down to this: when the App becomes active, start analyzing; when the ...
4
votes
3answers
1k views
Can not restart an interrupted audio input queue in background mode on iOS
I'm writing an iOS App using an AudioQueue for recording. I create an input queue configured to get linear PCM, stated this queue and everything works as expected.
To manage interruptions, I ...
0
votes
1answer
652 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 ...
1
vote
2answers
604 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 ...
1
vote
2answers
301 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
457 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 ...
0
votes
1answer
142 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.
1
vote
0answers
265 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
1answer
244 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, ...
1
vote
1answer
755 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 ...
0
votes
1answer
151 views
what is a reasonable set of values for a core audio AudioStreamBasicDescription for an mp3?
I'm try to record some audio to mp3 based on Apple's AudioQueueTool example program; however, when I attempt to create Audio Queue using AudioQueueNewInput I get back the error 1718449215 which ...
4
votes
1answer
1k 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 ...
0
votes
1answer
1k views
How to play NSData(bytes) with Audio Queue's?
how to play [NSData bytes] with Audio Queue Services, from speakHere example the bytes are token from the AudioFile, but i'm having sound downloaded from internet i need to play it with Queue ...

