Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3788366
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T11:59:15+00:00 2026-05-19T11:59:15+00:00

guys :) Can you please share some ideas how to get one or more

  • 0

guys 🙂 Can you please share some ideas how to get one or more random MPMediaItems from user’s iPod Library. Any call to [MPMediaQuery songsQuery].items is waaaaay too slow – for a library of just 800 songs it takes about 19 seconds on my iPod Touch 2G to execute the query. I don’t want to cache the entire iPod library, because I don’t think it’s worth the effort. Any thoughts will be greatly appreciated. Thank you 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T11:59:15+00:00Added an answer on May 19, 2026 at 11:59 am

    I wrote this method to retrieve a random track from the music collection for my iPad Jukebox application called My Jukebox, hopefully you can use it too. Its fast, even on big music collections and if you retain the MediaQuery object (store it as a property of the class) then the second call is almost instant. I hope it helps.

    -(MPMediaItem*) getRandomTrack
    {
        // Check if we can re-use an MPMediaQuery
        if (self.mediaQuery == nil)
        {
            MPMediaQuery *everything = [[MPMediaQuery alloc] init];
            [self setMediaQuery:everything];
            [everything release];
        }
        // Get all Media Items into an Array (Fast)
        NSArray *allTracks = [mediaQuery items];
        // Check we have enough Tracks for a Random Choice
        if ([allTracks count] < 20)
        {
            return nil;
        }
        // Pick Random Track
        int trackNumber = arc4random() % [allTracks count];
        MPMediaItem *item = [allTracks objectAtIndex:trackNumber];
        // Display and Return
        return item;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi Guys can you please help me with this error? What is it? Server
Are there any popular Mysql rss feeds you guys can recommend? IBM has random
I keep on hearing about concurrent programing every where. Can you guys throw some
Can you guys tell me the difference between them? By the way, is there
Guys, can someone give me a brief run through of how to change the
Do you guys know how I can use the Curl command line to POST
Ok guys just a small game: I have some specifications for a project. At
Hi Guys could you please help me refactor this so that it is sensibly
Hey guys, I need to make a list of some functions that are listed
How can I extract information from a binary file that I don't have the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.