Can someone help me use the AudioQueue services on the iPhone to play a certain frequency (say, 440 Hz)? I've looked at the documentation, but I can't seem to figure out quite ... |
I am trying to develop a simple iPhone app. I need to play sound within a loop.
How can Play Audio file in loop without any interruption ?
|
I noticed that some apps programmatically mute itunes (if its running) at launching. How is this achieved? I have a game with background music and would like to either stop itunes ... |
Is it possible to easily play a tone, or series of tones on the iPhone (like morse code, beep beeeeeep beep)?
Is there any sample code out there that would point ... |
I would like to know one thing. I hope you people can guide me well.
I am creating an application which needs some audio alerts. I am using AVAudioPlayer for this purpose.
I ... |
In my app I want the user to choose (picker) what sound to play from the default audio files that come standard with the iPhone (Marimba, Alarm, etc...). And then play ... |
I need something that is capable of:
- playing audio files (whatever preferred format, I'm flexible)
- play more than one at once (=mixing it automatically to the headphones/speaker)
and if possible:
- play from a particular ... |
|
As a throwaway project for the iPhone to get me up to speed with Objective C and the iPhone libraries, I've been trying to create an app that will play different ... |
I want to play an audio file which is posted on a website. I'm trying to use AVAudioPlayer and set the url to its website link. But the bgPlayer turns out ... |
i want to play the audio file after the given period of time set by user.
|
How can we play audio using the ear speaker from an application.
The audio plays like some one is talking at the other end of the phone.
Thanks
|
I am creating an iphone application and would like to download an audio file from the web (which I should be able to do without any assistance) but I am not ... |
The third-party library generates sequential buffers of 16-bit signed stereo samples of any desired size. I can't figure out which framework/functions to use to play from these buffers. I've been working ... |
Does anyone knows how to play a portion of a sound file on the iPhone?
Using the SDK, or any other library (Cocos Desnhion...).
I know how to play an entire sound, but ... |
I've read a number of posts regarding how to detect shakes but I'm not sure:
- What is currently the best way to detect shakes?
- How to play an audio file ONLY while ...
|
I have an iPhone app that downloads multiple WAV files from the web, storing the resultant sound data on the phone for playback in the app. Sometimes this works fine, ... |
Is there anyway to store audio on an iphone app and then grab that audio file and play it through code. Does anyone have a tutorial to point me to do ... |
I am getting a list of songs and its corresponding images from a url.The url is a json url. When i click the list a corresponding song is played. I have ... |
I have an audio file that I want to begin playing at a 20 second delay, after the user has seen some animations play etc...
does anyone know how I might go ... |
I'm playing an audio clip using a UIButton that calls a method (see code below). I'm trying to figure out how to write a statement to detect if the audio is ... |
I need to play an RTSP audio stream in an iPhone app, so I've been trying to run the the Wunderradio code (http://wunderradio.com/code.html) but I get some errors (copied below)..
Usually errors ... |
how to play the audio for a given string. If I enter a text and press play button to express the audio of given string. Is there any solution. Please suggest ... |
how can set BPM(bits per minute ) in iphone to play audio?
|
I've few audio files in mp3 format.
One audio file plays "Hi", and another audio file plays "How are you". Similarly many other audio files.
I want to play two audio files one ... |
I'm trying to find some way to play tones in iOS that are created dynamically. Being able to play an audio file isn't going to cut it for me. ... |
I have developed an application which will play audio when call is on. And the person on opposite side can hear it.
It works fine with pre iphone4. But its not working ... |
I have an iphone design question regarding downloading and playing an audio file. Thanks to Matt Gallagher's AudioStreamer sample I can stream audio and play it back, bu that does ... |
I am developing an iPhone app in which I need to provide the facility to the user where he/she will be able to select audio files saved on the device and ... |
Hi there I'm trying to play a page turn sound when I click on the "next" button to take me to the next page, but the sound does not come, while ... |
I do not want any code but want to get reference that how can we play audio in background in multitasking devices when application is running in background not in foreground...
Please ... |
I've been struggling with this one for quite a while now, and there are no code examples of it being done on the net. Can anyone help me?
My app uses ... |
I encountered problem with playing audio comments, that were created in Acrobat Reader.
I use Quartz framework to parse pdf file and obtain annotations.
Annotation options are:
<</Filter/FlateDecode/Length 11342/R 11025/Type/Sound>>
. And i ... |
My application plays audio using AudioQueue and AudioSession. I can't stop playing according to application workflow. Currently, my customer ask me to perform iPhone vibration according to some conditions. I've tried ... |
Heres what I have:
-(void)awakeFromNib {
NSString *path = [[NSBundle mainBundle] pathForResource:***AUDIOFILE*** ofType:@"mp3"];
AVAudioPlayer* theAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path]
...
|