Hi guys,
I am not a programmer, trying my best here follow some tutorials and figure this out… I am almost there.
I like to name my files with (Studio - … (Live - … (Compilation -… In the end I get results like, supose Anthrax albums:
(Compilation - 2004) The Greater of Two Evils
(Live - 1994) The Island Years
(Studio - 1987) Fistul of Metal
My full naming script is:
$if($in(%releasetype%,album), $set(_isAlbum,1) )
$if($in(%releasetype%,album/live), $set(_isLive,1) )
$if($in(%releasetype%,single), $set(_isSingle,1) )
$if($in(%releasetype%,ep), $set(_isEP,1) )
$if($in(%releasetype%,album/compilation), $set(_isArtistCompil,1) )
$if($is_complete(),Complete Albums,Missing Tracks)/
%albumartist%/(
$if($eq(%_isAlbum%,1),Studio)
$if($eq(%_isLive%,1),Live)
$if($eq(%_isSingle%,1),Single)
$if($eq(%_isEP%,1),EP)
$if($eq(%_isArtistComplil%,1),Compilation)
- $year(%date%,4)) %album%/
(%album% - $year(%date%,4)) $num(%tracknumber%,2) - %title%
Seems bit messy pasting, here a SShot:
Ok, I keep getting on (Studio - …
Help?