2 -- Copyright (C) 2011,2013 Toni Gundogdu <legatvs@gmail.com>
4 -- This file is part of libquvi-scripts <http://quvi.sourceforge.net/>.
6 -- This program is free software: you can redistribute it and/or
7 -- modify it under the terms of the GNU Affero General Public
8 -- License as published by the Free Software Foundation, either
9 -- version 3 of the License, or (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 Affero General Public License for more details.
16 -- You should have received a copy of the GNU Affero General
17 -- Public License along with this program. If not, see
18 -- <http://www.gnu.org/licenses/>.
21 local TVLux
= {} -- Utility functions unique to to this script.
23 -- Identify the media script.
26 can_parse_url
= TVLux
.can_parse_url(qargs
),
27 domains
= table.concat({'tvlux.be'}, ',')
31 -- Parse the media properties.
33 local C
= require
'quvi/const'
34 local o
= { [C
.qoo_fetch_from_charset
] = 'iso-8859-1' }
35 local p
= quvi
.http
.fetch(qargs
.input_url
, o
).data
37 qargs
.id
= qargs
.input_url
:match('/video/.-(%d+)%.html$') or ''
39 qargs
.title
= p
:match('<title>(.-)%s+%-%s+TV') or ''
41 qargs
.thumb_url
= p
:match('"og:image" content="(.-)"') or ''
43 qargs
.streams
= TVLux
.iter_streams(p
)
52 function TVLux
.can_parse_url(qargs
)
53 local U
= require
'socket.url'
54 local t
= U
.parse(qargs
.input_url
)
55 if t
and t
.scheme
and t
.scheme
:lower():match('^http$')
56 and t
.host
and t
.host
:lower():match('^www%.tvlux%.be$')
57 and t
.path
and t
.path
:lower():match('^/video/.-_%d+%.html$')
65 function TVLux
.iter_streams(p
)
66 local d
= p
:match('setup%((.-)%)') or error('no match: setup')
68 local J
= require
'json'
71 local u
= {'http://www.tvlux.be'}
72 table.insert(u
, j
['file'] or error('no match: media stream URL path'))
74 local S
= require
'quvi/stream'
75 local s
= S
.stream_new(table.concat(u
))
77 s
.video
.height
= tonumber(j
['height'] or 0)
78 s
.video
.width
= tonumber(j
['width'] or 0)
83 -- vim: set ts=2 sw=2 tw=72 expandtab: