]> git.sesse.net Git - vlc/blob - share/lua/meta/art/01_musicbrainz.lua
ac21ae3ac379dcd2a039028864861cb778aed565
[vlc] / share / lua / meta / art / 01_musicbrainz.lua
1 --[[
2  Gets an artwork from amazon
3
4  $Id$
5  Copyright © 2007 the VideoLAN team
6
7  This program is free software; you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation; either version 2 of the License, or
10  (at your option) any later version.
11
12  This program is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  GNU General Public License for more details.
16
17  You should have received a copy of the GNU General Public License
18  along with this program; if not, write to the Free Software
19  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
20 --]]
21
22 -- Return the artwork
23 function fetch_art()
24     local query
25     local meta = vlc.item.metas(vlc.item)
26     if meta["artist"] and meta["album"] then
27         query = "http://musicbrainz.org/ws/1/release/?type=xml&artist="..vlc.strings.encode_uri_component(meta["artist"]).."&title="..vlc.strings.encode_uri_component(meta["album"])
28     else
29         return nil
30     end
31
32     local l = vlc.object.libvlc()
33     local t = vlc.var.get( l, "musicbrainz-previousdate" )
34     if t ~= nil then
35         if t + 1000000. > vlc.misc.mdate() then
36             vlc.msg.warn( "We must wait 1 second between requests unless we want to be blacklisted from the musicbrainz server." )
37             vlc.misc.mwait( t + 1000000. )
38         end
39         vlc.var.set( l, "musicbrainz-previousdate", vlc.misc.mdate() )
40     else
41         vlc.var.create( l, "musicbrainz-previousdate", vlc.misc.mdate() )
42     end
43     l = nil
44     vlc.msg.dbg( query )
45     local s = vlc.stream( query )
46     local page = s:read( 65653 )
47
48     -- FIXME: multiple results may be available
49     _,_,asin = string.find( page, "<asin>(.-)</asin>" )
50     if asin then
51         return "http://images.amazon.com/images/P/"..asin..".01._SCLZZZZZZZ_.jpg"
52     else
53         return nil
54     end
55 end