Please I know how to play a sound in AVAudioPlayer but I would like to know how to give it a list of on-disk files to play one after the other ... |
is there a best practice for getting an event on every second of playback of an AVAudioPlayer instance? I need to change a view automatically depending on the current playback time.
Thank ... |
Im doing an application that needs to play alot of short sounds (mp3-files). Im using AvAudioPlayer and the sounds are playing just fine, BUT the leaks are building up until my ... |
I'm using an AVAudioPlayer to manage some sounds but the isPlaying method seems to be crashing.
done when I initiate the page:
self.soundClass = [AVAudioPlayer alloc];
how I play the sound:
-(void)playSound:(NSString *)fileName:(NSString *)fileExt {
...
|
I am using MPMusicPlayerController and AVAudioPlayer simultaneously.
For audio balancing, I have two volume sliders for MPMusicPlayerController and AVAudioPlayer each.
If I mute the MPMusicPlayer volume and increases AVAudioPlayer volume, the overall device ... |
Greetings,
I have an app were the sounds play find on iPhone but on iPad..no sound at all.
Here's a code snippet:
self.player = [[AVAudioPlayer alloc] initWithContentsOfURL: [NSURL fileURLWithPath:filePath] error:nil];
[self.player play];
Any hints as to ... |
I am writing an iPad app that uses the "Flite" text-to-speech engine to announce specific events. The Flite engine uses an AVAudioPlayer instance to play the speech audio once it ... |
|
I have implemented two AVAudioPlayer in my iPad project.
I am playing sound with one player object
and also simultaneously recording with the other player.
First Scenario
1.Player1 is recording the words I am speaking.
2.Simultaneously ... |
I am developing a ebook reader. There are some audio files which needs to be played upon clicking on a icon. The audio just plays fine for the first time. But ... |
I have the audios to be played in .m4a format. But using AVAudioPlayer the file is not playing. So how can i play .m4a audio.
|
This is the code for recording and it does work fine with iPad but not being played in iPhone.so what could be wrong?
It shows below error
Error '!obj' trying to ...
|
Am developed a universal application which reads a audio file from local and will play using AvAudioPlayer. Here i using PlayAtTime property of AvAudioPlayer to forward and backward the audio.
Here ... |
I'm receiving songs url from xml and saving them in sqlite as binary data.
Now i want to play those songs in AVAudioPlayer.
How would i achieve this?
Is this method is right ... |
I have been working with AVAudioPlayer on the iPad (original version) running IOS 4.3.3
The documentation for the volume property states:
"The playback gain for the audio player, ranging from 0.0 through 1.0."
Curiously ... |
I have problem when trying to play some mp3 files on iOS app.
First, I noticed that these files was also not working on Safari for iOS, but now I am ... |
The audio player code that is working finely in the IOS 4.3 is not working in IOS 5.
Works fine in the simulator, but no sound from the device. Sometimes sound ... |
I was successfully using the AVAudioPlayer class, but after upgrading to iOS 5.0 my iPad app crashes when trying to listen to what I've previously recorded. Under iOS 4.3 all is ... |