Automatic Playlist Creator

I currently am running itunes on an imac and have about 22,000 songs in which I have collected over the years around 200GB of stuff.
I used to have them on my old macbook pro which is not doing too well and have decided to transfer them over. Upon doing so following the itunes transfer library instructions lost all the playlists I had created over the years.
What I am after is some sort of automatic playlist creator which will go and create the playlist based on the album name and songlist. It would be straight forward.
I do not mind paying for it. But need something to do it automatically.
Thanks again

You don't need Album, Artist, or Genre playlists. Use the Songs or List views and enable the column browser. You can use smart playlists for anything else that can use a rule based selection method.
tt2

Similar Messages

  • Playlist creator for mp3s and wma's

    I wrote the following pretty quickly this morning to traverse a directory and it's child directories to look for any mp3/wma files in that directory and make a windows media m3u playlist (basically, the file names separated by newlines).
    I thought I'd post it if anyone needs it or if anyone can find something I'm overlooking. It seems to work correctly, but it's hardly tested well.
    -Chuck
    // PlaylistCreator.java source file
    // By Chuck Reed
    // Usage: Creates a folder playlist for any folder or subfolder containing mp3 files
    // This program will need the java file IO utilities
    import java.io.*;
    // The main class for the playlist creator
    public class PlaylistCreator
      private static String CurrentDirectory;          // A member to keep track of the current directory
      private static File WorkingFilePointer;          // The location of the working file's pointer
      private static String[] FileNames;               // Array of file names read in from directory
      // The main class to drive the playlist creator
      public static void main(String args[])
        try
           // Find our directory name and pointers, then run the recursive directory processor
               WorkingFilePointer = new File(System.getProperty("user.dir"));
               ProcessAllDirs(WorkingFilePointer);
          } catch (Exception e)
          // If something fails, catch the exception
            System.err.println(e);
      // This is the method that actually creates a playlist file in the current directory
      private static void CreatePlaylist(File CurFilePointer)
        try
          // Store the file names and initialize the mp3 counter
            int Mp3Count = 0;
          FileNames = CurFilePointer.list();
          // If we don't have anything in the folder, return doing nothing
          if (FileNames == null)
            return;
          // Loop through all of the files returned in this directory
            for (int i = 0; i < FileNames.length; i++)
                if ( IsMp3File(FileNames) )
    Mp3Count++;
    // If we don't have any mp3s to make a list of, bail
    if (Mp3Count < 1)
              return;
    // Create the output stream and format it properly
              PrintStream OutputStream = new PrintStream(
              new BufferedOutputStream(
                                                                new FileOutputStream(CurFilePointer.getAbsolutePath() + "\\00 - FolderPlaylist.m3u")));
    // Loop through all of the files we have in the directory
    for (int i = 0; i < FileNames.length; i++)
         // See if mp3 is at the index of length - 4
              if ( IsMp3File(FileNames[i]) )
    // Print out the mp3 file name to the next line of the playlist
              OutputStream.println(FileNames[i]);
    // Close the playlist file
    OutputStream.close();
    } catch (Exception e)
    // Catch and report any exceptions we get
         System.err.println(e);
    // Recursive function to visit each subdirectory in the directory structure and create playlists
    private static void ProcessAllDirs(File dir)
    // If our current location is a directory, lets check it for subdirectories or mp3s
    if (dir.isDirectory())
    // Call create playlist on our current directory in case we have mp3 files here
    CreatePlaylist(dir);
    // Get a list of all subdirectories
    String[] children = dir.list();
    // Loop through the child directories
    for (int i=0; i < children.length; i++)
    // Call this function recursively on the child directory
    ProcessAllDirs(new File(dir, children[i]));
    // A method to determine if a file ends in .mp3 or .MP3 or .WMA or .wma
    private static boolean IsMp3File(String name)
    // We can't have anything valid with a length of under 4
    if (name.length() < 4)
         return false;
    // If we have the correct file suffix
    if ( (name.indexOf(".mp3") == (name.length() - 4)) || (name.indexOf(".MP3") == (name.length() - 4)) ||
         (name.indexOf(".wma") == (name.length() - 4)) || (name.indexOf(".WMA") == (name.length() - 4)))
    // We return true
         return true;
    // Otherwise, this isn't a valid mp3 file
         return false;

    I have also Paid this morning, approximately 3-4 hours ago, and cannot play from my phone, or play ad free on my mac.
    This quite frankly pisses me off and this is unacceptable. I paid money for your service which doesn't even work. Sooo give me a free month or fix your problems. I don't pay your company money for **bleep** that doesnt work.
    I've recevied my Receipt of payment already, and it's processed through my bank account. This does not make me very happy at all. 

  • Syncing problems after iTunes created automatic playlist

    Because I have more music in my library than can fit on my iPod Touch, iTunes created an automatic playlist that would serve as the folder for what would go on my iPod.
    When this happened, only that playlist would sync with the iPod, so the applications I downloaded on my computer did not get synced onto the iPod, so I deleted the playlist.
    Now, when I sync, nothing gets transferred onto the iPod.
    How do I fix this problem? Also, how do I tell iTunes what particular songs I want on the iPod?

    Click here and follow the instructions.
    (38317)

  • Automatic playlist generation error

    I have the 8320 curve.
    My problem is with "Automatic Playlist" generation.
    When creating an auto playlist I get the error message:
    "Your automatic playlist criteria generated no songs to play"
    I go to music > playlists > new playlist > Automatic Playlist
    Then click the plus sign on the right side of select artist.
    Then next to FIND: I enter my selection criteria.
    Let's say U2 for example.
    A list comes up wih U2, UB40,...  and I select U2
    This enters U2 as the criteria under "Songs by these artist"
    I then name the playlist on that same screen and press the ball to start the selection process.
    That is when the error messages comes up:
    "Your automatic playlist criteria generated no songs to play"
    I did notice I'm not the only goober with this problem:
    http://forums.crackberry.com/f2/auto-playlist-generation-145014/
    Any advice would be greatly appreciated.
    SDinSD

    Any ideas? I'm convinced there must a script that can do this somewhere...

  • Random Playlist Creator

    Until I installed OSX 10.9 I'd used the program (noted above) for getting playlists created as easily as possible. Now I keep getting a note that says:
      "You can't open the application "Random Playlist Creator.app" because PowerPC applications are no longer supported."
    Is there any way to correct this problem?
    Thanks.

    Not unless the developer has updated the program  or you want to run Snow Leopard Server in a virtual machine.  Apple stopped supporting PowerPC applications in 10.7.

  • Playlist creator

    I'm using iTunes 7 on Windows XP. Does anyone know of a way to tell iTunes HOW to pick the songs and in what order you want them to play in the party shuffle? Basically, here's what I want it to do. I have my songs rated 1 to 5 stars, and I want the party shuffle to randomly pick different rated songs in an exact order...such as a 5 star first, followed by 3, then a 4. I want to set it up so that the songs I hear are in this star rating order...5, 3, 4, 5, 3, 4, 5, 2, 4. I have smart playlists set up that has all ratings above 1 on it, and separate ones that contain each star rating individually. Right now I have to painstakingly order it all myself, but is there a way to get iTunes to do it automatically?

    Ok, I have discovered a way to get results very close to what I wanted iTunes to do. Granted it is not exactly what I wanted, but I am very satisfied with what I have found. Using the smart playlist function and multiple playlists contained in one folder, I can now listen to several playlists rotated at random. Here's how you do it...
    First, create a new folder by clicking file, then new folder. Name the folder whatever you want. Now, create at least two (you can create as many as you want) separate playlists inside the folder using the smart playlist function. In my case, I wanted my iTunes to rotate songs of different star ratings as described above, so I created 4 playlists, setting each as My Rating - is - five star, My Rating - is - four star, and so on.
    Now here's the key...when creating each smart playlist, add two additional parameters.
    The first one is: Last Played - is not in the last - 1 - day.
    The second one is: Last Skipped - is not in the last - 1 - day.
    Then set: Limit to - 1 - items - selected by - random.
    Now, be sure Shuffle is turned off, and Repeat All is on inside the main Controls menu. Select the new folder and press play. iTunes now plays one song from each star rating once, then repeats selecting another song from each! You see, when you tell the smart playlist to limit the list to only one song AND it cannot be a song played within the last day, once the one song is finished playing it forces the smart playlist to regenerate, since the song it originally selected no longer meets the parameters of that list.
    You can use this to randomize playlists from all kinds of parameters...create a few playlists selected by artists, tags, etc. You can tinker with it to get all kinds of results.
    hp Windows XP

  • Itunes creating automatic playlists in error

    i am importing all my music onto my new imac on latest os and itunes and it is creating lots of playlist?
    Guy

    Not in iTunes itself, but you could see if you could find something in Doug's AppleScripts for iTunes.
    Why, though, do you need playlists for your artists (if I'm understanding you correctly)? If you turn on the browser, you can see and select an artist there and see all the tracks and albums for that artist just by selecting the artist name. The same applies to genres and albums, so unless you have very specific needs, there should be no reason to have to recreate hundreds of playlists, and if your needs are that specific, it's unlikely you'll find any automated way to do it.
    Good luck.

  • Automatically add Creator metadata to Illustrator files?

    I'm trying to figure out a way for Illustrator to grab the "Owner" information (what you see when you command+I the .ai in the Finder) and copy that into the Creator metadata field everytime the file is altered and saved.
    Any ideas on how to do this? I'd like this process to be invisible, because there's no way I'll get all our designers to remember to enter in their name as Creator everytime they alter a file.
    We just need to keep track of who touched which file last, and Version Cue just won't work with our workflow...
    Laker's tickets? Headscratch? Land in Montana?
    TIA!
    Travis.

    You can add stuff manually in the File>File Info
    It might be possible to script this information into the File Info
    All that info will come up in Acrobat under File>Document Properties.

  • What happened to the "added within 30 days" automatic playlist

    I was pleasantly surprised to find a playlist when I bought my ipod touch that includes all new material added to the ipod touch in the past 30 days. It's own version of a smart list I guess.
    It seems since upgrading to the most recent firmware, that playlist has disappeared?
    Maybe I'm going crazy but I can't find it.

    Don't know the answer to 1.
    The easiest way I can think of to set up the playlist you want would be to put all of your playlists (or at least the ones whose content you want in the playlist) in a single folder in iTunes (you can keep it expanded so you can see everything). Make a smart playlist with the criteria Playlist is <name of folder full of playlists> and Last played is in the last 30 days.
    Best of luck.

  • Why is itunes automatically creating playlists!!!! Really annoying

    I just got gifted an album and downloaded - itunes created an automatic playlist - which is totally uncessary - anyone know who to turn this off! Happens when I get something from itunes store.

    Hi Katy,
    Could you please, give us more information about your problem? What's the name of this podcast automatically created by iTunes? Is it named "Purchased"?
    Thanks

  • Smart Playlist for "X Most Recent Albums"?

    Hi guys!
    I'd love a way to craft a Smart Playlist that would give me X number (say, 5) of the most recently-added albums. I find I'm constantly adding a new album, making an individual playlist for that album, and then syncing it to my iPhone.
    I've poked around in the Smart Playlist creator, but I just didn't see a way to do this. Am I too sleep-deprived to spot something obvious?
    Thanks!
    Huxley

    But I think the original post is looking for a smart playlist that'll do this - that'll automatically include the most recently added albums, so when one album is added, the sixth most recent album stops being synced. Yes, he can manually add albums, but that's not what he's after, I think.
    That being said - I can't help. I'm browsing right now in this area because I'm once again looking for a good way to "smart sync" Classical music (which is mainly organized by album, or at least by "groups"), and haven't yet found one.
    Of course, you can make a smart playlist that is something like "Media Kind is Music", and limit it to 60 items selected by most recently added - that will give you roughly five albums, but it's not quite what you want.

  • My music video playlist no longer shows up in itunes

    the automatic playlist for my music videos doesn't show up at all...was there earlier just wanted to know how to get it back?

    had to create a new smart playlist

  • Why wont my purchased playlist show up into itunes

    Why wont my purchased playlist show up into itunes

    It may have been deleted. Nonetheless, you can recreate it:
    -Go into iTunes
    -Click File > New Smart Playlist...
    -On the first dropdown menu in the Smart playlist creator, select "Purchased"
    -For the second dropdown menu, make sure "is true" is selected, thus recreating your Purchased playlist

  • Can I tell Acrobat where to automatically create forms when scanning in many of the same document?

    The automatic form creator isnt very good at recognizing where I want text forms when I scan in this particular paper form. I have lots of these paper forms that look the same and am trying to convert each of them into a editable digital copy. Is there a way to help acrobat know where i want the text forms to be on the following scans without manually making the text forms everytime?

    No, but you can:
    - Use a script to create the fields in pre-defined locations
    - Create them once and then copy them over (Ctrl+C, Ctrl+V) to over files
    - Create them once and then use the Replace Pages function to other files.

  • Selecting any Playlist Folder lists the entire music library

    I recently switched to a new computer from an old one (both were XP Professional, iTunes version was not completely up-to-date on the older computer) and after migrating the old iTunes library and reconfiguring automatic playlists dependent on others, I found myself with a problem. Some of my playlists didn't show correct information, and after poking around for some time, I noticed every playlist folder, once selected or added as a dependency on an automatic playlist, listed the entire music library. Most of my affected playlists now depend on a workaround, and automatic playlist that corresponds to whatever the folders are supposed to list. This, however, is extremely inconvenient as I have one folder containing easily over a hundred playlists, the number of which increases nearly daily. As it happens, I have several playlists dependent of this folder. There is no workaround I can think of short of creating an automatic playlist with over a hundred separate rules, updated as the playlists grow.
    Help would be appreciated.

    I'm not quite sure how a screenshot would illuminate the issue. I can, however, try to explain this in simpler terms.
    I have my playlists in their folders (the sort created by selecting File -> New Playlist Folder). I imported (through File -> Library -> Import Playlist) my music library from an other computer. The playlist folders imported showed every item in my library (automatic playlists didn't). Apparently, moving any playlist out of a folder fixes this problem.

Maybe you are looking for

  • Volume problem with Music Player on N95

    Hi all, I am puzzled with a problem I'm having with my N95. The problem appeared after I performed an upgrade on the phone.  The thing is that the right side Volume keys do not work when using the Music player. I know the keys work since the zoom is

  • REFX - LEASE IN - CONTRACT CASH FLOW ERROR :

    Dear Experts, I have an issue with REFX - lease in scenario. For a  ( RECN) RENTAL/ CAM contract we have filled all the required details correctly. ONE MONTH POSTINGS also done correctly FOR cam charges. But now Cashflow is showing as "CAM CHARGES PA

  • Fetch failed

    I have a simple form. The form only has 3 fields on it:(Bank, Limit, Name of Guarantor(s) ) It supposed to 1. fetch the row 2. Allow user to update 3 fields 3. Update the row. I am getting an error on the fetch: ...Process "Fetch Line Of Credit": DML

  • Migrating to 10g ( Using webutil )

    Hello, I'm migrating a app from 4.5 to 10gr2, rigth now i'm replacing the source code from my pll, and deployng the webutil.pll, i replaced the several calls to text_io and host, with client_tex_io and client_host, should i do the same to win_api? Th

  • I have iphoto duplicated in the Launchpad.  How do I delete one?

    I have iphoto duplicated in the Launchpad.  How do I delete one?  Also, when I import photos from a camera, each photo is imported twice - why would that happen and how can I change it?  Many thanks.