invidious-copy-2022-04-11/src/invidious/helpers.cr

1175 lines
39 KiB
Crystal
Raw Normal View History

macro add_mapping(mapping)
def initialize({{*mapping.keys.map { |id| "@#{id}".id }}})
end
def to_a
return [{{*mapping.keys.map { |id| "@#{id}".id }}}]
end
DB.mapping({{mapping}})
end
macro templated(filename)
2018-07-06 12:59:56 +00:00
render "src/invidious/views/#{{{filename}}}.ecr", "src/invidious/views/layout.ecr"
end
2018-06-01 22:26:00 +00:00
macro rendered(filename)
2018-07-06 12:59:56 +00:00
render "src/invidious/views/#{{{filename}}}.ecr"
2018-06-01 22:26:00 +00:00
end
2018-07-16 16:24:24 +00:00
DEFAULT_USER_PREFERENCES = Preferences.from_json({
2018-07-17 00:31:49 +00:00
"video_loop" => false,
"autoplay" => false,
"speed" => 1.0,
"quality" => "hd720",
"volume" => 100,
2018-07-28 14:49:58 +00:00
"comments" => "youtube",
2018-07-17 00:31:49 +00:00
"dark_mode" => false,
2018-07-26 17:09:29 +00:00
"thin_mode " => false,
2018-07-17 00:31:49 +00:00
"max_results" => 40,
"sort" => "published",
"latest_only" => false,
2018-07-16 16:24:24 +00:00
}.to_json)
2018-03-09 18:42:23 +00:00
class Config
YAML.mapping({
2018-05-01 23:51:16 +00:00
crawl_threads: Int32,
channel_threads: Int32,
2018-04-28 15:50:02 +00:00
video_threads: Int32,
db: NamedTuple(
2018-03-09 18:42:23 +00:00
user: String,
password: String,
host: String,
port: Int32,
dbname: String,
),
dl_api_key: String?,
https_only: Bool?,
2018-07-22 03:35:28 +00:00
hmac_key: String?,
2018-03-09 18:42:23 +00:00
})
end
2018-04-16 03:56:58 +00:00
class FilteredCompressHandler < Kemal::Handler
exclude ["/videoplayback"]
def call(env)
return call_next env if exclude_match? env
{% if flag?(:without_zlib) %}
call_next env
{% else %}
request_headers = env.request.headers
if request_headers.includes_word?("Accept-Encoding", "gzip")
env.response.headers["Content-Encoding"] = "gzip"
env.response.output = Gzip::Writer.new(env.response.output, sync_close: true)
elsif request_headers.includes_word?("Accept-Encoding", "deflate")
env.response.headers["Content-Encoding"] = "deflate"
env.response.output = Flate::Writer.new(env.response.output, sync_close: true)
end
call_next env
{% end %}
end
end
2018-01-28 02:09:27 +00:00
class Video
module HTTPParamConverter
def self.from_rs(rs)
HTTP::Params.parse(rs.read(String))
end
end
add_mapping({
2018-01-28 02:09:27 +00:00
id: String,
info: {
type: HTTP::Params,
default: HTTP::Params.parse(""),
converter: Video::HTTPParamConverter,
},
2018-07-26 20:09:05 +00:00
updated: Time,
title: String,
views: Int64,
likes: Int32,
dislikes: Int32,
wilson_score: Float64,
published: Time,
description: String,
language: String?,
author: String,
ucid: String,
allowed_regions: Array(String),
is_family_friendly: Bool,
genre: String,
2018-01-28 02:09:27 +00:00
})
end
2018-03-25 03:38:35 +00:00
class InvidiousChannel
add_mapping({
id: String,
2018-03-25 03:38:35 +00:00
author: String,
updated: Time,
})
end
class ChannelVideo
add_mapping({
id: String,
title: String,
published: Time,
updated: Time,
ucid: String,
author: String,
2018-03-25 03:38:35 +00:00
})
end
2018-03-30 02:41:05 +00:00
class User
2018-07-16 16:24:24 +00:00
module PreferencesConverter
def self.from_rs(rs)
begin
Preferences.from_json(rs.read(String))
rescue ex
DEFAULT_USER_PREFERENCES
end
2018-07-16 16:24:24 +00:00
end
end
2018-03-30 02:41:05 +00:00
add_mapping({
2018-04-01 00:09:27 +00:00
id: String,
updated: Time,
notifications: Array(String),
subscriptions: Array(String),
email: String,
2018-07-16 16:24:24 +00:00
preferences: {
type: Preferences,
default: DEFAULT_USER_PREFERENCES,
converter: PreferencesConverter,
},
2018-07-18 19:26:02 +00:00
password: String?,
2018-07-20 16:19:49 +00:00
token: String,
2018-07-16 16:24:24 +00:00
})
end
2018-07-26 17:09:29 +00:00
# TODO: Migrate preferences so this will not be nilable
2018-07-16 16:24:24 +00:00
class Preferences
JSON.mapping({
2018-07-26 17:09:29 +00:00
video_loop: Bool,
autoplay: Bool,
speed: Float32,
quality: String,
volume: Int32,
2018-07-28 14:49:58 +00:00
comments: {
type: String,
nilable: true,
default: "youtube",
},
dark_mode: Bool,
thin_mode: {
2018-07-26 17:09:29 +00:00
type: Bool,
nilable: true,
default: false,
},
2018-07-17 00:31:49 +00:00
max_results: Int32,
sort: String,
latest_only: Bool,
2018-03-30 02:41:05 +00:00
})
end
2018-04-21 23:04:01 +00:00
class RedditThing
2018-03-03 21:06:14 +00:00
JSON.mapping({
2018-04-21 23:04:01 +00:00
kind: String,
data: RedditComment | RedditLink | RedditMore | RedditListing,
2018-03-03 21:06:14 +00:00
})
end
2018-04-21 23:04:01 +00:00
class RedditComment
2018-03-03 21:06:14 +00:00
JSON.mapping({
2018-04-21 23:04:01 +00:00
author: String,
body_html: String,
replies: RedditThing | String,
score: Int32,
depth: Int32,
2018-03-03 21:06:14 +00:00
})
end
2018-04-21 23:04:01 +00:00
class RedditLink
2018-03-03 21:06:14 +00:00
JSON.mapping({
2018-04-21 23:04:01 +00:00
author: String,
score: Int32,
2018-03-03 21:06:14 +00:00
subreddit: String,
num_comments: Int32,
2018-04-21 23:04:01 +00:00
id: String,
2018-03-03 21:06:14 +00:00
permalink: String,
title: String,
})
end
2018-04-21 23:04:01 +00:00
class RedditMore
JSON.mapping({
children: Array(String),
count: Int32,
depth: Int32,
})
end
class RedditListing
JSON.mapping({
children: Array(RedditThing),
modhash: String,
})
end
2018-01-21 00:19:12 +00:00
# See http://www.evanmiller.org/how-not-to-sort-by-average-rating.html
def ci_lower_bound(pos, n)
if n == 0
2018-01-28 02:09:27 +00:00
return 0.0
2018-01-21 00:19:12 +00:00
end
# z value here represents a confidence level of 0.95
z = 1.96
phat = 1.0*pos/n
return (phat + z*z/(2*n) - z * Math.sqrt((phat*(1 - phat) + z*z/(4*n))/n))/(1 + z*z/n)
end
def elapsed_text(elapsed)
millis = elapsed.total_milliseconds
return "#{millis.round(2)}ms" if millis >= 1
"#{(millis * 1000).round(2)}µs"
end
2018-01-28 02:09:27 +00:00
def fetch_video(id, client)
2018-07-20 21:39:31 +00:00
info_channel = Channel(HTTP::Params).new
html_channel = Channel(XML::Node).new
2018-01-21 00:19:12 +00:00
2018-07-20 21:39:31 +00:00
spawn do
html = client.get("/watch?v=#{id}&bpctr=#{Time.new.epoch + 2000}&disable_polymer=1").body
html = XML.parse_html(html)
2018-01-21 00:19:12 +00:00
2018-07-20 21:39:31 +00:00
html_channel.send(html)
end
spawn do
info = client.get("/get_video_info?video_id=#{id}&el=detailpage&ps=default&eurl=&gl=US&hl=en&disable_polymer=1").body
2018-02-03 04:04:34 +00:00
info = HTTP::Params.parse(info)
2018-07-20 21:39:31 +00:00
2018-02-03 04:04:34 +00:00
if info["reason"]?
2018-07-20 21:39:31 +00:00
info = client.get("/get_video_info?video_id=#{id}&ps=default&eurl=&gl=US&hl=en&disable_polymer=1").body
info = HTTP::Params.parse(info)
2018-02-03 04:04:34 +00:00
end
2018-07-20 21:39:31 +00:00
info_channel.send(info)
2018-01-21 00:19:12 +00:00
end
2018-07-20 21:39:31 +00:00
html = html_channel.receive
info = info_channel.receive
2018-07-22 16:17:29 +00:00
if info["reson"]?
raise info["reason"]
end
2018-01-28 02:09:27 +00:00
title = info["title"]
views = info["view_count"].to_i64
2018-06-01 22:24:16 +00:00
author = info["author"]
ucid = info["ucid"]
2018-01-21 00:19:12 +00:00
2018-01-28 02:09:27 +00:00
likes = html.xpath_node(%q(//button[@title="I like this"]/span))
2018-03-14 23:06:21 +00:00
likes = likes.try &.content.delete(",").try &.to_i
likes ||= 0
2018-01-28 02:09:27 +00:00
dislikes = html.xpath_node(%q(//button[@title="I dislike this"]/span))
2018-03-14 23:06:21 +00:00
dislikes = dislikes.try &.content.delete(",").try &.to_i
dislikes ||= 0
2018-01-28 02:09:27 +00:00
2018-02-27 00:58:45 +00:00
description = html.xpath_node(%q(//p[@id="eow-description"]))
description = description ? description.to_xml : ""
2018-01-28 02:09:27 +00:00
wilson_score = ci_lower_bound(likes, likes + dislikes)
2018-07-23 18:48:43 +00:00
published = html.xpath_node(%q(//meta[@itemprop="datePublished"])).not_nil!["content"]
published = Time.parse(published, "%Y-%m-%d", Time::Location.local)
2018-02-03 03:44:10 +00:00
allowed_regions = html.xpath_node(%q(//meta[@itemprop="regionsAllowed"])).not_nil!["content"].split(",")
is_family_friendly = html.xpath_node(%q(//meta[@itemprop="isFamilyFriendly"])).not_nil!["content"] == "True"
genre = html.xpath_node(%q(//meta[@itemprop="genre"])).not_nil!["content"]
video = Video.new(id, info, Time.now, title, views, likes, dislikes, wilson_score, published, description, nil, author, ucid, allowed_regions, is_family_friendly, genre)
2018-01-21 00:19:12 +00:00
return video
end
2018-01-28 02:09:27 +00:00
def get_video(id, client, db, refresh = true)
if db.query_one?("SELECT EXISTS (SELECT true FROM videos WHERE id = $1)", id, as: Bool)
video = db.query_one("SELECT * FROM videos WHERE id = $1", id, as: Video)
2018-01-21 00:19:12 +00:00
2018-01-28 02:09:27 +00:00
# If record was last updated over an hour ago, refresh (expire param in response lasts for 6 hours)
2018-03-30 00:21:44 +00:00
if refresh && Time.now - video.updated > 1.hour
begin
2018-03-31 14:51:44 +00:00
video = fetch_video(id, client)
2018-03-30 00:03:00 +00:00
video_array = video.to_a
args = arg_array(video_array[1..-1], 2)
2018-07-26 19:49:06 +00:00
db.exec("UPDATE videos SET (info,updated,title,views,likes,dislikes,wilson_score,\
published,description,language,author,ucid, allowed_regions, is_family_friendly, genre)\
2018-03-30 00:03:00 +00:00
= (#{args}) WHERE id = $1", video_array)
rescue ex
db.exec("DELETE FROM videos * WHERE id = $1", id)
2018-03-31 14:51:44 +00:00
end
2018-01-21 00:19:12 +00:00
end
else
2018-01-28 02:09:27 +00:00
video = fetch_video(id, client)
2018-07-26 19:49:06 +00:00
video_array = video.to_a
2018-07-09 18:00:15 +00:00
args = arg_array(video_array)
db.exec("INSERT INTO videos VALUES (#{args}) ON CONFLICT (id) DO NOTHING", video_array)
2018-01-21 00:19:12 +00:00
end
return video
end
2018-01-21 23:49:27 +00:00
2018-07-26 13:41:23 +00:00
def search(query, client, &block)
html = client.get("/results?q=#{query}&sp=EgIQAVAU&disable_polymer=1").body
2018-01-21 23:49:27 +00:00
html = XML.parse_html(html)
html.xpath_nodes(%q(//ol[@class="item-section"]/li)).each do |item|
root = item.xpath_node(%q(div[contains(@class,"yt-lockup-video")]/div))
if root
link = root.xpath_node(%q(div[contains(@class,"yt-lockup-thumbnail")]/a/@href))
if link
yield link.content.split("=")[1]
end
end
end
end
def splice(a, b)
c = a[0]
a[0] = a[b % a.size]
a[b % a.size] = c
return a
end
def decrypt_signature(a, code)
a = a.split("")
2018-06-01 22:26:00 +00:00
code.each do |item|
case item[:name]
when "a"
a.reverse!
when "b"
a.delete_at(0..(item[:value] - 1))
when "c"
a = splice(a, item[:value])
end
end
return a.join("")
end
def update_decrypt_function(client)
# Video with signature
document = client.get("/watch?v=CvFH_6DNRCY").body
url = document.match(/src="(?<url>\/yts\/jsbin\/player-.{9}\/en_US\/base.js)"/).not_nil!["url"]
player = client.get(url).body
function_name = player.match(/\(b\|\|\(b="signature"\),d.set\(b,(?<name>[a-zA-Z0-9]{2})\(c\)\)\)/).not_nil!["name"]
function_body = player.match(/#{function_name}=function\(a\){(?<body>[^}]+)}/).not_nil!["body"]
function_body = function_body.split(";")[1..-2]
var_name = function_body[0][0, 2]
operations = {} of String => String
matches = player.delete("\n").match(/var #{var_name}={(?<op1>[a-zA-Z0-9]{2}:[^}]+}),(?<op2>[a-zA-Z0-9]{2}:[^}]+}),(?<op3>[a-zA-Z0-9]{2}:[^}]+})};/).not_nil!
3.times do |i|
operation = matches["op#{i + 1}"]
op_name = operation[0, 2]
op_body = operation.match(/\{[^}]+\}/).not_nil![0]
case op_body
when "{a.reverse()}"
operations[op_name] = "a"
when "{a.splice(0,b)}"
operations[op_name] = "b"
else
operations[op_name] = "c"
end
end
decrypt_function = [] of {name: String, value: Int32}
function_body.each do |function|
function = function.lchop(var_name + ".")
op_name = function[0, 2]
function = function.lchop(op_name + "(a,")
value = function.rchop(")").to_i
decrypt_function << {name: operations[op_name], value: value}
end
return decrypt_function
end
2018-04-28 14:22:06 +00:00
def rank_videos(db, n, filter, url)
2018-02-05 23:56:40 +00:00
top = [] of {Float64, String}
2018-03-17 04:57:31 +00:00
db.query("SELECT id, wilson_score, published FROM videos WHERE views > 5000 ORDER BY published DESC LIMIT 1000") do |rs|
2018-02-05 23:56:40 +00:00
rs.each do
id = rs.read(String)
wilson_score = rs.read(Float64)
published = rs.read(Time)
# Exponential decay, older videos tend to rank lower
2018-02-10 16:06:37 +00:00
temperature = wilson_score * Math.exp(-0.000005*((Time.now - published).total_minutes))
2018-02-05 23:56:40 +00:00
top << {temperature, id}
end
end
top.sort!
# Make hottest come first
top.reverse!
top = top.map { |a, b| b }
2018-03-17 00:36:49 +00:00
if filter
language_list = [] of String
top.each do |id|
if language_list.size == n
break
else
2018-04-28 14:22:06 +00:00
client = make_client(url)
2018-03-19 17:35:35 +00:00
begin
video = get_video(id, client, db)
rescue ex
next
end
2018-03-17 00:45:37 +00:00
if video.language
language = video.language
else
description = XML.parse(video.description)
content = [video.title, description.content].join(" ")
2018-03-19 17:35:35 +00:00
content = content[0, 10000]
2018-03-17 00:36:49 +00:00
2018-03-17 00:45:37 +00:00
results = DetectLanguage.detect(content)
language = results[0].language
2018-03-17 00:36:49 +00:00
2018-03-17 00:45:37 +00:00
db.exec("UPDATE videos SET language = $1 WHERE id = $2", language, id)
end
if language == "en"
2018-03-17 00:36:49 +00:00
language_list << id
end
end
end
return language_list
else
return top[0..n - 1]
end
2018-02-05 23:56:40 +00:00
end
2018-02-06 01:07:49 +00:00
2018-03-05 04:25:03 +00:00
def make_client(url)
context = OpenSSL::SSL::Context::Client.new
context.add_options(
OpenSSL::SSL::Options::ALL |
OpenSSL::SSL::Options::NO_SSL_V2 |
OpenSSL::SSL::Options::NO_SSL_V3
)
2018-02-27 00:59:02 +00:00
client = HTTP::Client.new(url, context)
client.read_timeout = 10.seconds
client.connect_timeout = 10.seconds
2018-02-06 01:07:49 +00:00
return client
end
2018-03-03 21:06:14 +00:00
def get_reddit_comments(id, client, headers)
query = "(url:3D#{id}%20OR%20url:#{id})%20(site:youtube.com%20OR%20site:youtu.be)"
search_results = client.get("/search.json?q=#{query}", headers)
2018-03-09 16:55:14 +00:00
if search_results.status_code == 200
2018-04-21 23:04:01 +00:00
search_results = RedditThing.from_json(search_results.body)
thread = search_results.data.as(RedditListing).children.sort_by { |child| child.data.as(RedditLink).score }[-1]
thread = thread.data.as(RedditLink)
2018-03-09 16:55:14 +00:00
2018-04-21 23:04:01 +00:00
result = client.get("/r/#{thread.subreddit}/comments/#{thread.id}?limit=100&sort=top", headers).body
result = Array(RedditThing).from_json(result)
elsif search_results.status_code == 302
2018-04-21 23:04:01 +00:00
result = client.get(search_results.headers["Location"], headers).body
result = Array(RedditThing).from_json(result)
2018-04-21 23:04:01 +00:00
thread = result[0].data.as(RedditListing).children[0].data.as(RedditLink)
else
raise "Got error code #{search_results.status_code}"
2018-03-04 01:10:25 +00:00
end
2018-04-21 23:04:01 +00:00
comments = result[1].data.as(RedditListing).children
2018-03-04 01:10:25 +00:00
return comments, thread
2018-03-03 21:06:14 +00:00
end
2018-07-28 14:49:58 +00:00
def template_youtube_comments(comments)
html = ""
root = comments["comments"].as_a
root.each do |child|
if child["replies"]?
replies_html = <<-END_HTML
<div id="replies" class="pure-g">
<div class="pure-u-md-1-24"></div>
<div class="pure-u-md-23-24">
<p>
<a href="javascript:void(0)" data-continuation="#{child["replies"]["continuation"]}"
onclick="load_comments(this)">View #{child["replies"]["replyCount"]} replies</a>
</p>
</div>
END_HTML
end
html += <<-END_HTML
<div class="pure-g">
<div class="pure-u-1">
<p>
<a href="javascript:void(0)" onclick="toggle(this)">[ - ]</a> #{child["likeCount"]} <b>#{child["author"]}</b>
</p>
<div>
#{child["content"]}
#{replies_html}
</div>
</div>
</div>
END_HTML
end
if comments["continuation"]?
html += <<-END_HTML
<div class="pure-g">
<div class="pure-u-1">
<p>
<a href="javascript:void(0)" data-continuation="#{comments["continuation"]}"
onclick="load_comments(this)">Load more</a>
</p>
</div>
</div>
END_HTML
end
return html
end
def template_reddit_comments(root)
2018-03-03 21:06:14 +00:00
html = ""
root.each do |child|
2018-04-21 23:04:01 +00:00
if child.data.is_a?(RedditComment)
child = child.data.as(RedditComment)
author = child.author
score = child.score
body_html = HTML.unescape(child.body_html)
2018-03-03 21:06:14 +00:00
replies_html = ""
2018-04-21 23:04:01 +00:00
if child.replies.is_a?(RedditThing)
replies = child.replies.as(RedditThing)
2018-07-28 14:49:58 +00:00
replies_html = template_reddit_comments(replies.data.as(RedditListing).children)
2018-03-03 21:06:14 +00:00
end
content = <<-END_HTML
<p>
<a href="javascript:void(0)" onclick="toggle(this)">[ - ]</a> #{score} <b>#{author}</b>
2018-03-03 21:06:14 +00:00
</p>
<div>
#{body_html}
2018-03-03 21:06:14 +00:00
#{replies_html}
</div>
2018-03-03 21:06:14 +00:00
END_HTML
2018-04-21 23:04:01 +00:00
if child.depth > 0
2018-03-03 21:06:14 +00:00
html += <<-END_HTML
<div class="pure-g">
<div class="pure-u-1-24">
</div>
2018-03-03 21:06:14 +00:00
<div class="pure-u-23-24">
#{content}
</div>
</div>
END_HTML
else
html += <<-END_HTML
<div class="pure-g">
<div class="pure-u-1">
#{content}
</div>
</div>
END_HTML
end
end
end
return html
end
def number_with_separator(number)
number.to_s.reverse.gsub(/(\d{3})(?=\d)/, "\\1,").reverse
end
2018-03-04 14:54:19 +00:00
2018-03-30 00:03:00 +00:00
def arg_array(array, start = 1)
2018-04-01 14:46:13 +00:00
if array.size == 0
args = "NULL"
else
args = [] of String
(start..array.size + start - 1).each { |i| args << "($#{i})" }
args = args.join(",")
end
2018-03-04 14:54:19 +00:00
return args
end
2018-03-07 04:00:35 +00:00
def add_alt_links(html)
alt_links = [] of {Int32, String}
# This is painful but is likely the only way to accomplish this in Crystal,
# as Crystigiri and others are not able to insert XML Nodes into a document.
# The goal here is to use as little regex as possible
html.scan(/<a[^>]*>([^<]+)<\/a>/) do |match|
anchor = XML.parse_html(match[0])
anchor = anchor.xpath_node("//a").not_nil!
url = URI.parse(HTML.unescape(anchor["href"]))
if ["www.youtube.com", "m.youtube.com"].includes?(url.host)
2018-03-07 04:00:35 +00:00
alt_link = <<-END_HTML
<a href="#{url.full_path}">
2018-03-07 04:00:35 +00:00
<i class="fa fa-link" aria-hidden="true"></i>
</a>
END_HTML
2018-03-09 20:06:35 +00:00
elsif url.host == "youtu.be"
alt_link = <<-END_HTML
2018-05-08 01:50:55 +00:00
<a href="/watch?v=#{url.path.try &.lchop("/")}&#{url.query}">
2018-03-09 20:06:35 +00:00
<i class="fa fa-link" aria-hidden="true"></i>
</a>
END_HTML
else
alt_link = ""
2018-03-07 04:00:35 +00:00
end
2018-03-09 20:06:35 +00:00
alt_links << {match.end.not_nil!, alt_link}
2018-03-07 04:00:35 +00:00
end
alt_links.reverse!
alt_links.each do |position, alt_link|
html = html.insert(position, alt_link)
end
return html
end
def fill_links(html, scheme, host)
html = XML.parse_html(html)
html.xpath_nodes("//a").each do |match|
url = URI.parse(match["href"])
2018-03-26 03:21:24 +00:00
# Reddit links don't have host
if !url.host && !match["href"].starts_with?("javascript")
2018-03-07 04:00:35 +00:00
url.scheme = scheme
url.host = host
match["href"] = url
end
end
html = html.to_xml
end
2018-03-16 16:40:29 +00:00
def login_req(login_form, f_req)
data = {
"pstMsg" => "1",
"checkConnection" => "youtube",
"checkedDomains" => "youtube",
"hl" => "en",
"deviceinfo" => %q([null,null,null,[],null,"US",null,null,[],"GlifWebSignIn",null,[null,null,[]]]),
"f.req" => f_req,
"flowName" => "GlifWebSignIn",
"flowEntry" => "ServiceLogin",
}
2018-04-28 14:27:05 +00:00
data = login_form.merge(data)
2018-03-16 16:40:29 +00:00
return HTTP::Params.encode(data)
end
2018-03-25 03:38:35 +00:00
2018-07-05 23:17:27 +00:00
def get_channel(id, client, db, refresh = true, pull_all_videos = true)
2018-03-25 03:38:35 +00:00
if db.query_one?("SELECT EXISTS (SELECT true FROM channels WHERE id = $1)", id, as: Bool)
channel = db.query_one("SELECT * FROM channels WHERE id = $1", id, as: InvidiousChannel)
2018-06-06 18:21:53 +00:00
if refresh && Time.now - channel.updated > 10.minutes
2018-07-05 23:17:27 +00:00
channel = fetch_channel(id, client, db, pull_all_videos)
channel_array = channel.to_a
2018-03-26 03:18:29 +00:00
args = arg_array(channel_array)
db.exec("INSERT INTO channels VALUES (#{args}) \
2018-03-29 23:50:24 +00:00
ON CONFLICT (id) DO UPDATE SET updated = $3", channel_array)
2018-03-25 03:38:35 +00:00
end
else
2018-07-05 23:17:27 +00:00
channel = fetch_channel(id, client, db, pull_all_videos)
2018-03-25 03:38:35 +00:00
args = arg_array(channel.to_a)
db.exec("INSERT INTO channels VALUES (#{args})", channel.to_a)
end
return channel
end
2018-07-05 23:17:27 +00:00
def fetch_channel(ucid, client, db, pull_all_videos = true)
2018-06-03 02:53:11 +00:00
rss = client.get("/feeds/videos.xml?channel_id=#{ucid}").body
2018-03-25 03:38:35 +00:00
rss = XML.parse_html(rss)
2018-06-06 18:21:53 +00:00
author = rss.xpath_node(%q(//feed/title))
if !author
raise "Deleted or invalid channel"
end
author = author.content
2018-07-05 23:17:27 +00:00
if !pull_all_videos
2018-06-06 18:21:53 +00:00
rss.xpath_nodes("//feed/entry").each do |entry|
video_id = entry.xpath_node("videoid").not_nil!.content
title = entry.xpath_node("title").not_nil!.content
published = Time.parse(entry.xpath_node("published").not_nil!.content, "%FT%X%z", Time::Location.local)
updated = Time.parse(entry.xpath_node("updated").not_nil!.content, "%FT%X%z", Time::Location.local)
2018-06-06 18:21:53 +00:00
author = entry.xpath_node("author/name").not_nil!.content
ucid = entry.xpath_node("channelid").not_nil!.content
2018-06-06 18:21:53 +00:00
video = ChannelVideo.new(video_id, title, published, Time.now, ucid, author)
2018-06-06 18:21:53 +00:00
db.exec("UPDATE users SET notifications = notifications || $1 \
WHERE updated < $2 AND $3 = ANY(subscriptions) AND $1 <> ALL(notifications)", video.id, video.published, ucid)
2018-04-01 00:09:27 +00:00
2018-06-06 18:21:53 +00:00
video_array = video.to_a
args = arg_array(video_array)
2018-07-09 18:00:15 +00:00
db.exec("INSERT INTO channel_videos VALUES (#{args}) \
ON CONFLICT (id) DO UPDATE SET title = $2, published = $3, \
updated = $4, ucid = $5, author = $6", video_array)
2018-06-06 18:21:53 +00:00
end
else
videos = [] of ChannelVideo
page = 1
loop do
url = produce_videos_url(ucid, page)
response = client.get(url)
json = JSON.parse(response.body)
content_html = json["content_html"].as_s
if content_html.empty?
# If we don't get anything, move on
break
end
document = XML.parse_html(content_html)
2018-07-28 12:50:22 +00:00
document.xpath_nodes(%q(//li[contains(@class, "feed-item-container")])).each do |item|
anchor = item.xpath_node(%q(.//h3[contains(@class,"yt-lockup-title")]/a))
2018-06-06 18:21:53 +00:00
if !anchor
raise "could not find anchor"
end
2018-07-28 12:50:22 +00:00
2018-06-06 18:21:53 +00:00
title = anchor.content.strip
video_id = anchor["href"].lchop("/watch?v=")
2018-07-28 12:50:22 +00:00
published = item.xpath_node(%q(.//div[@class="yt-lockup-meta"]/ul/li[1]))
2018-06-06 18:21:53 +00:00
if !published
# This happens on Youtube red videos, here we just skip them
next
end
2018-07-28 12:50:22 +00:00
published = published.content
published = decode_date(published)
2018-06-06 18:21:53 +00:00
videos << ChannelVideo.new(video_id, title, published, Time.now, ucid, author)
end
if document.xpath_nodes(%q(//li[contains(@class, "channels-content-item")])).size < 30
break
end
page += 1
end
video_ids = [] of String
2018-06-06 18:21:53 +00:00
videos.each do |video|
db.exec("UPDATE users SET notifications = notifications || $1 \
WHERE updated < $2 AND $3 = ANY(subscriptions) AND $1 <> ALL(notifications)", video.id, video.published, ucid)
video_ids << video.id
2018-06-06 18:21:53 +00:00
video_array = video.to_a
args = arg_array(video_array)
2018-07-05 23:17:27 +00:00
db.exec("INSERT INTO channel_videos VALUES (#{args}) ON CONFLICT (id) DO NOTHING", video_array)
2018-06-06 18:21:53 +00:00
end
# When a video is deleted from a channel, we find and remove it here
db.exec("DELETE FROM channel_videos * WHERE NOT id = ANY ('{#{video_ids.map { |a| %("#{a}") }.join(",")}}') AND ucid = $1", ucid)
2018-06-06 18:21:53 +00:00
end
2018-03-25 03:38:35 +00:00
2018-06-03 02:53:11 +00:00
channel = InvidiousChannel.new(ucid, author, Time.now)
2018-03-25 03:38:35 +00:00
return channel
end
2018-03-30 02:41:05 +00:00
2018-07-16 16:24:24 +00:00
def get_user(sid, client, headers, db, refresh = true)
2018-03-30 02:41:05 +00:00
if db.query_one?("SELECT EXISTS (SELECT true FROM users WHERE id = $1)", sid, as: Bool)
user = db.query_one("SELECT * FROM users WHERE id = $1", sid, as: User)
2018-07-16 16:24:24 +00:00
if refresh && Time.now - user.updated > 1.minute
2018-06-06 18:21:53 +00:00
user = fetch_user(sid, client, headers, db)
2018-03-30 02:41:05 +00:00
user_array = user.to_a
2018-07-18 20:40:50 +00:00
user_array[5] = user_array[5].to_json
2018-03-30 02:41:05 +00:00
args = arg_array(user_array)
2018-03-31 14:51:44 +00:00
2018-03-30 02:41:05 +00:00
db.exec("INSERT INTO users VALUES (#{args}) \
ON CONFLICT (email) DO UPDATE SET id = $1, updated = $2, subscriptions = $4", user_array)
2018-03-30 02:41:05 +00:00
end
else
2018-06-06 18:21:53 +00:00
user = fetch_user(sid, client, headers, db)
2018-03-31 15:30:17 +00:00
user_array = user.to_a
2018-07-18 20:49:01 +00:00
user_array[5] = user_array[5].to_json
2018-03-30 02:41:05 +00:00
args = arg_array(user.to_a)
2018-03-31 15:30:17 +00:00
db.exec("INSERT INTO users VALUES (#{args}) \
ON CONFLICT (email) DO UPDATE SET id = $1, updated = $2, subscriptions = $4", user_array)
2018-03-30 02:41:05 +00:00
end
return user
end
2018-06-06 18:21:53 +00:00
def fetch_user(sid, client, headers, db)
2018-04-29 14:40:33 +00:00
feed = client.get("/subscription_manager?disable_polymer=1", headers)
feed = XML.parse_html(feed.body)
2018-03-30 02:41:05 +00:00
channels = [] of String
2018-05-04 01:37:17 +00:00
feed.xpath_nodes(%q(//ul[@id="guide-channels"]/li/a)).each do |channel|
if !["Popular on YouTube", "Music", "Sports", "Gaming"].includes? channel["title"]
channel_id = channel["href"].lstrip("/channel/")
2018-03-31 15:30:17 +00:00
2018-06-06 18:21:53 +00:00
begin
channel = get_channel(channel_id, client, db, false, false)
channels << channel.id
rescue ex
next
end
2018-05-04 01:37:17 +00:00
end
2018-03-31 15:30:17 +00:00
end
email = feed.xpath_node(%q(//a[@class="yt-masthead-picker-header yt-masthead-picker-active-account"]))
if email
2018-04-10 04:15:01 +00:00
email = email.content.strip
2018-03-31 15:30:17 +00:00
else
email = ""
2018-03-30 02:41:05 +00:00
end
2018-07-20 16:19:49 +00:00
token = Base64.encode(Random::Secure.random_bytes(32))
user = User.new(sid, Time.now, [] of String, channels, email, DEFAULT_USER_PREFERENCES, nil, token)
2018-07-18 19:26:02 +00:00
return user
end
def create_user(sid, email, password)
password = Crypto::Bcrypt::Password.create(password, cost: 10)
2018-07-20 16:19:49 +00:00
token = Base64.encode(Random::Secure.random_bytes(32))
user = User.new(sid, Time.now, [] of String, [] of String, email, DEFAULT_USER_PREFERENCES, password.to_s, token)
2018-07-18 19:26:02 +00:00
2018-03-30 02:41:05 +00:00
return user
end
def decode_time(string)
time = string.try &.to_f?
if !time
hours = /(?<hours>\d+)h/.match(string).try &.["hours"].try &.to_i
hours ||= 0
2018-07-18 20:17:02 +00:00
minutes = /(?<minutes>\d+)m(?!s)/.match(string).try &.["minutes"].try &.to_i
minutes ||= 0
seconds = /(?<seconds>\d+)s/.match(string).try &.["seconds"].try &.to_i
seconds ||= 0
millis = /(?<millis>\d+)ms/.match(string).try &.["millis"].try &.to_i
millis ||= 0
time = hours * 3600 + minutes * 60 + seconds + millis / 1000
end
return time
end
2018-06-03 00:52:58 +00:00
2018-07-28 12:50:22 +00:00
def decode_date(date : String)
# Time matches format "20 hours ago", "40 minutes ago"...
delta = date.split(" ")[0].to_i
case date
when .includes? "minute"
delta = delta.minutes
when .includes? "hour"
delta = delta.hours
when .includes? "day"
delta = delta.days
when .includes? "week"
delta = delta.weeks
when .includes? "month"
delta = delta.months
when .includes? "year"
delta = delta.years
else
raise "Could not parse #{date}"
end
return Time.now - delta
end
2018-06-03 00:52:58 +00:00
def produce_playlist_url(ucid, index)
2018-06-06 18:21:53 +00:00
ucid = ucid.lchop("UC")
2018-06-03 00:52:58 +00:00
ucid = "VLUU" + ucid
continuation = write_var_int(index)
continuation.unshift(0x08_u8)
slice = continuation.to_unsafe.to_slice(continuation.size)
continuation = Base64.urlsafe_encode(slice, false)
continuation = "PT:" + continuation
continuation = continuation.bytes
continuation.unshift(0x7a_u8, continuation.size.to_u8)
slice = continuation.to_unsafe.to_slice(continuation.size)
continuation = Base64.urlsafe_encode(slice)
continuation = URI.escape(continuation)
continuation = continuation.bytes
continuation.unshift(continuation.size.to_u8)
continuation.unshift(ucid.size.to_u8)
continuation = ucid.bytes + continuation
continuation.unshift(0x12.to_u8, ucid.size.to_u8)
continuation.unshift(0xe2_u8, 0xa9_u8, 0x85_u8, 0xb2_u8, 2_u8, continuation.size.to_u8)
slice = continuation.to_unsafe.to_slice(continuation.size)
continuation = Base64.urlsafe_encode(slice)
continuation = URI.escape(continuation)
url = "/browse_ajax?action_continuation=1&continuation=#{continuation}"
return url
end
2018-06-06 18:21:53 +00:00
def produce_videos_url(ucid, page)
page = "#{page}"
2018-07-28 12:50:22 +00:00
meta = "\x12\x06videos \x00\x30\x02\x38\x01\x60\x01\x6a\x00\x7a"
2018-06-06 18:21:53 +00:00
meta += page.size.to_u8.unsafe_chr
meta += page
meta += "\xb8\x01\x00"
meta = Base64.urlsafe_encode(meta)
meta = URI.escape(meta)
continuation = "\x12"
continuation += ucid.size.to_u8.unsafe_chr
continuation += ucid
continuation += "\x1a"
continuation += meta.size.to_u8.unsafe_chr
continuation += meta
continuation = continuation.size.to_u8.unsafe_chr + continuation
continuation = "\xe2\xa9\x85\xb2\x02" + continuation
continuation = Base64.urlsafe_encode(continuation)
continuation = URI.escape(continuation)
url = "/browse_ajax?continuation=#{continuation}"
return url
end
2018-06-03 00:52:58 +00:00
def read_var_int(bytes)
numRead = 0
result = 0
read = bytes[numRead]
if bytes.size == 1
result = bytes[0].to_i32
else
while ((read & 0b10000000) != 0)
read = bytes[numRead].to_u64
value = (read & 0b01111111)
result |= (value << (7 * numRead))
numRead += 1
if numRead > 5
raise "VarInt is too big"
end
end
end
return result
end
def write_var_int(value : Int)
bytes = [] of UInt8
value = value.to_u32
if value == 0
bytes = [0_u8]
else
while value != 0
temp = (value & 0b01111111).to_u8
value = value >> 7
if value != 0
temp |= 0b10000000
end
bytes << temp
end
end
return bytes
end
2018-07-18 19:26:02 +00:00
def generate_captcha(key)
minute = Random::Secure.rand(12)
minute_angle = minute * 30
minute = minute * 5
hour = Random::Secure.rand(12)
hour_angle = hour * 30 + minute_angle.to_f / 12
if hour == 0
hour = 12
end
clock_svg = <<-END_SVG
<svg viewBox="0 0 100 100" width="200px">
<circle cx="50" cy="50" r="45" fill="#eee" stroke="black" stroke-width="2"></circle>
2018-07-26 03:25:14 +00:00
<text x="69" y="20.091" text-anchor="middle" fill="black" font-family="Arial" font-size="10px"> 1</text>
<text x="82.909" y="34" text-anchor="middle" fill="black" font-family="Arial" font-size="10px"> 2</text>
<text x="88" y="53" text-anchor="middle" fill="black" font-family="Arial" font-size="10px"> 3</text>
<text x="82.909" y="72" text-anchor="middle" fill="black" font-family="Arial" font-size="10px"> 4</text>
<text x="69" y="85.909" text-anchor="middle" fill="black" font-family="Arial" font-size="10px"> 5</text>
<text x="50" y="91" text-anchor="middle" fill="black" font-family="Arial" font-size="10px"> 6</text>
<text x="31" y="85.909" text-anchor="middle" fill="black" font-family="Arial" font-size="10px"> 7</text>
<text x="17.091" y="72" text-anchor="middle" fill="black" font-family="Arial" font-size="10px"> 8</text>
<text x="12" y="53" text-anchor="middle" fill="black" font-family="Arial" font-size="10px"> 9</text>
<text x="17.091" y="34" text-anchor="middle" fill="black" font-family="Arial" font-size="10px">10</text>
<text x="31" y="20.091" text-anchor="middle" fill="black" font-family="Arial" font-size="10px">11</text>
<text x="50" y="15" text-anchor="middle" fill="black" font-family="Arial" font-size="10px">12</text>
2018-07-18 19:26:02 +00:00
<circle cx="50" cy="50" r="3" fill="black"></circle>
<line id="minute" transform="rotate(#{minute_angle}, 50, 50)" x1="50" y1="50" x2="50" y2="16" fill="black" stroke="black" stroke-width="2"></line>
<line id="hour" transform="rotate(#{hour_angle}, 50, 50)" x1="50" y1="50" x2="50" y2="24" fill="black" stroke="black" stroke-width="2"></line>
</svg>
END_SVG
challenge = ""
convert = Process.run(%(convert -density 1200 -resize 400x400 -background none svg:- png:-), shell: true, input: IO::Memory.new(clock_svg), output: Process::Redirect::Pipe) do |proc|
challenge = proc.output.gets_to_end
2018-07-25 02:26:19 +00:00
challenge = Base64.strict_encode(challenge)
challenge = "data:image/png;base64,#{challenge}"
2018-07-18 19:26:02 +00:00
end
answer = "#{hour}:#{minute.to_s.rjust(2, '0')}"
token = OpenSSL::HMAC.digest(:sha256, key, answer)
token = Base64.encode(token)
return {challenge: challenge, token: token}
end
2018-07-23 20:09:11 +00:00
def itag_to_metadata(itag : String)
# See https://github.com/rg3/youtube-dl/blob/master/youtube_dl/extractor/youtube.py#L380-#L476
formats = {"5" => {"ext" => "flv", "width" => 400, "height" => 240, "acodec" => "mp3", "abr" => 64, "vcodec" => "h263"},
"6" => {"ext" => "flv", "width" => 450, "height" => 270, "acodec" => "mp3", "abr" => 64, "vcodec" => "h263"},
"13" => {"ext" => "3gp", "acodec" => "aac", "vcodec" => "mp4v"},
"17" => {"ext" => "3gp", "width" => 176, "height" => 144, "acodec" => "aac", "abr" => 24, "vcodec" => "mp4v"},
"18" => {"ext" => "mp4", "width" => 640, "height" => 360, "acodec" => "aac", "abr" => 96, "vcodec" => "h264"},
"22" => {"ext" => "mp4", "width" => 1280, "height" => 720, "acodec" => "aac", "abr" => 192, "vcodec" => "h264"},
"34" => {"ext" => "flv", "width" => 640, "height" => 360, "acodec" => "aac", "abr" => 128, "vcodec" => "h264"},
"35" => {"ext" => "flv", "width" => 854, "height" => 480, "acodec" => "aac", "abr" => 128, "vcodec" => "h264"},
"36" => {"ext" => "3gp", "width" => 320, "acodec" => "aac", "vcodec" => "mp4v"},
"37" => {"ext" => "mp4", "width" => 1920, "height" => 1080, "acodec" => "aac", "abr" => 192, "vcodec" => "h264"},
"38" => {"ext" => "mp4", "width" => 4096, "height" => 3072, "acodec" => "aac", "abr" => 192, "vcodec" => "h264"},
"43" => {"ext" => "webm", "width" => 640, "height" => 360, "acodec" => "vorbis", "abr" => 128, "vcodec" => "vp8"},
"44" => {"ext" => "webm", "width" => 854, "height" => 480, "acodec" => "vorbis", "abr" => 128, "vcodec" => "vp8"},
"45" => {"ext" => "webm", "width" => 1280, "height" => 720, "acodec" => "vorbis", "abr" => 192, "vcodec" => "vp8"},
"46" => {"ext" => "webm", "width" => 1920, "height" => 1080, "acodec" => "vorbis", "abr" => 192, "vcodec" => "vp8"},
"59" => {"ext" => "mp4", "width" => 854, "height" => 480, "acodec" => "aac", "abr" => 128, "vcodec" => "h264"},
"78" => {"ext" => "mp4", "width" => 854, "height" => 480, "acodec" => "aac", "abr" => 128, "vcodec" => "h264"},
# 3D videos
"82" => {"ext" => "mp4", "height" => 360, "format" => "3D", "acodec" => "aac", "abr" => 128, "vcodec" => "h264"},
"83" => {"ext" => "mp4", "height" => 480, "format" => "3D", "acodec" => "aac", "abr" => 128, "vcodec" => "h264"},
"84" => {"ext" => "mp4", "height" => 720, "format" => "3D", "acodec" => "aac", "abr" => 192, "vcodec" => "h264"},
"85" => {"ext" => "mp4", "height" => 1080, "format" => "3D", "acodec" => "aac", "abr" => 192, "vcodec" => "h264"},
"100" => {"ext" => "webm", "height" => 360, "format" => "3D", "acodec" => "vorbis", "abr" => 128, "vcodec" => "vp8"},
"101" => {"ext" => "webm", "height" => 480, "format" => "3D", "acodec" => "vorbis", "abr" => 192, "vcodec" => "vp8"},
"102" => {"ext" => "webm", "height" => 720, "format" => "3D", "acodec" => "vorbis", "abr" => 192, "vcodec" => "vp8"},
# Apple HTTP Live Streaming
"91" => {"ext" => "mp4", "height" => 144, "format" => "HLS", "acodec" => "aac", "abr" => 48, "vcodec" => "h264"},
"92" => {"ext" => "mp4", "height" => 240, "format" => "HLS", "acodec" => "aac", "abr" => 48, "vcodec" => "h264"},
"93" => {"ext" => "mp4", "height" => 360, "format" => "HLS", "acodec" => "aac", "abr" => 128, "vcodec" => "h264"},
"94" => {"ext" => "mp4", "height" => 480, "format" => "HLS", "acodec" => "aac", "abr" => 128, "vcodec" => "h264"},
"95" => {"ext" => "mp4", "height" => 720, "format" => "HLS", "acodec" => "aac", "abr" => 256, "vcodec" => "h264"},
"96" => {"ext" => "mp4", "height" => 1080, "format" => "HLS", "acodec" => "aac", "abr" => 256, "vcodec" => "h264"},
"132" => {"ext" => "mp4", "height" => 240, "format" => "HLS", "acodec" => "aac", "abr" => 48, "vcodec" => "h264"},
"151" => {"ext" => "mp4", "height" => 72, "format" => "HLS", "acodec" => "aac", "abr" => 24, "vcodec" => "h264"},
# DASH mp4 video
"133" => {"ext" => "mp4", "height" => 240, "format" => "DASH video", "vcodec" => "h264"},
"134" => {"ext" => "mp4", "height" => 360, "format" => "DASH video", "vcodec" => "h264"},
"135" => {"ext" => "mp4", "height" => 480, "format" => "DASH video", "vcodec" => "h264"},
"136" => {"ext" => "mp4", "height" => 720, "format" => "DASH video", "vcodec" => "h264"},
"137" => {"ext" => "mp4", "height" => 1080, "format" => "DASH video", "vcodec" => "h264"},
"138" => {"ext" => "mp4", "format" => "DASH video", "vcodec" => "h264"}, # Height can vary (https=>//github.com/rg3/youtube-dl/issues/4559)
"160" => {"ext" => "mp4", "height" => 144, "format" => "DASH video", "vcodec" => "h264"},
"212" => {"ext" => "mp4", "height" => 480, "format" => "DASH video", "vcodec" => "h264"},
"264" => {"ext" => "mp4", "height" => 1440, "format" => "DASH video", "vcodec" => "h264"},
"298" => {"ext" => "mp4", "height" => 720, "format" => "DASH video", "vcodec" => "h264", "fps" => 60},
"299" => {"ext" => "mp4", "height" => 1080, "format" => "DASH video", "vcodec" => "h264", "fps" => 60},
"266" => {"ext" => "mp4", "height" => 2160, "format" => "DASH video", "vcodec" => "h264"},
# Dash mp4 audio
"139" => {"ext" => "m4a", "format" => "DASH audio", "acodec" => "aac", "abr" => 48, "container" => "m4a_dash"},
"140" => {"ext" => "m4a", "format" => "DASH audio", "acodec" => "aac", "abr" => 128, "container" => "m4a_dash"},
"141" => {"ext" => "m4a", "format" => "DASH audio", "acodec" => "aac", "abr" => 256, "container" => "m4a_dash"},
"256" => {"ext" => "m4a", "format" => "DASH audio", "acodec" => "aac", "container" => "m4a_dash"},
"258" => {"ext" => "m4a", "format" => "DASH audio", "acodec" => "aac", "container" => "m4a_dash"},
"325" => {"ext" => "m4a", "format" => "DASH audio", "acodec" => "dtse", "container" => "m4a_dash"},
"328" => {"ext" => "m4a", "format" => "DASH audio", "acodec" => "ec-3", "container" => "m4a_dash"},
# Dash webm
"167" => {"ext" => "webm", "height" => 360, "width" => 640, "format" => "DASH video", "container" => "webm", "vcodec" => "vp8"},
"168" => {"ext" => "webm", "height" => 480, "width" => 854, "format" => "DASH video", "container" => "webm", "vcodec" => "vp8"},
"169" => {"ext" => "webm", "height" => 720, "width" => 1280, "format" => "DASH video", "container" => "webm", "vcodec" => "vp8"},
"170" => {"ext" => "webm", "height" => 1080, "width" => 1920, "format" => "DASH video", "container" => "webm", "vcodec" => "vp8"},
"218" => {"ext" => "webm", "height" => 480, "width" => 854, "format" => "DASH video", "container" => "webm", "vcodec" => "vp8"},
"219" => {"ext" => "webm", "height" => 480, "width" => 854, "format" => "DASH video", "container" => "webm", "vcodec" => "vp8"},
"278" => {"ext" => "webm", "height" => 144, "format" => "DASH video", "container" => "webm", "vcodec" => "vp9"},
"242" => {"ext" => "webm", "height" => 240, "format" => "DASH video", "vcodec" => "vp9"},
"243" => {"ext" => "webm", "height" => 360, "format" => "DASH video", "vcodec" => "vp9"},
"244" => {"ext" => "webm", "height" => 480, "format" => "DASH video", "vcodec" => "vp9"},
"245" => {"ext" => "webm", "height" => 480, "format" => "DASH video", "vcodec" => "vp9"},
"246" => {"ext" => "webm", "height" => 480, "format" => "DASH video", "vcodec" => "vp9"},
"247" => {"ext" => "webm", "height" => 720, "format" => "DASH video", "vcodec" => "vp9"},
"248" => {"ext" => "webm", "height" => 1080, "format" => "DASH video", "vcodec" => "vp9"},
"271" => {"ext" => "webm", "height" => 1440, "format" => "DASH video", "vcodec" => "vp9"},
# itag 272 videos are either 3840x2160 (e.g. RtoitU2A-3E) or 7680x4320 (sLprVF6d7Ug)
"272" => {"ext" => "webm", "height" => 2160, "format" => "DASH video", "vcodec" => "vp9"},
"302" => {"ext" => "webm", "height" => 720, "format" => "DASH video", "vcodec" => "vp9", "fps" => 60},
"303" => {"ext" => "webm", "height" => 1080, "format" => "DASH video", "vcodec" => "vp9", "fps" => 60},
"308" => {"ext" => "webm", "height" => 1440, "format" => "DASH video", "vcodec" => "vp9", "fps" => 60},
"313" => {"ext" => "webm", "height" => 2160, "format" => "DASH video", "vcodec" => "vp9"},
"315" => {"ext" => "webm", "height" => 2160, "format" => "DASH video", "vcodec" => "vp9", "fps" => 60},
# Dash webm audio
"171" => {"ext" => "webm", "acodec" => "vorbis", "format" => "DASH audio", "abr" => 128},
"172" => {"ext" => "webm", "acodec" => "vorbis", "format" => "DASH audio", "abr" => 256},
# Dash webm audio with opus inside
"249" => {"ext" => "webm", "format" => "DASH audio", "acodec" => "opus", "abr" => 50},
"250" => {"ext" => "webm", "format" => "DASH audio", "acodec" => "opus", "abr" => 70},
"251" => {"ext" => "webm", "format" => "DASH audio", "acodec" => "opus", "abr" => 160},
}
return formats[itag]
end