01_musicbrainz.lua
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

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