+ Reply to Thread
Results 1 to 4 of 4

Meizu on MAC with iTunes, solution!

This is a discussion on Meizu on MAC with iTunes, solution! within the General Meizu M6 forums, part of the miniPlayer M6 / SL category; Hi everybody, I've been searching for a while now on whether it was possible to use a meizu on a ...

  1. #1
    Passing By
    Join Date
    Aug 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Meizu on MAC with iTunes, solution!

    Hi everybody,

    I've been searching for a while now on whether it was possible to use a meizu on a Mac/iTunes and wasn't having much luck so I tried my hand at my first AppleScript. I hope you enjoy. Feel free to offer constructive criticism, etc.

    Copy and paste the code into Script Editor (included with Mac) and edit to your specifications and run it. As of now you can type in which iTunes playlist it transfers the songs from but not the actual playlist itself. I may incorporate this later (it has to be converted to an m3u format I believe).

    For those of you trying to get your Meizu to show up on your MAC, this thread was helpful for me:
    OSX kills m6 - fat related


    Code:
    (* An AppleScript to transfer the music files from a playlist located in an iTunes library to an mp3 player
    Created: April 7 2009
    *)
    
    set thePlaylist to "Test" -- enter the name of your playlist as it shows in iTunes
    set meizuDisk to "M6" -- enter the name of your Meizu/MP3 Player drive here
    
    -- try block catches error of an already existing folder
    try
        tell application "Finder" to make new folder at folder "MUSIC" of disk meizuDisk with properties {name:thePlaylist}
    end try
    
    tell application "iTunes"
        repeat with theTrack in (get every track of playlist thePlaylist)
            set thePath to (location of theTrack)
            -- try block catches error of an already existing file
            try
                tell application "Finder" to copy file thePath to folder thePlaylist of folder "MUSIC" of disk meizuDisk
            end try
        end repeat
    end tell

  2. #2
    Passing By
    Join Date
    Apr 2009
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts
    hi there, i am not a mac user, but i have tried to rip with itunes.

    the music i ripped appeared to be by 'unknown artist' when they asre definily attached with infos like these when i ripped them.

    do you any solutions to that?

    thanks for you help

  3. #3
    Passing By
    Join Date
    Aug 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts
    You mean when you play them on your Meizu? I have the same problem sometimes too. I'm not sure about it now but I think if you right click the songs in iTunes you can go to "Convert ID3 Tags..." and choose a version that will work with the Meizu. Try it out and lemme know.

  4. #4
    Passing By
    Join Date
    Nov 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts
    iTunes doesn't write the information in mp3 tag, you may try some tag editor or simply use winamp to fix that.

    By the way, can album arts be imported too?


 

Similar Threads

  1. (MAC+MEIZU)Syncing meizu with itunes on a MAC
    By freshiam in forum Technical
    Replies: 22
    Last Post: 07-08-2010, 11:29 AM
  2. Replies: 4
    Last Post: 08-29-2009, 05:33 PM
  3. Replies: 6
    Last Post: 04-05-2009, 03:13 AM
  4. The solution
    By thestrangestick in forum General Meizu M8
    Replies: 40
    Last Post: 04-11-2008, 11:49 PM
  5. Replies: 12
    Last Post: 07-05-2007, 06:51 PM