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

midi

开发平台:

Unix_Linux

  1. --[[
  2.  $Id$
  3.  Copyright © 2009 the VideoLAN team
  4.  Authors: Konstantin Pavlov (thresh@videolan.org)
  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, "video.mpora.com/watch/" )
  21. end
  22. -- Parse function.
  23. function parse()
  24.     p = {}
  25.     while true do
  26.         -- Try to find the video's title
  27.         line = vlc.readline()
  28.         if not line then break end
  29.         if string.match( line, "meta name="title"" ) then
  30.             _,_,name = string.find( line, "content="(.*)" />" )
  31.         end
  32.         if string.match( line, "image_src" ) then
  33.             _,_,arturl = string.find( line, "image_src" href="(.*)" />" )
  34.         end
  35.         if string.match( line, "filmID" ) then
  36.             _,_,video = string.find( line, "var filmID = '(.*)';")
  37.             table.insert( p, { path = "http://cdn0.mpora.com/play/video/"..video.."/mp4/"; name = name; arturl = arturl } )
  38.         end
  39.         if string.match( line, "definitionLink hd" ) then
  40.             table.insert( p, { path = "http://cdn0.mpora.com/play/video/"..video.."_hd/mp4/"; name = name.." (HD)", arturl = arturl } )
  41.         end
  42.     end
  43.     return p
  44. end