]> git.sesse.net Git - vlc/blob - share/lua/meta/art/01_googleimage.lua
RC: stats are 64-bits
[vlc] / share / lua / meta / art / 01_googleimage.lua
1 --[[
2  Gets an artwork from images.google.com
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     if vlc.item == nil then return nil end
25
26     local meta = vlc.item:metas()
27     if meta["artist"] and meta["album"] then
28         title = meta["artist"].." "..meta["album"]
29     elseif meta["artist"] and meta["title"] then
30         title = meta["artist"].." "..meta["title"]
31     else
32         return nil
33     end
34     fd = vlc.stream( "http://images.google.com/images?q="..vlc.strings.encode_uri_component( title.." cover" ) )
35     if not fd then return nil end
36
37     page = fd:read( 65653 )
38     fd = nil
39     _, _, arturl = string.find( page, "imgurl=([^&]*)" )
40     return arturl
41 end