1358: 'Series' & 'Director' not in SDBSongData [#7205]

Beta Testing for Windows Products and plugins

Moderator: Gurus

Psyker7
Posts: 255
Joined: Sat Mar 03, 2007 8:00 am

1358: 'Series' & 'Director' not in SDBSongData [#7205]

Post by Psyker7 »

Greetings,
In an attempt at starting to code a scraper for TheMovieDB.vbs I'm having nice progress, however it seems that the 'Artist' and 'Album' are unavailable for video types, and 'Series' and 'Director' (their equivalents) are not yet available through the scripting interface.

Code: Select all

Sub Scrape(but)
	Dim movies, movie, url, xml, i, searchText
	
	Set movies = SDB.SelectedSongList
	Msgbox(movies.Count)
	
	For i = 0 To movies.Count-1
		Set movie = movies.Item(i)
		searchText = movie.Title
		searchText = searchText & "+" & movie.Series
		searchText = searchText & "+" & movie.Album
		Set xml = LoadXMLWebsite(TMDBurl&searchText)
		Msgbox(xml.xml)
	Next	
End Sub
Both series and album fail to work. Title works fine.


MM 4.0.0.1358
Win7 x64

Script is running from a right click context menu.
Lowlander
Posts: 58481
Joined: Sat Sep 06, 2003 5:53 pm

Re: 1358 [BUG] 'Series' & 'Director' not in SDBSongData

Post by Lowlander »

I just want to thank you for starting work on this!
Ludek
Posts: 5090
Joined: Fri Mar 09, 2007 9:00 am

Re: 1358 [BUG] 'Series' & 'Director' not in SDBSongData

Post by Ludek »

Thanks, added to this issue http://www.ventismedia.com/mantis/view. ... 205#c23963 to be fixed soon.
Ludek
Posts: 5090
Joined: Fri Mar 09, 2007 9:00 am

Re: 1358: 'Series' & 'Director' not in SDBSongData [#7205]

Post by Ludek »

Video properties added in build 1359 and documented here:
http://www.mediamonkey.com/wiki/index.p ... ta_members
Post Reply