4 Copyright © 2007 the VideoLAN team
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 return vlc.access == "http"
24 and ( string.match( vlc.path, "^break.com" )
25 or string.match( vlc.path, "^www.break.com" ) )
36 if not line then break end
37 if string.match( line, "sGlobalContentFilePath=" ) then
38 _,_,filepath= string.find( line, "sGlobalContentFilePath='(.-)'" )
40 if string.match( line, "sGlobalFileName=" ) then
41 _,_,filename = string.find( line, ".*sGlobalFileName='(.-)'")
43 if string.match( line, "sGlobalContentTitle=" ) then
44 _,_,filetitle = string.find( line, "sGlobalContentTitle='(.-)'")
46 if string.match( line, "el=\"videothumbnail\" href=\"" ) then
47 _,_,arturl = string.find( line, "el=\"videothumbnail\" href=\"(.-)\"" )
49 if string.match( line, "videoPath" ) then
50 _,_,videopath = string.find( line, ".*videoPath', '(.-)'" )
51 return { { path = videopath..filepath.."/"..filename..".flv"; title = filetitle; arturl = arturl } }