Export/Create Playlists 4 Child Nodes 4.0 (2013-07-10)[MM2+]

Download and get help for different MediaMonkey for Windows 4 Addons.

Moderators: Peke, Gurus

ramble-bumble
Posts: 32
Joined: Mon Apr 16, 2007 1:12 am

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by ramble-bumble »

Most probably I translated wrong, taking "send" instead of "export"...
Okay, I will certainly try to repair Windows Script, I hope that I will find a solution
amongst the links you have provided, which hopefully is understandable :-?
And I hope, too, that I will have time for that soon :wink:
I will keep you informed, but for the time being: MANY THANKS!
Gold; Windows; CocktailAudio; Huawei
philmcgee

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by philmcgee »

titanfan wrote:I tried ANSI/URL - nope, LMS can't read it.

Yes, Logitech seems to have a bug regarding utf-8 format playlists. I will report it, but I think their software has worked this way for a long time.

Good point about testing under Linux. One of the things on my TODO list is to move my music server to Linux, so I will be able to test this in the next few months.
Well I also wrote URL out for a file which had a # in the path name (like your #9 above) and it was incorrectly output by the script. The # should be encoded as %23 but is not. Maybe that's your issue - I discovered it and manually edited the M3U file to change the unencoded # to %23 and then it worked.
ramble-bumble
Posts: 32
Joined: Mon Apr 16, 2007 1:12 am

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by ramble-bumble »

I am sorry that I missed to give a feedback on my trial: After having repaired Windows Script, I was sucessfull in installing your tool... and it worked perfect, it does exactely what I needed, so finally all my playlists on the Cowon J3 have the correct format and their contents is recognized.
Many, many thanks!!!
:D :D :D
Gold; Windows; CocktailAudio; Huawei
Blutarsky
Posts: 194
Joined: Wed Mar 03, 2010 12:53 pm
Contact:

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by Blutarsky »

Large fonts problem

With DPI font scaling set to 150% this is how fonts are scrambled...

Image
Blutarsky
Posts: 194
Joined: Wed Mar 03, 2010 12:53 pm
Contact:

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by Blutarsky »

I can't build a regular expression properly to export m3u:

I need to replace the following paths:

Code: Select all

e:\music\library\portable\default
e:\music\library\portable\new
to

Code: Select all

\music
What regexp should I use?
ZvezdanD
Posts: 3257
Joined: Thu Jun 08, 2006 7:40 pm

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by ZvezdanD »

Blutarsky wrote:I need to replace the following paths:

Code: Select all

e:\music\library\portable\default
e:\music\library\portable\new

Code: Select all

e:\\music\\library\\portable\\(default|new)\\
or more generally:

Code: Select all

e:\\music\\library\\portable\\[^\\]+\\
Blutarsky wrote:to

Code: Select all

\music

Code: Select all

\music\
Magic Nodes 4.3.3 / 5.2 RegExp Find & Replace 4.4.9 / 5.2  Invert Selection/Select None 1.5.1  Export/Create Playlists for Child Nodes 4.1.1 / 5.4.1  Expand Child Nodes/Expand All 1.1.2  Event Logger 2.7  Filtered Statistics Report 1.6  Track Redirection & Synchronization 3.4.2  Restore/Synchronize Database 3.1.8 / 4.0.1  Find Currently Playing Track 1.3.2  Queue List 1.2.1  Add to Library on Play 1.0.1  Tree Report for Child Nodes 1.1.1  Update Location of Files in Database 1.4.5 / 2.3  Inherit Child Playlists 1.0.3  Add Currently Playing/Selected Track(s) to Playlist 1.2
Blutarsky
Posts: 194
Joined: Wed Mar 03, 2010 12:53 pm
Contact:

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by Blutarsky »

YES!!! :D

Thanks!

BTW: What engine is using the script? Perl-like? Or?
ZvezdanD
Posts: 3257
Joined: Thu Jun 08, 2006 7:40 pm

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by ZvezdanD »

Blutarsky wrote:What engine is using the script? Perl-like? Or?
VBScript
Magic Nodes 4.3.3 / 5.2 RegExp Find & Replace 4.4.9 / 5.2  Invert Selection/Select None 1.5.1  Export/Create Playlists for Child Nodes 4.1.1 / 5.4.1  Expand Child Nodes/Expand All 1.1.2  Event Logger 2.7  Filtered Statistics Report 1.6  Track Redirection & Synchronization 3.4.2  Restore/Synchronize Database 3.1.8 / 4.0.1  Find Currently Playing Track 1.3.2  Queue List 1.2.1  Add to Library on Play 1.0.1  Tree Report for Child Nodes 1.1.1  Update Location of Files in Database 1.4.5 / 2.3  Inherit Child Playlists 1.0.3  Add Currently Playing/Selected Track(s) to Playlist 1.2
Blutarsky
Posts: 194
Joined: Wed Mar 03, 2010 12:53 pm
Contact:

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by Blutarsky »

Regexp rules will be different?
ZvezdanD
Posts: 3257
Joined: Thu Jun 08, 2006 7:40 pm

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by ZvezdanD »

Blutarsky wrote:Regexp rules will be different?
Mostly not, except some rarely used things like Lookbehind. Here you could see the differences in VBScript’s RegEx engine:
http://www.regular-expressions.info/vbscript.html

There are some on-line RegEx testers where you could specify which engine you want to use, for example:
http://www.regextester.com/
Magic Nodes 4.3.3 / 5.2 RegExp Find & Replace 4.4.9 / 5.2  Invert Selection/Select None 1.5.1  Export/Create Playlists for Child Nodes 4.1.1 / 5.4.1  Expand Child Nodes/Expand All 1.1.2  Event Logger 2.7  Filtered Statistics Report 1.6  Track Redirection & Synchronization 3.4.2  Restore/Synchronize Database 3.1.8 / 4.0.1  Find Currently Playing Track 1.3.2  Queue List 1.2.1  Add to Library on Play 1.0.1  Tree Report for Child Nodes 1.1.1  Update Location of Files in Database 1.4.5 / 2.3  Inherit Child Playlists 1.0.3  Add Currently Playing/Selected Track(s) to Playlist 1.2
Blutarsky
Posts: 194
Joined: Wed Mar 03, 2010 12:53 pm
Contact:

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by Blutarsky »

I have been using this script MM version 3.x, because at that time MM couldn't sync playlists arranging relative paths. As for MM version 4.x is this still true?
Lowlander
Posts: 56588
Joined: Sat Sep 06, 2003 5:53 pm
Location: MediaMonkey 5

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by Lowlander »

This script works independent of MediaMonkey's script exports and contains many settings including relative Paths to define how it should export your Playlists.
Blutarsky
Posts: 194
Joined: Wed Mar 03, 2010 12:53 pm
Contact:

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by Blutarsky »

That's how I'm currently using it.

However in version MM v4 I see some (for me) new sync options,such as:
- force relative paths
- use extended M3u

Two options unavailable in MM 3.x; reason why I moved to to script.....

In my case (relative paths and extended paths) could be enough to stop using the script.... I should try a sync and see what happens
Lowlander
Posts: 56588
Joined: Sat Sep 06, 2003 5:53 pm
Location: MediaMonkey 5

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by Lowlander »

Then you probably were using an old version of the Addon.
Blutarsky
Posts: 194
Joined: Wed Mar 03, 2010 12:53 pm
Contact:

Re: Export M3Us/Playlists for Child Nodes 3.6 (2012-01-09)[M

Post by Blutarsky »

I mean I was using the addon because MM was missing those two options (build relative paths and extended M3U)
Post Reply