audioqueueservices « audio « iPhone iPad Media Q&A

Home
iPhone iPad Media Q&A
1.animation
2.audio
3.AVAudioPlayer
4.box2d
5.cocos2d
6.CoreGraphics
7.CorePlot
8.Flash
9.graphics
10.icon
11.image
12.photo
13.plot
14.sound
15.video
iPhone iPad Media Q&A » audio » audioqueueservices 

1. extracting mp3 file duration using AudioQueueServices    stackoverflow.com

I have implemented a streaming mp3 player using AudioQueueServices, that downloads mp3s over an NSURLConnection. Playback, pausing, and seeking work great, however I can't figure out how to extract ...

2. Best way to learn iphone audio queue services, step by step tutorial    stackoverflow.com

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

3. How do I get the filesystem path for a resource on iPhone?    stackoverflow.com

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

4. Reading audio buffer data with AudioQueue    stackoverflow.com

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

5. Using audioqueue to stream audio. How to get the length of the audio file before playback ends?    stackoverflow.com

Already finished implementing the player. I want to implement the progress bar. But I wonder if that's possible to do since we are streaming the music. Unless we are provided the ...

6. AudioQueueOfflineRender returning empty data    stackoverflow.com

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

7. How to play next file using Audio Queue Services    stackoverflow.com

What is the right way to play next file using Audio Queue Services? When "play next" button is pressed should I first call AudioQueueStop and then AudioQueuePrime/AudioQueueStart or it is enough ...

8. Audio Queue Services on iPhone only playing the first enqueued buffer?    stackoverflow.com

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

9. Audio Queue: Timestamps for recorded buffers    stackoverflow.com

I am trying to grab times out of recorded buffers in my AudioInputCallback function for a recording queue. Unfortunately the timestamps I'm seeing aren't as expected. Here's an example (using AudioTimeStamp.mHostTime):

2010-01-21 ...

10. Recording Audio on iPhone and Sending Over Network with NSOutputStream    stackoverflow.com

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

11. How to start writing out an existing AudioQueue in response to an event?    stackoverflow.com

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

12. AudioFileReadPackets to an array?    stackoverflow.com

I'd like to read packets from an audio file, but I don't want to send them to a playback buffer. I just want to get an array of the packets, ideally ...

13. Using Audio Queue Services to play PCM data over a socket connection    stackoverflow.com

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

14. Record/Playback with AudioQueue on iPhone    stackoverflow.com

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

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

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

16. How to check whether a music is playing or paused in AudioQueue    stackoverflow.com

I am using AudioQueueStart for playing music and AudioQueuePause for pausing. Is there any way in AudioQueues to check whether the music is playing or not, I want to Pause music ...

17. play iphone audio at constant volume    stackoverflow.com

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

18. Audio Queue Services: changing output device    stackoverflow.com

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

19. Audio Queue Services - recording    stackoverflow.com

I'm trying to record an audio stream which is streamed using matt gallagher's audio classes. So far, I've searched the web as I do not really understand the audio queue services. I'm ...

20. Record and play using Audio Queues in iPhone    stackoverflow.com

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

21. Setting the input volume on an audio queue    stackoverflow.com

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

22. AudioQueueFreeBuffer warning    stackoverflow.com

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 AudioQueueFreeBuffer API

    ...

23. iPhone dev - AudioQueue Services recording on background    stackoverflow.com

I've built an audio recording app (like 'SpeakHere' demo from apple), and I was wondering how can I modify it to work on BACKGROUND. Every time I enter background, the AudioQueue callback ...

24. Prealoading/decoding lossy audio and play using AudioQueue    stackoverflow.com

I'm about to port an audio engine from Flash/AS3 to iOS, and been playing around with OpenAL for some time. Due to timing problems I recently began to investigate Audio Queue ...

25. Play and render stream using audio queues    stackoverflow.com

I'm currently playing a stream on my iOS App but one feature we'd like to add is the visualization of the output wave. I use an output audio queue in order ...

26. Counting audio power peaks iOS    stackoverflow.com

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

27. iOS, Audio Queue: Buffer size is not contant    stackoverflow.com

I use Audio Queue Services in my application. When allocating the buffer, I set the buffer size to 30000 samples:

AudioQueueAllocateBuffer(mQueue, 30000, &mBuffers[i]);
But the subsequent calls of the callback are made with ...

28. Is it possible to access decoded audio data from Audio Queue Services?    stackoverflow.com

I have an app in the App Store for streaming compressed music files over the network. I'm using Audio Queue Services to handle the playback of the files. I would like to ...

29. Why might my AudioQueueOutputCallback not be called?    stackoverflow.com

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

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.