/usr/share/libquvi-scripts/0.9.20131130/media/vimeo.lua is in libquvi-scripts-0.9 0.9.20131130-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | -- libquvi-scripts v0.9.20131130
-- Copyright (C) 2010-2013 Toni Gundogdu <legatvs@gmail.com>
--
-- This file is part of libquvi-scripts <http://quvi.sourceforge.net/>.
--
-- This program is free software: you can redistribute it and/or
-- modify it under the terms of the GNU Affero General Public
-- License as published by the Free Software Foundation, either
-- version 3 of the License, or (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU Affero General Public License for more details.
--
-- You should have received a copy of the GNU Affero General
-- Public License along with this program. If not, see
-- <http://www.gnu.org/licenses/>.
--
--
-- NOTE: Vimeo is picky about the user-agent string.
--
local Vimeo = {} -- Utility functions unique to this script.
-- Identify the media script.
function ident(qargs)
return {
can_parse_url = Vimeo.can_parse_url(qargs),
domains = table.concat({'vimeo.com'}, ',')
}
end
-- Parse media stream URL.
function parse(qargs)
Vimeo.normalize(qargs)
qargs.id = qargs.input_url:match('/(%d+)$') or error('no match: media ID')
local c = Vimeo.config_new(qargs)
local J = require 'json'
local j = J.decode(c)
qargs.duration_ms = tonumber(j.video.duration or 0) * 1000
qargs.streams = Vimeo.iter_streams(qargs, j)
qargs.thumb_url = Vimeo.thumb_new(j)
qargs.title = j.video.title or ''
return qargs
end
--
-- Utility functions
--
function Vimeo.can_parse_url(qargs)
Vimeo.normalize(qargs)
local U = require 'socket.url'
local t = U.parse(qargs.input_url)
if t and t.scheme and t.scheme:lower():match('^http$')
and t.host and t.host:lower():match('vimeo%.com$')
and t.path and t.path:lower():match('^/%d+$')
then
return true
else
return false
end
end
function Vimeo.config_new(qargs)
local U = require 'socket.url'
local t = U.parse(qargs.input_url)
t.host = 'player.vimeo.com'
t.path = table.concat({'/video/', qargs.id})
local p = quvi.http.fetch(U.build(t)).data
return p:match('b=(.-);') or error('no match: b')
end
function Vimeo.thumb_new(j)
local r = {}
for _,u in pairs(j.video.thumbs) do
table.insert(r,u)
end
return r[#r] or ''
end
function Vimeo.normalize(qargs)
qargs_input_url = qargs.input_url:gsub("player%.", "")
qargs.input_url = qargs.input_url:gsub("/video/", "/")
end
function Vimeo.iter_streams(qargs, j)
local S = require 'quvi/stream'
local h = j.request.files.h264
local r = {}
for k,v in pairs(h) do
local s = S.stream_new(v.url)
s.container = v.url:match('%.(%w+)%?') or ''
s.video.bitrate_kbit_s = v.bitrate
s.video.height = v.height
s.video.width = v.width
s.id = Vimeo.to_id(s,k)
table.insert(r,s)
end
if #r >1 then
Vimeo.ch_best(S, r)
end
return r
end
function Vimeo.ch_best(S, t)
local r = t[1]
r.flags.best = true
for _,v in pairs(t) do
if v.video.height > r.video.height then
r = S.swap_best(r, v)
end
end
end
function Vimeo.to_id(t, quality)
return string.format("%s_%s_%dk_%dp",
quality, t.container, t.video.bitrate_kbit_s, t.video.height)
end
-- vim: set ts=2 sw=2 tw=72 expandtab:
|