» Welcome Guest
[ Log In :: Register ]

 

[ Track this topic :: Email this topic :: Print this topic ]

Topic: Create playlist macro, How to auto update to working directory< Next Oldest | Next Newest >
phil
Board Newbie



Group: Members
Posts: 2
Joined: Dec. 2006
Posted: Dec. 29 2006,03:47

Hi,

I've recorded a very simple macro to create a winamp playlist (relative path) inside the selected directory via the context menu > macro.
It works but I've a small problem: the auto update custom list path to current working directory option is only effective in the GUI interface (if I select a folder, the list path is updated), not in my macro. So all my playlists are saved in the same place (not ideal for a relative path playlist).
How can I edit my macro to save the playlist in the selected directory? Is there a parameter for the current working directory?
Ideally I would like to set: ListPath=<currentdir>\list.m3u
Is it possible?
Many thanks in advance, your program is really useful

Phil

My macro:
MacroFileVersion=3506
[CreateList]
Template=<Artist> ; <Title> ; <Album> ; <Year> ; <Comment>
ListPath=E:\MP3\list.m3u
FieldSeparatorSequence= ;
AnyTagInfo=FALSE
AnyNonTagInfo=FALSE
FixedFieldWidth=TRUE
WinampPlaylistMode=TRUE
PlaylistRelativePaths=TRUE
Back to top
Profile PM 
Magnus Brading
Almighty Author



Group: Super Administrators
Posts: 2751
Joined: Aug. 2002
Posted: Dec. 29 2006,10:26

Automatic macro fields like that are not available, but if you use macro parameters and execute the macro from a script, you can get this effect as long as the script sets the path to what you want.

--------------
Software author and website owner
Back to top
Profile PM WEB 
phil
Board Newbie



Group: Members
Posts: 2
Joined: Dec. 2006
Posted: Dec. 29 2006,10:57

Thanks, I will give it a try

Phil
Back to top
Profile PM 
Klintan
Board Newbie



Group: Members
Posts: 6
Joined: Mar. 2007
Posted: Mar. 17 2007,22:37

I have this macro that will create a winamp playlist in the current dir.

MacroFileVersion=3506
[CreateList]
Template=<TrackNr>;<Artist>;<Title>;<Album>;<Year>
ListPath=.\00-playlist.m3u
FieldSeparatorSequence=;
AnyTagInfo=FALSE
AnyNonTagInfo=FALSE
FixedFieldWidth=FALSE
WinampPlaylistMode=TRUE
PlaylistRelativePaths=TRUE


A nice feature to add would be to make is possible to use filename like
ListPath=.\00 - <Artist> - <Album>.m3u
Back to top
Profile PM 
Magnus Brading
Almighty Author



Group: Super Administrators
Posts: 2751
Joined: Aug. 2002
Posted: Mar. 18 2007,23:20

Sorry for the temporary board bug, here is a copy of the last "disappeared" post, by Klintan:
---------------------------

I have this macro that will create a winamp playlist in the current dir.

MacroFileVersion=3506
[CreateList]
Template=<TrackNr>;<Artist>;<Title>;<Album>;<Year>
ListPath=.\00-playlist.m3u
FieldSeparatorSequence=;
AnyTagInfo=FALSE
AnyNonTagInfo=FALSE
FixedFieldWidth=FALSE
WinampPlaylistMode=TRUE
PlaylistRelativePaths=TRUE


A nice feature to add would be to make is possible to use filename like
ListPath=.\00 - <Artist> - <Album>.m3u

--------------
Software author and website owner
Back to top
Profile PM WEB 
4 replies since Dec. 29 2006,03:47 < Next Oldest | Next Newest >

[ Track this topic :: Email this topic :: Print this topic ]