2 -- Copyright (C) 2010-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 SevenLoad
= {} -- Utility functions unique to this script.
23 -- Identify the media script.
26 can_parse_url
= SevenLoad
.can_parse_url(qargs
),
27 domains
= table.concat({'sevenload.com'}, ',')
31 -- Parse media properties.
33 local p
= quvi
.http
.fetch(qargs
.input_url
).data
35 local E
= require
'quvi/entity'
38 qargs
.thumb_url
= p
:match('"og:image" content="(.-)"') or ''
40 qargs
.title
= p
:match('"og:title" content="(.-)"') or ''
42 qargs
.id
= p
:match('videoid":"(.-)"') or ''
44 qargs
.streams
= SevenLoad
.iter_streams(p
)
53 function SevenLoad
.can_parse_url(qargs
)
54 local U
= require
'socket.url'
55 local t
= U
.parse(qargs
.input_url
)
56 if t
and t
.scheme
and t
.scheme
:lower():match('^http$')
57 and t
.host
and t
.host
:lower():match('sevenload%.com$')
58 and t
.path
and t
.path
:lower():match('^/videos/')
66 function SevenLoad
.stream_new(S
, t
)
67 local u
= t
['src'] or error('no match: media stream URL')
68 local s
= S
.stream_new(u
)
69 -- 'nostd' is a temporary dictionary and will be ignored by libquvi.
71 quality
= u
:match('%-(%w+)%.%w+$') or ''
73 s
.video
.encoding
= t
['video_codec'] or ''
74 s
.audio
.encoding
= t
['audio_codec'] or ''
75 s
.container
= u
:match('%.(%w+)$') or ''
76 s
.id
= SevenLoad
.to_id(s
)
80 function SevenLoad
.iter_streams(p
)
81 local S
= require
'quvi/stream'
82 local J
= require
'json'
84 local d
= p
:match('data%-html5="(.-)">') or error('no match: data-html5')
87 local s
= j
['sources'] or error('"sources" not found')
90 for _
,v
in pairs(s
) do
91 table.insert(r
, SevenLoad
.stream_new(S
,v
))
97 function SevenLoad
.to_id(t
)
98 return string.format('%s_%s', t
.nostd
.quality
, t
.container
)
101 -- vim: set ts=2 sw=2 tw=72 expandtab: