Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a songs list in document directory.. Here is a code for fetching those songs...

NSArray *pathSong = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 
NSString *documentsDirectorySong = [pathSong objectAtIndex:0];
NSFileManager *managerSong = [NSFileManager defaultManager];
NSString *dataPath = [documentsDirectorySong stringByAppendingPathComponent:@"/Downloads"];
NSString *folPath = [dataPath stringByAppendingPathComponent:@"/Folder"];
NSArray *fileListSong = [managerSong contentsOfDirectoryAtPath:[dataPath stringByAppendingPathComponent:@"/Folder"]error:nil];

After that these songs play in player like iPod music library..

I have try with MPMusicPlayController but its only for picking songs from music library not from document directory of the app..

Also try with AVAudioPlayer but cant get Artist, AlbumName, Title , ArtImage property of current playing song..

here is a also code of AVPlayer

But its fetch data from library, And I want only from document directory..

MPMediaQuery *query = [MPMediaQuery songsQuery];
    NSArray *songs = query.items;

NSURL *itemURL = [currentItem valueForProperty:MPMediaItemPropertyAssetURL];

        if (!avPlayer) {
            avPlayer = [[AVPlayer alloc] initWithURL:itemURL];
        } else {
            [avPlayer replaceCurrentItemWithPlayerItem:[AVPlayerItem playerItemWithURL:itemURL]];
            avPlayer.rate = 0.0f;
        }

But not get songs from Document Directory,

Can any one explain me which player better to use ?

i am making music player as like iPod Music app..

share|improve this question
If you want to program a music player 'like the iPod Music app' then you use MPMusicPlayerController which accesses the user's iPod library. – amergin Nov 8 '11 at 15:04
Dear, I already write that, I dont need to use iPod library, only songs play from document directory of the app... – Jagdish Nov 9 '11 at 3:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.