Why did you change the style of grabbing the tags between 1.23 and 2.0? Was it only because big releases, like +5 CD's where getting slow? The reason I ask is that I'm not really convinced the new way is better... I really loved how all the different roles where split into separate tags. That gave me the opportunity to populate the "main" tags like I wanted. For instance I populated BAND with ARTIST or FEATURING and/or VOCALS, I don't see how I can do that with the 2.0 style of tagging...
Still, I of cause love what you have done/are doing! Thanks!
lol, never seen so much credits.
I'm having so problems with removing dupe fields, so new version might be bit delayed, when i'll fix all these bugs i'll post 2.02. btw, if you find any new bugs, let me know.
That's because adding more and more roles to the script was not very 'smart'. I think it was developing wrong way. About that FEATURING and/or VOCALS thing, try using format value MIXARTIST or DJMIX as a template.
OK, I understand the problem you where facing, I'll have a look at MIXARTIST & DJMIX to try and learn how to do it. What about AUTHOR/WRITTEN BY on a track level, will MIXARTIST & DJMIX teach me how to do that too? Regards! //Windjammer
i have problem with all releases with two files
artist and title doesn't show unless i click mixed cd - that they aren't , so the script cant rename the songs and crashes
I'm have another crazy release
1804642 - I have this in FLAC - 143 files, 2.4 Gbytes. Actions applies 25 min on my server (coreduo 2.13 4GB RAM) . And all tagged right! except vol 7 and half of vol6. And I don't see why.. - bad flac tags, fixed with clear )
Download v2.04, TOTALTRACKS now should work with big box sets, however, tagging CD / DVD and other multi-format releases TOTALTRACKS value will be received total files selected, not CD / DVD or such.
Heres two my mods for Pufas script, maybe it can help you.
Just replace header part of Pufas script by this (I cut this from another websources )
Artist - Album search, but it can also search by other fields (catalog# for example). Previously, I had a separate script for cat#, then diskogs improved)
# Pufas discogs script search mod
[Name]=Discogs XML AA
[BasedOn]=http://www.discogs.com
[IndexUrl]=http://www.discogs.com/search?type=releases&q=%s&f=xml&api_key=1e48c7f4e4
[AlbumUrl]=http://www.discogs.com/release/
[WordSeperator]=+
[IndexFormat]=%Release%|%_url%|%_preview%|%Comment%
[SearchBy]=%artist% %album%
[Encoding]=UTF-8
[ParserScriptIndex]=...
# Join Lines
JoinUntil "</resp>"
# Result
do
findinline "<result num"
# Title
sayregexp "(?<=<title>)[^<]+(?=</title>)" ", " "</result>"
say "|"
#URL-Release
sayregexp "(?<=release/)[^<]+(?=</uri>)" ", " "</result>"
say "?f=xml&api_key=1e48c7f4e4"
say "|"
#URL-Preview
sayregexp "(?<=<uri>)[^<]+(?=</uri>)" ", " "</result>"
say "|"
# Comment
sayregexp "(?<=<summary>)[^<]+(?=</summary>)" ", " "</result>"
saynewline
findinline "</result>"
while "<result num"
[ParserScriptAlbum]=...
Second mod - receive http URL in search window (fist mod also receive http instead of xml) for ID search script:
# Pufas discogs script http URL mod
[Name]=Discogs XML ID
[BasedOn]=http://www.discogs.com
[IndexUrl]=http://www.discogs.com/release/%s?f=xml&api_key=1e48c7f4e4
[AlbumUrl]=http://www.discogs.com/release/
[WordSeperator]=
[IndexFormat]=%_url%|%_preview%
[SearchBy]=%discogsid%
[Encoding]=utf-8
[ParserScriptIndex]=...
# Join Lines
JoinUntil "</resp>"
# URL
findinline "<release id=\""
sayuntil "\" status"
say "?f=xml&api_key=1e48c7f4e4"
say "|"
gotochar 1
#URL-Preview
findinline "<release id=\""
say "http://www.discogs.com/release/"
sayuntil "\" status"
saynewline
[ParserScriptAlbum]=...
I did not dare ask Pufas about these improvements, because already made them myself and had many other issues)