break.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, "^break.com" )
  20.            or string.match( vlc.path, "^www.break.com" ) )
  21. end
  22. -- Parse function.
  23. function parse()
  24.     filepath = ""
  25.     filename = ""
  26.     filetitle = ""
  27.     arturl = ""
  28.     while true do
  29.         line = vlc.readline()
  30.         if not line then break end
  31.         if string.match( line, "sGlobalContentFilePath=" ) then
  32.             _,_,filepath= string.find( line, "sGlobalContentFilePath='(.-)'" )
  33.         end
  34.         if string.match( line, "sGlobalFileName=" ) then
  35.             _,_,filename = string.find( line, ".*sGlobalFileName='(.-)'")
  36.         end
  37.         if string.match( line, "sGlobalContentTitle=" ) then
  38.             _,_,filetitle = string.find( line, "sGlobalContentTitle='(.-)'")
  39.         end
  40.         if string.match( line, "el="videothumbnail" href="" ) then
  41.             _,_,arturl = string.find( line, "el="videothumbnail" href="(.-)"" )
  42.         end
  43.         if string.match( line, "videoPath" ) then
  44.             _,_,videopath = string.find( line, ".*videoPath', '(.-)'" )
  45.             return { { path = videopath..filepath.."/"..filename..".flv"; title = filetitle; arturl = arturl } }
  46.         end
  47.     end
  48. end