Tagged Questions
6
votes
3answers
621 views
iPod Volume Level Affects App Volume Level
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 renders. For fun, I ...
5
votes
2answers
1k views
Background Audio and Remote Control Support using MPMusicPlayerController on iOS 4. Is this even possible?
I've spent two days on this and have gotten nowhere. I'm trying to use [MPMusicPlayerController applicationMusicPlayer] to play audio chosen from the user's iPod library and have it run in the ...
4
votes
3answers
3k views
How to enable iPod controls in the background to control non-iPod music in iOS 4?
A good example of what I'm trying to accomplish is implemented in the latest version of the Spotify iPhone application for (Pandora seems to have the same feature) .
When Spotify is in the ...
3
votes
1answer
537 views
Can I get an audio session / apply audio units to playback from MPMusicPlayerController?
I'd like to take control of the audio coming from MPMusicPlayerController (i.e., playing from the iPod library). For example, I'd like to apply EQ to it or do DSP, reverb, that kind of thing.
Is this ...
1
vote
1answer
428 views
Stop iPod music by NSTimer on background mode
I'm planning to create an application that plays the ipod Music Library, then the app sets a NSTimer that will stop the ipod Music player on a certain time. My question does my timer will still run ...
0
votes
0answers
9 views
applicationMusicPlayer playbackState is NULL?
In my Cocos2D app I have a pause view where I load a specific button based upon the playbackState of the applicationMusicPlayer. There is an issue though, the applicationMusicPlayer is always NULL. So ...
0
votes
0answers
23 views
Can I use a themes plist to control the MPMusicPlayerController?
I have recently downloaded a theme for the dreamboard cydia app. This theme makes my iPhone look like it is an iPod classic. One issue I am having is that this theme does not allow for the lock screen ...
0
votes
0answers
46 views
iPodMusicPlayer playbackState inaccurate after odd conditions
I have a simple music player app that runs into a really weird problem. First of all, while playing music and in the locked state, I allow the user to double click the Home button and use the locked ...
0
votes
1answer
60 views
How To Switch music from my app to the ipod
i am using MusicPlayerController object in my app to play music.
i know that its possible to keep playing my app music when it's terminate on the iphone ipod app.
how can i do it?
0
votes
1answer
110 views
Can I use MPMediaQuery to get the year of a song?
I've been reading the iOS iPod library documentation, trying to figure out if there is a way to fecth or filter song and/or albums by the year of publication.
The MPMediaItem Class reference states ...
0
votes
1answer
238 views
Programmatically creating an ios genius playlist
I'm looking for a way to create programmatically a genius playlist based on a random song.
Something like:
1.- pick a random song from ipod library
2.- query genius for 25 songs related to the random ...
0
votes
0answers
69 views
iPod Volume Graphic
I've written an iPhone app which is compatible with the 1st generation iPod touch. One feature I've made available to this version of iPod touch is the ability to control the volume. I've used the ...
0
votes
1answer
223 views
Using iPodMusicPlayer without giving control to iPod in background
I'm developing an app with a very specific focus on shuffling songs within a selected playlist. When the app launches, it lists all the user's playlists, and then when one is selected it loads it into ...
0
votes
2answers
388 views
What is the state of MPMusicPlayerController when the now playing item is skipping to outside the current playlist?
I'm using MPMusicPlayerController and I have implemented skip track and previous track controls to control the music playback. When I reach the end of an album/playlist that is in the now playing ...
0
votes
2answers
732 views
iPhone SDK - check iPod playlist to see whether there is a next track to skip to
Is there a way to inspect the current playlist from MPMusicPlayerController to see whether there is another track to play in the queue?
It's possible to detect this after as skipToNextItem will stop ...