Convert a Mac iTunes library to a Windows iTunes library?

This sounds like heresy, but I've switched my home system from a ten year old Mac Powerbook, to a screamingly fast, new Dell laptop. I have a large iTunes library on the old Mac; s there a way I can convert my Mac iTunes Library into a Windows iTunes Library, or do I have to (gasp) rebuild the whole thing in Windows?

Hello autochthon,
Thanks for using Apple Support Communities.
To transfer your iTunes library to another computer just follow the steps in the article below.
iTunes: How to move your music to a new computer
http://support.apple.com/kb/HT4527
Take care,
Alex H.

Similar Messages

  • Trouble converting Mac Quicktime audio files for Windows ITunes

    I tried convereting them to AAC files on the import. They seemed to "play" but there was no audio. I then did MP3 conversion and got MPEG files with the same results. Grateful for any help.

    quicktime files themselves are compatible between OSs. Unless you are trying to read a Mac formatted disc with a Windows machine. try burning to CD the reading with other system.

  • Is data dvd copied from mac with itunes 7 work with windows itunes 7

    I have a new laptop pc. My itunes library is on my emac. I want to authorize the laptop and put my itunes library on both computers. If I back up my itunes library on DVD from my mac desktop can I use the DVDs to load my library onto the laptop pc. Both computers use itunes 7.
    Thanks!

    iTunes: Moving your iTunes Music folder
    Regards,
    Colin R.

  • ITunes COM API for Windows - iTunes 7.7 broken!

    I use the iTunes COM API for Windows to control iTunes as part of a program which helps users create audiobooks.
    Version 7.7.0.43 of iTunes breaks this software. So far as I can determine, the iTunes.ConvertTracks2 and iTunes.ConvertFiles2 routines are now broken, in that they no longer return a reference to the converted tracks.
    Is this a bug on Apple's part, or is it a fundamental change? The COM API documentation describes the earlier behavior, which makes sense.

    I'm seeing the exact same behaviour in my application calling the COM API from Perl. No track reference can be obtained after ConvertTracks2 completes.
    What's going on?
    Edward

  • AppleScript error with iTunes: Can't get window 'iTunes' of class pcap ...

    Hi there. I'm working on a script that posts iTunes track names to Campfire based on the AirPlay device in use. I've been getting a "Can't get window 'iTunes' of <<class pcap>> 'iTunes' of application 'System Events'" and was hoping someone might see an obvious answer. The error pops up randomly. Some machines receive the error much more often than others. Here's the code:
    global current_track
    global last_track
    global campfire_token
    global airplay_device
    global campfire_room
    global current_device
    (* Begin user defined settings ************)
    set campfire_token to "123456" (* Your Campfire API authentication token *)
    set airplay_device to "Apple TV" (* The name of your AirPlay device *)
    set campfire_room to "https://yourorg.campfirenow.com/room/123456/speak.xml" (* The Campfire room you'd like to post to *)
    (* End user defined settings *************)
    set current_track to ""
    set current_device to ""
    set last_track to ""
    on idle
              if application "iTunes" is running then
                        tell application "iTunes"
                                  if player state is playing then
                                            tell application "System Events"
                                                      tell application "iTunes"
                                                                set minimized of front browser window to false (*This AppleScript can only function when iTunes is not minimized.  *)
                                                                delay 2
                                                                set visible of front browser window to true
                                                                delay 2
                                                                set current_track to current track
                                                      end tell
                                                      delay 2
                                                      set current_device to the description of button 8 of window "iTunes" of application process "iTunes" of application "System Events"
                                            end tell
                                            delay 2
                                            if current_track is not equal to last_track then
                                                      if current_device as string is equal to airplay_device & " AirPlay" then
                                                                tell application "iTunes"
                                                                          set current_track to current track
                                                                          tell current_track
                                                                                    set trackName to (name)
                                                                                    set artistName to (" :: " & artist)
                                                                                    set albumName to (" :: " & album)
                                                                          end tell
                                                                          set track_info to (trackName & artistName & albumName) as string
      (* Replace apostrophes *)
                                                                          set search_string to "'"
                                                                          set replacement_string to "&#39;"
                                                                          set AppleScript's text item delimiters to the search_string
                                                                          set the item_list to every text item of track_info
                                                                          set AppleScript's text item delimiters to the replacement_string
                                                                          set track_info to the item_list as string
                                                                          set AppleScript's text item delimiters to ""
      (* Replace quotation marks *)
                                                                          set search_string to "\""
                                                                          set replacement_string to "&#34;"
                                                                          set AppleScript's text item delimiters to the search_string
                                                                          set the item_list to every text item of track_info
                                                                          set AppleScript's text item delimiters to the replacement_string
                                                                          set track_info to the item_list as string
                                                                          set AppleScript's text item delimiters to ""
                                                                          set shellCommand to ("curl -u " & campfire_token & ":X -H 'Content-Type: application/xml' -d '<message><type>TextMessage</type><body>" & track_info & "</body></message>' " & campfire_room)
                                                                          set shellCommand to shellCommand as string
      do shell script shellCommand
      (*display dialog shellCommand*)
      (*log "Posting to Campfire:" & shellCommand*)
                                                                end tell
                                                                delay 2
                                                      end if
                                            end if
                                            set last_track to current_track
                                  end if
                                  return 1
                        end tell
              end if
    end idle
    Thanks for your help. Any suggestions are appreciated!

    well, for information's sake, the cleaned-up script looks like this:
    (* Begin user defined settings ************)
    property campfire_token : "123456" (* Your Campfire API authentication token *)
    property airplay_device : "Apple TV" (* The name of your AirPlay device *)
    property campfire_room : "https://yourorg.campfirenow.com/room/123456/speak.xml" (* The Campfire room you'd like to post to *)
    (* End user defined settings *************)
    global current_track, last_track, current_device
    on run
      (* init at runtime*)
              set current_track to ""
              set current_device to ""
              set last_track to ""
    end run
    on idle
              if application "iTunes" is not running then return 60
              tell application "iTunes"
                        if (player state is not playing) or (current track is equal to last_track) then return
                        set last_track to current track
                        set minimized of front browser window to false
                        set visible of front browser window to true
                        set current_device to my getDevice()
                        if current_device as string is not equal to airplay_device & " AirPlay" then return
                        set track_info to my mungeText({name, artist, album} of last_track, "", "::")
                        set track_info to my mungeText(track_info, "'", "&#39;") -- Replace apostrophes
                        set track_info to my mungeText(track_info, "\"", "&#34;") -- Replace quotation marks
                        set shellCommand to ("curl -u " & campfire_token & ":X -H 'Content-Type: application/xml' -d '<message><type>TextMessage</type><body>" & track_info & "</body></message>' " & campfire_room)
      do shell script (shellCommand as string)
      (*display dialog shellCommand*)
      (*log "Posting to Campfire:" & shellCommand*)
                        return
              end tell
    end idle
    on getDevice()
              tell application "System Events"
                        tell process "iTunes"
                                  return description of button 8 of window "iTunes"
                        end tell
              end tell
    end getDevice
    on mungeText(itxt, stxt, rtxt)
              set tid to AppleScript's text item delimiters
              if class of itxt is text then
                        set AppleScript's text item delimiters to stxt
                        set itxt to text items of itxt
              end if
              set AppleScript's text item delimiters to rtxt
              set otxt to itxt as text
              set AppleScript's text item delimiters to tid
              return otxt
    end mungeText
    I'm positive there's a better way to check if AirTunes is the active device (maybe by seeing if the current playlist is a device playlist, and checking the source name?), but I don't have any way to test that.

  • ITunes 64bit edt on Windows 8 - Library serious error

    Hi everyone thankyou for looking at this.
    Ok so recently, I booted up my PC then clicked on the iTunes shortcut opened it up and to my shock and horror ...No music/playlists/ratings/play count..
    Frustrated and annoyed I naturally went into the preferences then clicked on and library to the itunes media folder...Naturally this would just add in the media. Therefore loosing all my data.
    So I held my head hi and thought of it as a positive and then created some new playlists etc and started rating songs again.
    This morning its happened again....This is soo annoying!
    Please help me!

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    It shouldn't really take that long to do, assuming it goes smoothly.
    tt2

  • My iPod is formatted for Mac and can not get Windows iTunes to recognize it. How do I format it for Windows?

    I need serious help! I can not seem to restore my iPod to Windows as it is in MAC format. The windows computer "dings" when plugged in, but is not recognized in iTunes or computer. I have no problem when it is plugged into my MAC!!! PLEASE HELP, this is frustrating!

    Hey KitKattz44,
    Thanks for the question. The following resource may help to resolve your issue:
    iPod: How to determine your iPod's disk format
    http://support.apple.com/kb/HT1335
    You cannot use an iPod whose disk is configured for Macintosh on a Windows-compatible computer. However, you can restore the iPod disk to use it with a Windows-compatible computer. To do this, see "Restoring iPod to factory settings." While a Windows formatted iPod may work on a Mac, Apple supports this configuration only with iPod shuffle.
    Thanks,
    Matt M.

  • 2 Ipods 1 Macbook Itunes account and 1 windows itunes account (same user)

    Ok... I purchased a new Ipod nano for traveling and have it synced to my work laptop. I have a 5th generation Ipod 30g for home and it is synced to the macbook. Both have music downloaded from one account (mine) and I would like to join the 500 some odd songs on each ipod so I have all 1000 songs and I can stop purchasing duplicate songs for each ipod. Is this possible? I have found that the Itunes help engine can be very difficult to navigate if you are new to mac. Also.. I have no clue on how to find out what OS I have on the macbook... thanks

    Just connect the iPod to the computer and use the transfer purchases option.
    It will transfer purchases from both iPods to iTunes.

  • Audio Disk Unreadable by iMac Itunes but Readable By Windows iTunes!!!

    I have a 3-song Neil Finn audio cd from a few years ago I want to import into iTunes.
    On my new Windows 7 PC running iTunes I can import the songs just fine.
    But my 3yo iMac 24" workstation does not even recognize the disk; after about a minute the disk is ejected with no message or anything.
    I've cleaned the disk, too.
    What's going on with my iMac 24" not even reading this disk???

    Is this a burned CD or a commercially produced one? Burned CDs are harder to read. It could be your 3 year old drive is starting to show its age. You can also buy cleaner discs to clean dust out of an optical drive.
    You can also try other applications to read the CD. Max is a free CD ripper.

  • ITunes library created on windows can't be read by iTunes on OS X

    Hi,
    I'm running a MBP with OS X 10.5.4 and VIsta Ultimate SP1 32-bit via bootcamp. I have installed software allowing OS X to write as well as read NTFS partitions.
    I have an external harddrive with my iTunes folder consolidated (using windows iTunes) on it so my library files and music are all on the hardrive in the iTunes folder.
    I can access the library file fine in Vista (which I used to create the iTunes library originally) but in OS X I can't seem to select the library file. It's greyed out, even though I've removed the .itl extension etc...
    What's odd is my old version (unconsolidated) iTunes library created by the windows iTunes can be accessed from OS X iTunes. Is it something to do with the consolidation.
    Any ideas?

    A better title would've been iTunes can't read library.

  • ITunes has stopped working (windows 7)

    Problems when accessing iTunes store with error message iTunes has stopped working.
    Problem signature is:
    Problem signature
    Problem Event Name: APPCRASH
    Application Name: iTunes.exe
    Application Version: 10.1.0.56
    Application Timestamp: 4ce4a7b6
    Fault Module Name: atiumdag.dll
    Fault Module Version: 7.14.10.532
    Fault Module Timestamp: 46eb3a74
    Exception Code: c0000005
    Exception Offset: 00078f50
    OS Version: 6.0.6001.2.1.0.768.3
    Locale ID: 2057
    Additional Information 1: fd00
    Additional Information 2: ea6f5fe8924aaa756324d57f87834160
    Additional Information 3: fd00
    Additional Information 4: ea6f5fe8924aaa756324d57f87834160
    Can you help?

    I've also been getting the "itunes not working" message since yesterday when I try to import a cd or music files from a folder. After that message, itunes closes.
    That's a different issue, das.
    First you need to check your precise version number. In iTunes, go "Help > About iTunes", and wait for the version number to scroll up from the bottom.
    If it says *iTunes 10.1.0.54* , we need to update you to version 10.1.0.56 .
    If you have 10.1.0.54 installed, 10.1.0.56 probably won't appear for you in Apple Software Update. So you'll need to download the 10.1.0.56 installer from the Apple Website, as per the following document:
    [iTunes 10.1 for Windows: iTunes may stop working and need to quit while importing or syncing audio|http://support.apple.com/kb/TS3591]

  • Opening a Windows iTunes library with Mac iTunes

    I have my iTunes folder on a shared drive on my network. This was created in Windows XP using that version of iTunes.
    I have a Macbook Pro and have access to the shared drive. I would like to use that same library so that I can preserve my ratings and playlists. However, if I attempt to open that library I cannot seem to (either the .itl or the .xml file).
    Is there a way to share the same library across machines (and not using the shared libraries functionality)?
    TIA,
    -p

    By design, an iPhone syncs or manually manages iTunes content with ONE COMPUTER at a time. Every time you change computers, all iTunes content is first erased from your phone, to be replaced with the content from the new computer. And no, there's no way to prevent this.
    However, if you copy your iTunes library from your Windows computer to your Mac, you'll simple be replacing like content with like content.

  • How do I transfer my Windows iTunes library to my Apple Mac?

    I've got my iTunes library on my Windows PC. I've now bought an Apple Mac and want to move it there. How do I do this?

    Migrate Your iTunes Library from Windows to Mac (and keep your ratings, play counts and date added)
    http://www.tunequest.org/migrating-your-itunes-library-from-windows-to-mac/20061 105/
    A Guide to Switching iTunes from Mac to Windows (or Vice Versa)
    http://ipod.about.com/b/2007/03/11/a-guide-to-switching-itunes-from-mac-to-windo ws-or-vice-versa.htm
    Cheers,
    Patrick

  • Ex-Mac user now on Windows 7: How to acccess my iTunes library (now on my PC) with my Windows iTunes?

    I'm an ex-Mac user now on Windows 7: How to acccess my former Mac iTunes library (now on my PC) with my Windows iTunes? I get error message: The file "iTunes Library.itl" cannot be read because it was created by a newer version of iTunes.
    Can anyone help me please?
    Roy

    So, what I have done so far to try to achieve this is:
    I have my Windows PC with it's NTFS formatted external HDD containing the music etc.
    I have my Mac with a new external HDD formatted in Mac OS Extended (Journaled).
    On the Windows PC:
    * I opened up iTunes.
    * Went into Preferences, and then under the Advanced tab I checked both 'Keep iTunes Media Folder Organised' and 'Copy files to iTunes Media folder when adding to library', so that all the files would be in the main iTunes Media folder when I copy it over.
    * Then File, Library, Organise Library and ticked the 'Consolidate Files' so that it moves any files that aren't in the right folder.
    Next I copied the files over. So I copied the updated media folder from the NTFS (Windows) external HDD onto the Mac external HDD.
    And I copied the files from in My Documents/Music/iTunes on the Windows PC to User/Music on the Mac.
    But this doesn't seem to have done it.

  • Help! Transfering iTunes library from Windows iTunes to iTunes on a new Mac

    I am sure others have asked this -- I was not able to find it though:
    I have a Windows machine on which my whole iTunes library sits (both ripped CD's and downloaded music and TV from iTunes).
    I need to move that to my new Mac.
    I read the article about using my iPod to do this, but it doesn't seem to work across Mac/Windows. The computers are on the same home LAN. My old machine doesn't have a DVD writer or CD writer, so I can't use that option.
    So, is there an easy way to just transfer it over to my new machine?
    Also, what do I need to do (and in what order) about de-authorizing my old computer?
    The Apple help and online resources are shockingly unhelpful on this topic. Thanks for any instructions you can provide.
    Thank you!
    MacBook Pro Mac OS X (10.4.8)
    MacBook Pro   Mac OS X (10.4.8)  

    After you mount the drive, I'd recommend copying the folder over to your Mac desktop. From there, set iTunes to Copy Files on Import (under preferences). Select File -> Add to Library then choose the whole music folder you copied to your desktop. iTunes will load all the songs into your iTunes library and copy them to the appropriate folder in your hard drive.
    When that process is complete, you should be able to delete the folder from your desktop and all your songs will be in your iTunes library.
    Hope this helps!

Maybe you are looking for

  • I want to sync my ipod with windows media player

    I just bought a iPod Touch and realized that I can't sync w/windows media player to get my music off of it...how can I sync the two?

  • Gray screen, apple logo and spinning gear hang at start up

    after a lengthy round of "bejeweled", i let my imac fall into screen saver mode. when i tried to log back in, i tapped the mouse and the imac flashed as it does when actuated outside a dialogue without clicking the okay button, and immediately return

  • STO Different valuation of the material

    Dear All, In stock transfer procedure i am having the requirement as, Suppose 100 mt of Materia moves for Plant A to Plant B. Valuation of material at Plant A is 100@10 inr= 1000. But i want valuation of material in Plant B = 950 & 50 inr to some dif

  • Capturing Data of Multiple textbox with same name

    HI, I have a table composed on View Object. I am displaying two attributes (Description, name) of that VO. The VO returns 11 rows thus displaying 11 textboxes. On Controller side i need to update the values of these textboxes to database. Can anyone

  • Using HDR photo in Iphoto 09

    okay so i have an iphone 4, took some HDR pictures and imported them into iphoto 09. now how do i combine them to get one better quality picture? there is no mention of HDR in iphoto manual or menus?