~ubuntu-branches/ubuntu/natty/vlc/natty

« back to all changes in this revision

Viewing changes to share/lua/meta/art/10_googleimage.lua

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2010-06-25 01:09:16 UTC
  • mfrom: (1.1.30 upstream)
  • Revision ID: james.westby@ubuntu.com-20100625010916-asxhep2mutg6g6pd
Tags: 1.1.0-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - build and install the libx264 plugin
  - add Xb-Npp header to vlc package
  - Add apport hook to include more vlc dependencies in bug reports
* Drop xulrunner patches.
* Drop 502_xulrunner_191.diff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
-- Replace non alphanumeric char by +
 
23
function get_query( title )
 
24
    -- If we have a .EXT remove the extension.
 
25
    str = string.gsub( title, "(.*)%....$", "%1" )
 
26
    return string.gsub( str, "([^%w ])",
 
27
         function (c) return string.format ("%%%02X", string.byte(c)) end)
 
28
end
 
29
 
 
30
-- Return the artwork
 
31
function fetch_art()
 
32
    -- This is disabled because we have too much false positive by the inherent nature of this script.
 
33
    if true then vlc.msg.dbg("10_googleimage.lua is disabled") return nil end
 
34
 
 
35
    if vlc.input == nil then return nil end
 
36
 
 
37
    local item = vlc.input.item()
 
38
    local meta = item:metas()
 
39
    if meta["artist"] and meta["album"] then
 
40
        title = meta["artist"].." "..meta["album"]
 
41
    elseif meta["artist"] and meta["title"] then
 
42
        title = meta["artist"].." "..meta["title"]
 
43
    elseif meta["title"] then
 
44
        title = meta["title"]
 
45
    elseif meta["filename"] then
 
46
        title = meta["filename"]
 
47
    else
 
48
        vlc.msg.err("No filename")
 
49
        return nil
 
50
    end
 
51
    fd = vlc.stream( "http://images.google.com/images?q=" .. get_query( title ) )
 
52
    if not fd then return nil end
 
53
 
 
54
    page = fd:read( 65653 )
 
55
    fd = nil
 
56
    _, _, arturl = string.find( page, "imgurl=([^&]+)" )
 
57
    return arturl
 
58
end