joox.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, "joox.net" ) or
  20.             string.match( vlc.path, "/iframe.php%?video=1&" )
  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, "iframe" ) then
  29.             -- extract the iframe
  30.             print((string.gsub( line, ".*iframe src="([^"]*).*", "%1" ) ))
  31.             return { { path = (string.gsub( line, ".*iframe src="([^"]*).*", "%1" )) } }
  32.         end
  33.         if string.match( line, "<param name="src" ) then
  34.             -- extract the video url from the iframe
  35.             print( (string.gsub( line, ".*src" value="([^"]*).*", "%1" )))
  36.             return { { path = (string.gsub( line, ".*src" value="([^"]*).*", "%1" )) } }
  37.         end
  38.     end
  39. end