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

midi

开发平台:

Unix_Linux

  1. --[[
  2.  $Id$
  3.  Copyright © 2007 the VideoLAN team
  4.  This program is free software; you can redistribute it and/or modify
  5.  it under the terms of the GNU General Public License as published by
  6.  the Free Software Foundation; either version 2 of the License, or
  7.  (at your option) any later version.
  8.  This program is distributed in the hope that it will be useful,
  9.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.  GNU General Public License for more details.
  12.  You should have received a copy of the GNU General Public License
  13.  along with this program; if not, write to the Free Software
  14.  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  15. --]]
  16. -- Probe function.
  17. function probe()
  18.     return vlc.access == "http"
  19.         and string.match( vlc.path, "metacafe.com" ) 
  20.         and (  string.match( vlc.path, "watch/" )
  21.             or string.match( vlc.path, "mediaURL=" ) )
  22. end
  23. -- Parse function.
  24. function parse()
  25.     vlc.msg.warn("FIXME")
  26.     if string.match( vlc.path, "watch/" )
  27.     then -- This is the HTML page's URL
  28.         while true do
  29.             -- Try to find the video's title
  30.             line = vlc.readline()
  31.             if not line then break end
  32.             if string.match( line, "<meta name="title"" ) then
  33.                 _,_,name = string.find( line, "content="Metacafe %- (.-)"" )  
  34.             end
  35.             if string.match( line, "<meta name="description"" ) then
  36.                 _,_,description = string.find( line, "content="(.-)"" )  
  37.             end
  38.             if string.match( line, "<link rel="image_src"" ) then
  39.                 _,_,arturl = string.find( line, "href="(.-)"" )
  40.             end
  41.             if name and description and arturl then break end
  42.         end
  43.         return { { path = string.gsub( vlc.path, "^.*watch/(.*[^/])/?$", "http://www.metacafe.com/fplayer/%1.swf" ); name = name; description = description; arturl = arturl;  } }
  44.     else -- This is the flash player's URL
  45.         local _,_,path = string.find( vlc.path, "mediaURL=([^&]*)" )
  46.         return { { path = path } }
  47.     end
  48. end