3 -- Copyright (C) 2010-2011 Toni Gundogdu <legatvs@gmail.com>
5 -- This file is part of libquvi-scripts <http://quvi.sourceforge.net/>.
7 -- This library is free software; you can redistribute it and/or
8 -- modify it under the terms of the GNU Lesser General Public
9 -- License as published by the Free Software Foundation; either
10 -- version 2.1 of the License, or (at your option) any later version.
12 -- This library is distributed in the hope that it will be useful,
13 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
14 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 -- Lesser General Public License for more details.
17 -- You should have received a copy of the GNU Lesser General Public
18 -- License along with this library; if not, write to the Free Software
19 -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24 -- NOTE: mp4s do not appear to be available (404) even if listed in the
25 -- config xml, this is the case at least with the test URL
28 local Spiegel
= {} -- Utility functions unique to this script
30 -- Identify the script.
32 package
.path
= self
.script_dir
.. '/?.lua'
33 local C
= require
'quvi/const'
35 r
.domain
= "spiegel%.de"
36 r
.formats
= "default|best"
37 r
.categories
= C
.proto_http
38 local U
= require
'quvi/util'
39 r
.handles
= U
.handles(self
.page_url
, {r
.domain
}, {"/video/"})
43 -- Query available formats.
44 function query_formats(self
)
45 Spiegel
.get_media_id(self
)
47 local config
= Spiegel
.get_config(self
)
48 local formats
= Spiegel
.iter_formats(config
)
51 for _
,v
in pairs(formats
) do
52 table.insert(t
, Spiegel
.to_s(v
))
56 self
.formats
= table.concat(t
, "¦")
63 self
.host_id
= "spiegel"
65 Spiegel
.get_media_id(self
)
67 local playlist
= Spiegel
.get_playlist(self
)
69 local _
,_
,s
= playlist
:find("<headline>(.-)</")
70 self
.title
= s
or error ("no match: media title")
72 local config
= Spiegel
.get_config(self
)
73 local formats
= Spiegel
.iter_formats(config
)
75 local U
= require
'quvi/util'
76 local format = U
.choose_format(self
, formats
,
78 Spiegel
.choose_default
,
80 or error("unable to choose format")
81 self
.duration
= (format.duration
or 0) * 1000 -- to msec
82 self
.url
= {format.url
or error("no match: media url")}
90 function Spiegel
.get_media_id(self
)
91 local _
,_
,s
= self
.page_url
:find("/video/video%-(.-)%.")
92 self
.id
= s
or error ("no match: media id")
95 function Spiegel
.get_playlist(self
)
96 local fmt_s
= "http://www1.spiegel.de/active/playlist/fcgi/playlist.fcgi/"
97 .. "asset=flashvideo/mode=id/id=%s"
99 local playlist_url
= string.format(fmt_s
, self
.id
)
101 return quvi
.fetch(playlist_url
, {fetch_type
= 'playlist'})
104 function Spiegel
.get_config(self
)
105 local fmt_s
= "http://video.spiegel.de/flash/%s.xml"
106 local config_url
= string.format(fmt_s
, self
.id
)
107 return quvi
.fetch(config_url
, {fetch_type
= 'config'})
110 function Spiegel
.iter_formats(config
)
111 local p
= '<filename>(.-)<'
113 .. '.-<totalbitrate>(%d+)'
116 .. '.-<duration>(%d+)'
118 for fn
,c
,b
,w
,h
,d
in config
:gfind(p
) do
119 local _
,_
,cn
= fn
:find('%.(%w+)$')
120 local u
= 'http://video.spiegel.de/flash/' .. fn
121 -- print(u,c,b,w,h,cn,d)
122 table.insert(t
, {codec
=string.lower(c
), url
=u
,
123 width
=tonumber(w
), height
=tonumber(h
),
124 bitrate
=tonumber(b
), duration
=tonumber(d
),
130 function Spiegel
.choose_best(formats
) -- Highest quality available
131 local r
= {width
=0, height
=0, bitrate
=0, url
=nil}
132 local U
= require
'quvi/util'
133 for _
,v
in pairs(formats
) do
134 if U
.is_higher_quality(v
,r
) then
141 function Spiegel
.choose_default(formats
) -- Lowest quality available
142 local r
= {width
=0xffff, height
=0xffff, bitrate
=0xffff, url
=nil}
143 local U
= require
'quvi/util'
144 for _
,v
in pairs(formats
) do
145 if U
.is_lower_quality(v
,r
) then
152 function Spiegel
.to_s(t
)
153 return string.format('%s_%s_%sk_%sp',
154 t
.container
, t
.codec
, t
.bitrate
, t
.height
)
157 -- vim: set ts=4 sw=4 tw=72 expandtab: