iPlaylist Importer 1.6 - Updated 25/05/2008

Download and get help for different MediaMonkey Addons.

Moderators: Peke, Gurus

Postby trixmoto » Sun May 25, 2008 6:33 am

New version (1.6) is now available to download from my website. I have now fixed playlists with tabs not working correctly.
Check out my scripts at trixmoto.net and subscribe to my RSS feed for updates.
Also check out my Uniface blog.
Get a free Dropbox account! :o

Image
trixmoto
 
Posts: 9703
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK

Re: iPlaylist Importer 1.6 [MM2+3]

Postby Kapten Iglo » Thu Oct 16, 2008 4:24 pm

Hey, I'd like to you use your script too, but (this is probably stupid) i can't see there any download button. Could you please explain to me how i can manage to integrate this script in MM3?
Kapten Iglo
 

Re: iPlaylist Importer 1.6 [MM2+3]

Postby Bex » Thu Oct 16, 2008 4:43 pm

Simply click on the MM3 icon on his website to download the script (or any other script you'll find there)
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!

All My Scripts
Bex
 
Posts: 6268
Joined: Fri May 21, 2004 5:44 am
Location: Sweden

Re: iPlaylist Importer 1.6 [MM2+3]

Postby ceep » Tue Oct 21, 2008 5:52 am

Hi

just found this site after installing MM yesterday, basically because I'm sick of itunes. I want to copy my itunes playlists to MM, and this seems to be the way to do it but could someone explain which icon I should click on to download the script - is it the 4kb .mmip file or the 283kb .exe file, or both?

Thanks
ceep
 

Re: iPlaylist Importer 1.6 [MM2+3]

Postby Bex » Tue Oct 21, 2008 6:00 am

mmip for MM3, exe is for MM2.
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!

All My Scripts
Bex
 
Posts: 6268
Joined: Fri May 21, 2004 5:44 am
Location: Sweden

Re: iPlaylist Importer 1.6 [MM2+3]

Postby ceep » Tue Oct 21, 2008 6:04 am

Cheers!
ceep
 

Re: iPlaylist Importer 1.6 [MM2+3]

Postby Anonymous B » Sun Nov 23, 2008 12:52 pm

When I try to install the package, I get "product installation error." What am I doing wrong?
Anonymous B
 

Re: iPlaylist Importer 1.6 [MM2+3]

Postby nohitter151 » Sun Nov 23, 2008 1:42 pm

Anonymous B wrote:When I try to install the package, I get "product installation error." What am I doing wrong?

You have to run MediaMonkey as administrator before installing the script. Close MM, right click the MM icon, then "Run as administrator". Installing the script now should be fine.
MediaMonkey user since 2006
Need help? Got a suggestion? Can't find something?
nohitter151
 
Posts: 21444
Joined: Wed Aug 09, 2006 10:20 am
Location: NJ, USA

Re: iPlaylist Importer 1.6 [MM2+3]

Postby Anonymous B » Sun Nov 23, 2008 1:54 pm

Thanks alot, it worked!
Anonymous B
 

Re: iPlaylist Importer 1.6 [MM2+3]

Postby blackcows » Fri Mar 27, 2009 9:05 am

iPlaylist importer is exactly what I have been looking for. We have extensive iTunes playlists and have been looking for a way to import them into MM. I downloaded the script and am having a problem, it does import the playlist and shows the tracks have a path with a format of localhost\\bartserver\music\... Using this path the track will not play but when I update the path by removing "localhost" things work fine. In otherwords the path \\bartserver\music\.. works fine. It is much to time consuming to change the path on each track. Is there any solution for this?

Mike
blackcows
 
Posts: 4
Joined: Sat May 12, 2007 5:36 pm

Re: iPlaylist Importer 1.6 [MM2+3]

Postby trixmoto » Fri Mar 27, 2009 10:38 am

As discussed via email, if you open the script in a text editor and find lines 185-187...

Code: Select all
        If Left(fil,7) = "file://" Then
          fil = Mid(fil,8)
        End If

...then you can insert the following lines directly underneath these...

Code: Select all
        If Left(fil,9) = "localhost" Then
          fil = Mid(fil,10)
        End If

...this will trim off the "localhost" for you.
Check out my scripts at trixmoto.net and subscribe to my RSS feed for updates.
Also check out my Uniface blog.
Get a free Dropbox account! :o

Image
trixmoto
 
Posts: 9703
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK

Re: iPlaylist Importer 1.6 [MM2+3]

Postby nynaevelan » Mon Mar 30, 2009 6:25 am

trixmoto wrote:As discussed via email, if you open the script in a text editor and find lines 185-187...

Code: Select all
        If Left(fil,7) = "file://" Then
          fil = Mid(fil,8)
        End If

...then you can insert the following lines directly underneath these...

Code: Select all
        If Left(fil,9) = "localhost" Then
          fil = Mid(fil,10)
        End If

...this will trim off the "localhost" for you.


This solution isn'w working for me, I am still getting the files with this directory, file://localhost/D:/Music/. Any idea what I am doing wrong?
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
nynaevelan
 
Posts: 5540
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA

Re: iPlaylist Importer 1.6 [MM2+3]

Postby trixmoto » Mon Mar 30, 2009 10:43 am

Ah, you said "localhost" not "localhost/" - try these lines instead...
Code: Select all
        If Left(fil,10) = "localhost/" Then
          fil = Mid(fil,11)
        End If

And as you have "file://" as well as "localhost/" you'll need to make sure these lines come after the original ones, not before.
Check out my scripts at trixmoto.net and subscribe to my RSS feed for updates.
Also check out my Uniface blog.
Get a free Dropbox account! :o

Image
trixmoto
 
Posts: 9703
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK

Re: iPlaylist Importer 1.6 [MM2+3]

Postby nynaevelan » Mon Mar 30, 2009 11:33 am

trixmoto wrote:And as you have "file://" as well as "localhost/" you'll need to make sure these lines come after the original ones, not before.


I don't understand what you mean.
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
nynaevelan
 
Posts: 5540
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA

Re: iPlaylist Importer 1.6 [MM2+3]

Postby trixmoto » Mon Mar 30, 2009 5:13 pm

Copy and paste the "localhost/" lines after the "file://" lines.
Check out my scripts at trixmoto.net and subscribe to my RSS feed for updates.
Also check out my Uniface blog.
Get a free Dropbox account! :o

Image
trixmoto
 
Posts: 9703
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK

PreviousNext

Return to Need Help with Addons?

Who is online

Users browsing this forum: Google [Bot], Majestic-12 [Bot] and 26 guests