Playlist file confusion

I have sucessfully moved my itunes libary to a network drive, however the playlists i create on my mac won't copy over like the music does.
Somebody has said that the ...iTunes Music Library.xml is the file i need to copy over, but i note that there is one in the music folder where the itunes folder is and one also in the actual itunes folder with all the music, do i need to copy both or is one a mistake . I also note that there is two of a file called "iTunes Library" which looks like database file...does this need to be copied aswell ?
Thanks
Matt

You've posted to the iTunes Match forum, which your question does not appear to be releated to. You'll get better support responses by posting to the iTunes for Windows forum.

Similar Messages

  • Is there a way to prevent iTunes from automatically starting the next playlist file on the iPad?

    Is there a way to prevent iTunes from automatically starting the next playlist file on the iPad?

    When you connect the device open iTunes and select it from the sidebar. Click on the Summary tab in the main window. Uncheck the option to automatically connect to iTunes. You will find it in the collection of options near the lower part of the window.

  • I have an iPod Classic 5th Gen.  After 1 month I've lost all my music and playlist files.  The only files left are music I have purchased from iTunes.  How do I restore my music library to my iPod?

    I have an iPod Classic 5th Generation.  I have not used it for about one month.  When I turned it on, I had lost all my music and playlist files.  The only thing left on the iPod was the music and audio books I have purchased from iTunes store.  I tried to delete everything on the ipod by sliding the hold button and then pressing the center button and the menu and I saw the apple logo on the screen but the iPod wouldn't reboot.  Any suggestions as to how I can delete everything on the iPod and then plug it into my computer to restore my music library?  I am using a Windows 7 operating system.

    Does both your Windows and Macbook iTunes have the same library of songs?
    if it  does then, much easier to proceed, else try to load the Macbook with the same library as Windows.
    Note that only one of the Macbook USB port is good for iPod Classic, the other is too slow and may cause timeout, and I would suggest disconnect all other USB devices, while you Restore or Sync the iPod Classic.
    Connect the iPod to the Mac, (if iTunes launch, please close it back.)
    Use Disk Utility -> select the iPod Device->First Aid->Repair (use option FAT32)
    After the Repair complete, eject the iPod.
    Connect back to the Mac
    When iTunes launch, Restore the iPod when Prompted, (use FAT32)
    Sync your library.
    Good Luck!

  • I have uploaded an old itunes library by mistake - any way that I can go back to my previous library.  Unable to do a system restore and I don't know where to find an up to date music/playlist file.

    I have uploaded an old itunes library by mistake - any way that I can go back to my previous library.  Unable to do a system restore and I don't know where to find an up to date music/playlist file.  I was originally trying to recover a playlist that vanished after I had updated one of the ipads, did an online search, followed the instructions only to discover that I had loaded an itunes library from 2 years ago.  Stupidly I thought that it had updated itself and didn't realise I had to do it.  Any he

    See Empty/corrupt iTunes library after upgrade/crash. Hopefully you have a more recent library file that you can restore.
    tt2

  • How to create an Empty Playlist File on Mac?

    Hello everyone, I'm working on a Music Player script, I was able to play a file via the default player as when we doubleclick on a file. The problem is I have no control over the Player, so to "stop" a file I could play a "silent" mp3, one with 1 second of silence in it for example. I discarded the idea since I had to distribute this silent.mp3 file along with the script. A better option is to play a "playlist", since playlist files are text only, I could create them an empty playlist file on the fly...
    so, the question is, what's the default playlist extension on a mac? and how to create one on the Mac?
    in windows the default player is Windows Media Player, the default playlist file extension is *.wpl.
    here's the contents of an empty playlist
    <?wpl version="1.0"?>
    <smil>
        <head>
            <meta name="Generator" content="Microsoft Windows Media Player -- 12.0.7601.18150"/>
            <meta name="ItemCount" content="0"/>
            <title>empyPlaylist</title>
        </head>
    </smil>
    here's the script, so far Windows only, at least to stop the file being played.
    //  script.name = musicPlayer_Windows.jsx;
    //  script.needs = I need to create an Empty Playlist File for the Mac, that will play on the default music player when executed
    // carlos canto, 10/12/2014
    var w = new Window('dialog', 'Music Player');
    var btnFile = w.add('button', undefined, 'Select an *.mp3 file to play...');
    var lblSong = w.add('edittext', undefined, '');
    lblSong.characters = 30;
    var btnPlay = w.add('button', undefined, 'Play');
    var btnStop = w.add('button', undefined, 'Stop');
    var btnClose = w.add('button', undefined, 'Close');
    btnPlay.enabled = btnStop.enabled = false;
    var emptyPlaylist = getEmptyPlaylist ();
    btnFile.onClick = function () {
        var file = File.openDialog ("Select File to Play...", '*.mp3', false);
        lblSong.text = file.displayName;
        lblSong.file = file;
        btnPlay.enabled = btnStop.enabled = true;
    btnPlay.onClick = function () {
        lblSong.file.execute();
        $.sleep (300);
        BridgeTalk.bringToFront('estoolkit');
    btnStop.onClick = function () {
        emptyPlaylist.execute();
        $.sleep (300);
        BridgeTalk.bringToFront('estoolkit');
    btnClose.onClick = function () {
        w.close();
    w.show();
    // this function creates an Empty Playlist file (Windows) on the fly, this file will be used to "stop" a playing file
    // I need a similar function for Mac
    function getEmptyPlaylist () {
        var desk = Folder.desktop;
        var f = new File(desk+'/emptyPlaylist.wpl');
        if (!f.exists) {
            var s_emptyPlaylist = (new String("<?wpl version=\"1.0\"?>\n<smil>\n    <head>\n        <meta name=\"Generator\" content=\"Microsoft Windows Media Player -- 12.0.7601.18150\"/>\n        <meta name=\"ItemCount\" content=\"0\"/>\n        <title>empyPlaylist</title>\n    </head>\n</smil>\n"));
            f.encoding = 'utf-8';
            f.open('w');
            f.write(eval(s_emptyPlaylist));
            f.close();
        return f;
    thanks in advance
    Carlos

    hmm...I think it's going to be more complicated than I thought.
    correct, this script targets the ESTK, it is part of a larger Illustrator script, which doesn't have doScript either...I would go with applescript as last resort. I think going with the playlist file is easier.
    based on your comment I realized users might change their default players, so on Windows I'm going to change the playlist file from *.wpl to the more universal *.m3u, I guess whatever decent player made the default, supports this file.
    so, will an *.m3u playlist file play on the default mac player (itunes) when executed?
    File("~/Music/iTunes/iTunes Media/Music/emptyPlaylist.m3u").execute(); // will this play on itunes?
    I noticed that the *.m3u file can be blank, it will still "play" when executed() and effectively "stops" any music file currently being played...if this happens on Mac also, that's what I'm after.
    thanks for helping Dirk.

  • Clicking on .PLS playlist files in the web browser

    Can someone, please, confirm that this is how all N9 phones behave; I'm not sure whether I've messed something up by installing and uninstalling MeeRadio:
    When you tap on a .PLS (playlist) file on a web page, the browser downloads the file and shows it in the Transfers window.  You can then tap on it there, and it will open the Music Player and start streaming.  (The .PLS file itself will be stored forever in the Downloads folder, until you manually delete it from there.)
    If this is how it's supposed to work, a better way to handle it would've been to just launch the Music Player and start streaming as soon as you tapped on a .PLS link on the web page.  This is how the N900 works.
    Thanks!

    This is a problem related to having an outdated version of Firebug, most likely you've disabled automatic update of addons.
    The easiest way to fix this is to go to Tools -> Addons, and then clicking the wheel button up near the search field. From there you choose "Check for Updates" and unless you need specific versions of an addon, choose the "Update addons automatically" while you are there.
    You will most likely have to update Firebug twice, as it updates to an outdated version, and from there to the newest one.
    This is the solution I stumbled upon as I had the same exact problem, where I tried creating a new profile and the likes.

  • Lost Playlist Files - Can I....

    Can i somehow download my playlists from my iPod so i don't have to start over?

    Oops... PodWorks downloaded the music from my playlist but it DID NOT download the "actual" playlist file which is what i need - any suggestions as this program doesn't have much instructions or help.

  • When I add a playlist file in iTunes, they do no appear in my library but do appear in the playlist

    Hi all.
    Not been on here in ages so please be gentle!
    Just a question with itunes. Im using lion and everything is updated. If i have a folder with music files in it and a playlist file, if I drag the playlist file into itunes it will appear under the playlist heading with all of the files there. However if I goto my library and look for the files, they do not appear.
    Is this normal, I can't say I ever remember this happening before!
    Thanks for your help!

    I found a work around by manually adding each song in the order I want to the shuffle.  As long as I disconnect the iPod without ejecting or syncing, it will stay in the order I want.  I have also discovered that when I create new playlists, I have the same problem with the alphabetical order of artists.  Is there a setting I may be missing?

  • Nokia Internet Radio playlist file support

    Why not support in future releases of Nokia internet Radio playlist files as .pls or .m3u? NIR is an awesome app but it lacks this great feature in my opinion. For example all BBC radio channels have a high quality AAC stream but the dynamic url is in a .pls file http://bbc.co.uk/radio/listen/live/r1_aaclca.pls
    Please consider this option.
    Thank you

    I'll second that. I can only get BBC Radio 4 on Yourmuze.fm, which uses the player and won't allow anything else to run at the same time.
    When I listen to BBC Worldservice I can make notes as I listen and/or go to relevant websites while listening, but not with R4.
    hughm_nyksj_dk

  • ITunes playlist file

    Can someone tell me the location of the playlist file? I need to restore my playlist.
    Here's the story:
    I was completing backups of my Macbook to an external drive using SuperDuper!. I just finished rebuilding my Macbook to complete a fresh restart of the OS and clean out a bunch of junk I had installed over the past year. I've completed all OS and application updates. I am now at the point of restoring all of my data, including my music.
    iTunes has already been setup to view my Music library with all of my restored music included, I just need to restore my playlist so that I do not have to recreate everything. Currently, my music library is stored on a different external drive and iTunes can see this library with no problems.
    How can I recreate my playlist easily?
    Thanks in advance.
    P.S. I did find a thread that states that the playlist file is in the following directory: /Users/username/Library/Preferences/com.apple.iTunes.plist
    However, I tried replacing this file with the file I had backed up on my external drive but it did not restore my playlist in iTunes. I did confirm the file (by viewing with Textedit) had my playlist in it.

    hi Ed,
    i don't beleive there are anything else to come. the playlists info are stored in the iTunes library files. if you open it and that you playlist are no longer there... you may start to redo them.
    if your playlist are very important, you may consider this method of backing them up; http://docs.info.apple.com/article.html?artnum=93763

  • Files moved location, playlist is confused

    Hi Guys
    I'd really appreciate some help here, I may have ruined my friends carefully selected playlist of 1200 songs.
    I have MOVED the music files from there original location to an external hard disk. Note: some of the songs were in a long hierarchy of directories, and for simplicity I removed them from the directories and placed them straight into the root of the external HD.
    This has now created the problem that the existing playlist has now got a full list of exclamations next to the songs. Following reading threads I saw on various forums, I thought I should re-consolidate the library. Reassigning iTunes music folder to E:\ I then proceeded to consolidate the library again.
    Still the exclamation persists, could someone please shed some light on what options I have to reinstate the new file locations of the playlist/library into iTunes.
    Thanks so much in advance.
    FarmerCarter

    Open the disk manaagement console (hit Start and type diskmgmt.msc<Enter> into the search box). Change the drive letter of your drive from G: to F: - if something else is already using F: change that first. Open iTunes. Should be good.
    You may find my post make a split library portable and this backup tip useful.
    tt2

  • HT203164 Error trying to burn a CD from an iTunes playlist - files not found on hard drive??

    I have a new computer with Windows 8 Home Premium.  Before the old computer crashed, I had backed up all my iTunes Media in the cloud.  I had also purchased a soundtrack album from the iTunes store and put the songs into a playlist.  All media was matched with the new computer, and the new computer was authorized by me in iTunes, so all my previous media shows up in iTunes on the new computer.  The only symbol next to the song titles in iTunes for all my songs is a picture of a tiny cloud.
    When I play the songs in the playlist from the new computer in iTunes, they all play just fine.  However, when I try to burn a CD with the songs in the playlist, I get this error message (it has no number associated with it):  The song "[name of song]" could not be burned because the file cannot be found on the computer hard drive.  I tried burning CD's from any other playlist but was not able to burn a CD from ANY playlist; I get the same error message no matter what I try to do.  I would really like to be able burn CD's from iTunes, because that's what plays in my car.  Hooking up an iPod in the car does play music, but it is faded and of bad quality (my car is an '05 model).
    Does anyone have any ideas on what is wrong here and how I can fix it so burning CD's in iTunes will again be an option?  I don't burn many CD's but would really like to be able to do so.  The version of iTunes I have is 11, all the iTunes files are updated, and the CD drive is working fine,  I am able to play CD's in iTunes from it and burn other songs to it using another media player.  I am also using top-quality new blank CD's, and when trying to burn a CD from a playlist, I select Audio CD with 2 seconds for the gap between songs, and the album text, then I select Burn.  I've tried selecting other options in turn, but get the same error message.
    Thank you in advance to anyone who can help with this issue - it seems I am the only one having it.

    I actually solved this problem myself.  I discovered, while playing around with the new iTunes, that clicking on PLAYLISTS on the menu bar shows the playlists that I have created on the left side of the window (like the old iTunes used to do by default).  I scrolled down to the playlist I wanted to burn to a CD, right-clicked on it, and a menu came up.  I selected DOWNLOAD....this downloads my playlist songs from the cloud to my computer hard drive.  After that, the little "cloud pictures" next to my songs disappeared, and I was able to burn the CD with no problems.
    I hope this helps someone else....I was quite lost for a while.  Which is amazing, considering how user-friendly most Apple products have historically been.

  • Where should I save the playlists file

    In what specific file on my computer should i save my iTunes personal playlists files

    If you mean Playlists created in your iTunes Library, iTunes does all that for you. You don't have to "save" them anywhere. As you edit them, iTunes "saves" them and they should be in the same place when you next open iTunes.

  • Finding Playlist files

    Hi,
    I recently had to buy a new hard drive. Before I did I backed up my entire hard drive - I also have my itunes library backed up on a seperate drive. I imported my old library files to restore my playlists but they are incomplete (I think they are a previous save - since that I have altered them). My Itunes on my old dead hard drive had my full playlists on there. Are the playlists stored with the Itunes files or the Music files?
    Cheers,
    Ian.

    Hi, welcome to Apple Discussions.
    Playlists are recored in the *iTunes Library.itl* and *iTunes (Music) Library.xml* files. Ideally you'd restore the backup of your .itl file and the other assocatied files that normally exist in the top level iTunes folder. If you've lost these then you'll probably have to rebuild your playlists from scratch. If you have an iPod with these playlists on then I believe there are some iPod to PC transfer tools that can rebuild playlists in iTunes but I can't say I've ever tested any out.
    tt2

  • Still image file confusion.

    Got an unusual problem...
    Importing folders of JPG still images into CS5 to product a slide show.....
    On random occasions Premier confuses individual image file names and replaces them with alternate files from within folders imported on the time line....
    Ive re checked the original source of the files affected and they are unaltered...
    At first I thought files may be damaged by a virus..... However I;ve used other editing software and they work perfectly........Wondering if anyone has a solution....

    I've seen this same thing...drove me nuts!  I reported it as a bug, so Adobe knows about it. Hopefully a fix will come along soon.  A work around is to right-click on the files in the bin, choose Edit in Photoshop, then in Photoshop just do a Save As, and re-save over the old file using the same name and format. When you go back into Premiere Pro, it should be fine. Be sure to back up your original files somewhere...just in case.  Hope that helps!

Maybe you are looking for

  • Photoshop CS4 will not Start

    Hi, i'm usually quite responsible when it comes to making sure my system can coap with what i am asking of it, but i've ran into a problem that my computer just can't seem to get around, and means that photoshop cs4 will not start up. I've been makin

  • I keep getting this error message when trying to access thew internet:Unable to connect

    I have been using Firefox for years. Then all of a sudden it just quit working. I get Unable to connect. See below. Firefox can't establish a connection to the server at search.yahoo.com. or any other website. Help!

  • WIP&Settlement Process order

    Hi, We calculate WIP weekly basis and WIP used to credited to a Balance sheet acct and DR to a P&L acct (which is generally NOT a Cost Element ) Here our Doubt, WIP was calculating irrespective of Settlement that is we used to see the Doucument (DR a

  • ValueChangeListener not invoking backing bean method

    Hi Everybody I am using a valueChangeListener attribute with <h:selectOneListbox>. As i am using onChange, the form is getting submitted but the associated backing bean method is not getting invoked. My JSP code: <%@ taglib uri="http://java.sun.com/j

  • No fan and disc drive not working...MacBook Pro

    I have a MacBook Pro that is a little over a year old. Recently I noticed that my fan never runs and the disc drive isn't working. Is there something I can do or do I need to take it somewhere to have it looked at? Thank you.