Discogs Tagger 3.62 (Updated: 2013-02-09)
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
you're welcome
I hope you make use of it....
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
Does this work with mm4?
i can't get mine to work, it gives me a error
"Error #53 - Microsoft VBScript runtime error
File not found
File: "C:\Users\Username\Appdata\Local\Temp\Mediamonkey\install.vbs" , Line: 36, Column: 3"
Please help
Thanks
"Error #53 - Microsoft VBScript runtime error
File not found
File: "C:\Users\Username\Appdata\Local\Temp\Mediamonkey\install.vbs" , Line: 36, Column: 3"
Please help
Thanks
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
i'm sure it will work once mm4 gets released 
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
http://www.filefactory.com/file/cb9e19c ... agWeb.mmip
link in case the download doesn't work for you.
link in case the download doesn't work for you.
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
Hello. I have been using the script for a few days with no problems.
Now I just got the following error when trying to tag flac files.
Error #424 - Microsoft VBScript runtime error
Object required: 'XMLSearchResults'
File: "C:\Program Files (x86)\MediaMonkey\Scripts\DiscogsAutoTagWeb.vbs", Line: 544, Column: 3
Using MM Pro 3.2.5.1306 with Discogs Tagger 3.1 on Windows 7 64-bit SP1.
Thank you!
Now I just got the following error when trying to tag flac files.
Error #424 - Microsoft VBScript runtime error
Object required: 'XMLSearchResults'
File: "C:\Program Files (x86)\MediaMonkey\Scripts\DiscogsAutoTagWeb.vbs", Line: 544, Column: 3
Using MM Pro 3.2.5.1306 with Discogs Tagger 3.1 on Windows 7 64-bit SP1.
Thank you!
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
do you have msxml6 installed?
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
brown: are you promoting your site or is it me feeling that way?
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
Discogs have announced that they will be releasing API v2.0 and closing out current API on Dec 15, 2011. We'll be using the current API for now and I'll be following the v2.0 and upgrade it at some point. Check the blog entry for more information:
http://blog.discogs.com/2011/06/api-v20.html
http://blog.discogs.com/2011/06/api-v20.html
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
getting same error #424
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
#424 error as well
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
I don't get this error. Since API 2.0 is being developed, it might be a temporary issue.
Line 544 is:
would you put this before this line, run the script again and post the text in the message box?
This might give us a clue.
Line 544 is:
Code: Select all
ResultCount = XMLSearchResults.selectSingleNode("@numResults").TextCode: Select all
msgbox searchURLRe: Discogs Tagger 3.1 (Updated: 2011-05-04)
Mine stopped working too. 

Thanks
Let wrote:would you put this before this line, run the script again and post the text in the message box?Code: Select all
msgbox searchURL

Thanks
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
I've found the problem. when search string includes a minus sign '-', resulting xml becomes invalid. I've opened a thread on the API forum on discogs regarding this problem. For now avoid searching with minus sign. If they don't fix it, I'll add code for filtering minus sign. Searching in discogs is very messy.
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
Hi, (don't shoot the newbie!
)
I also had this problem, and thought it was to do with the '-'. The problem seems to be when zero results are returned; maybe they have changed the response but it then no longer returns a node (or whatever XML calls it) with the number of the search results returned. Instead it returns "None"
I changed the code to the following:
Bear in mind the last time I wrote code C++ was only just appearing on the horizon! (and no, I'm not old enough to have coded in B
). This works for me anyway - Discogs is my favourite tagger and I love this script, but it does seem that a bit of extra work is required to make the script sing (e.g. I'd love an option to list results only with the right number of tracks!). I have also done a couple of personal mods : replaced FilterMediaType = "None" with "CD Album" so that is the default option of the results filter, removed almost all of the countries, etc.
Hope that works for y'all. I'm not sure how the valuable efforts of the script writers are organised, but as a newbie it seems very haphazard in terms of quality, effort, etc. (My whole library has been tagged with this script, hence my shock that it didn't work!). It would be great if the core team could organise development as a light "open source" project - the scripting is such a powerful feature of MM, and a primary reason for my move from iTunes (apart from my love/hate relationship with SJ).
I also had this problem, and thought it was to do with the '-'. The problem seems to be when zero results are returned; maybe they have changed the response but it then no longer returns a node (or whatever XML calls it) with the number of the search results returned. Instead it returns "None"
I changed the code to the following:
Code: Select all
'change lines 544-558
If Not (XMLSearchResults is nothing) Then
ResultCount = XMLSearchResults.selectSingleNode("@numResults").Text
If ResultCount > 0 Then
Set AColl = XMLSearchResults.selectNodes("result")
For Each itm In AColl
if (itm.selectSingleNode("@type").text = "release" ) then
Results.Add itm.selectSingleNode("summary").Text
ResultsReleaseID.Add Mid(itm.selectSingleNode("uri").Text, InStrRev(itm.selectSingleNode("uri").Text, "/") + 1)
End If
Next
End If
End If
If (ResultCount = 0) Then
Results.Add SearchTerm & " - [search returned no results]"
ResultsReleaseID.Add SearchTerm
ErrorMessage = "Search returned no results"
End If
Hope that works for y'all. I'm not sure how the valuable efforts of the script writers are organised, but as a newbie it seems very haphazard in terms of quality, effort, etc. (My whole library has been tagged with this script, hence my shock that it didn't work!). It would be great if the core team could organise development as a light "open source" project - the scripting is such a powerful feature of MM, and a primary reason for my move from iTunes (apart from my love/hate relationship with SJ).
Re: Discogs Tagger 3.1 (Updated: 2011-05-04)
This little fix works for now. Thanks!!