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

midi

开发平台:

Unix_Linux

  1. --[[
  2.  French humor site: http://lelombrik.net
  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. -- Probe function.
  18. function probe()
  19.     return vlc.access == "http"
  20.         and string.match( vlc.path, "lelombrik.net/videos" ) 
  21. end
  22. -- Parse function.
  23. function parse()
  24.     vidtitle = ""
  25.     while true do
  26.         line = vlc.readline()
  27.         if not line then break end
  28.         if string.match( line, "id="nom_fichier">" ) then
  29.             vidtitle = string.gsub( line, ".*"nom_fichier">([^<]*).*", "%1" )
  30.         end
  31.         if string.match( line, "flvplayer.swf" ) then
  32.             -- fallback: retrieve the title from the url if we didn't find it
  33.             if vidtitle == "" then
  34.                 vidtitle = string.gsub( vlc.path, ".*/([^.]*).*", "%1" )
  35.             end
  36.             return { { path = string.gsub( line, ".*flashvars="&file=([^&]*).*", "%1" ); arturl = string.gsub( line, ".*&image=([^&]*).*", "%1" ); title = vidtitle } }
  37.         end
  38.     end
  39. end