mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Move 'Caption' and associated global/functions to a separate file
This commit is contained in:
parent
dbc800f35b
commit
2c33e5032e
4 changed files with 178 additions and 164 deletions
|
@ -7,7 +7,7 @@ module Invidious::Frontend::WatchPage
|
||||||
getter full_videos : Array(Hash(String, JSON::Any))
|
getter full_videos : Array(Hash(String, JSON::Any))
|
||||||
getter video_streams : Array(Hash(String, JSON::Any))
|
getter video_streams : Array(Hash(String, JSON::Any))
|
||||||
getter audio_streams : Array(Hash(String, JSON::Any))
|
getter audio_streams : Array(Hash(String, JSON::Any))
|
||||||
getter captions : Array(Caption)
|
getter captions : Array(Invidious::Videos::Caption)
|
||||||
|
|
||||||
def initialize(
|
def initialize(
|
||||||
@full_videos,
|
@full_videos,
|
||||||
|
|
|
@ -1,136 +1,3 @@
|
||||||
CAPTION_LANGUAGES = {
|
|
||||||
"",
|
|
||||||
"English",
|
|
||||||
"English (auto-generated)",
|
|
||||||
"English (United Kingdom)",
|
|
||||||
"English (United States)",
|
|
||||||
"Afrikaans",
|
|
||||||
"Albanian",
|
|
||||||
"Amharic",
|
|
||||||
"Arabic",
|
|
||||||
"Armenian",
|
|
||||||
"Azerbaijani",
|
|
||||||
"Bangla",
|
|
||||||
"Basque",
|
|
||||||
"Belarusian",
|
|
||||||
"Bosnian",
|
|
||||||
"Bulgarian",
|
|
||||||
"Burmese",
|
|
||||||
"Cantonese (Hong Kong)",
|
|
||||||
"Catalan",
|
|
||||||
"Cebuano",
|
|
||||||
"Chinese",
|
|
||||||
"Chinese (China)",
|
|
||||||
"Chinese (Hong Kong)",
|
|
||||||
"Chinese (Simplified)",
|
|
||||||
"Chinese (Taiwan)",
|
|
||||||
"Chinese (Traditional)",
|
|
||||||
"Corsican",
|
|
||||||
"Croatian",
|
|
||||||
"Czech",
|
|
||||||
"Danish",
|
|
||||||
"Dutch",
|
|
||||||
"Dutch (auto-generated)",
|
|
||||||
"Esperanto",
|
|
||||||
"Estonian",
|
|
||||||
"Filipino",
|
|
||||||
"Finnish",
|
|
||||||
"French",
|
|
||||||
"French (auto-generated)",
|
|
||||||
"Galician",
|
|
||||||
"Georgian",
|
|
||||||
"German",
|
|
||||||
"German (auto-generated)",
|
|
||||||
"Greek",
|
|
||||||
"Gujarati",
|
|
||||||
"Haitian Creole",
|
|
||||||
"Hausa",
|
|
||||||
"Hawaiian",
|
|
||||||
"Hebrew",
|
|
||||||
"Hindi",
|
|
||||||
"Hmong",
|
|
||||||
"Hungarian",
|
|
||||||
"Icelandic",
|
|
||||||
"Igbo",
|
|
||||||
"Indonesian",
|
|
||||||
"Indonesian (auto-generated)",
|
|
||||||
"Interlingue",
|
|
||||||
"Irish",
|
|
||||||
"Italian",
|
|
||||||
"Italian (auto-generated)",
|
|
||||||
"Japanese",
|
|
||||||
"Japanese (auto-generated)",
|
|
||||||
"Javanese",
|
|
||||||
"Kannada",
|
|
||||||
"Kazakh",
|
|
||||||
"Khmer",
|
|
||||||
"Korean",
|
|
||||||
"Korean (auto-generated)",
|
|
||||||
"Kurdish",
|
|
||||||
"Kyrgyz",
|
|
||||||
"Lao",
|
|
||||||
"Latin",
|
|
||||||
"Latvian",
|
|
||||||
"Lithuanian",
|
|
||||||
"Luxembourgish",
|
|
||||||
"Macedonian",
|
|
||||||
"Malagasy",
|
|
||||||
"Malay",
|
|
||||||
"Malayalam",
|
|
||||||
"Maltese",
|
|
||||||
"Maori",
|
|
||||||
"Marathi",
|
|
||||||
"Mongolian",
|
|
||||||
"Nepali",
|
|
||||||
"Norwegian Bokmål",
|
|
||||||
"Nyanja",
|
|
||||||
"Pashto",
|
|
||||||
"Persian",
|
|
||||||
"Polish",
|
|
||||||
"Portuguese",
|
|
||||||
"Portuguese (auto-generated)",
|
|
||||||
"Portuguese (Brazil)",
|
|
||||||
"Punjabi",
|
|
||||||
"Romanian",
|
|
||||||
"Russian",
|
|
||||||
"Russian (auto-generated)",
|
|
||||||
"Samoan",
|
|
||||||
"Scottish Gaelic",
|
|
||||||
"Serbian",
|
|
||||||
"Shona",
|
|
||||||
"Sindhi",
|
|
||||||
"Sinhala",
|
|
||||||
"Slovak",
|
|
||||||
"Slovenian",
|
|
||||||
"Somali",
|
|
||||||
"Southern Sotho",
|
|
||||||
"Spanish",
|
|
||||||
"Spanish (auto-generated)",
|
|
||||||
"Spanish (Latin America)",
|
|
||||||
"Spanish (Mexico)",
|
|
||||||
"Spanish (Spain)",
|
|
||||||
"Sundanese",
|
|
||||||
"Swahili",
|
|
||||||
"Swedish",
|
|
||||||
"Tajik",
|
|
||||||
"Tamil",
|
|
||||||
"Telugu",
|
|
||||||
"Thai",
|
|
||||||
"Turkish",
|
|
||||||
"Turkish (auto-generated)",
|
|
||||||
"Ukrainian",
|
|
||||||
"Urdu",
|
|
||||||
"Uzbek",
|
|
||||||
"Vietnamese",
|
|
||||||
"Vietnamese (auto-generated)",
|
|
||||||
"Welsh",
|
|
||||||
"Western Frisian",
|
|
||||||
"Xhosa",
|
|
||||||
"Yiddish",
|
|
||||||
"Yoruba",
|
|
||||||
"Zulu",
|
|
||||||
}
|
|
||||||
|
|
||||||
REGIONS = {"AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW"}
|
REGIONS = {"AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW"}
|
||||||
|
|
||||||
struct Video
|
struct Video
|
||||||
|
@ -143,7 +10,7 @@ struct Video
|
||||||
property updated : Time
|
property updated : Time
|
||||||
|
|
||||||
@[DB::Field(ignore: true)]
|
@[DB::Field(ignore: true)]
|
||||||
property captions : Array(Caption)?
|
property captions : Array(Invidious::Videos::Caption)?
|
||||||
|
|
||||||
@[DB::Field(ignore: true)]
|
@[DB::Field(ignore: true)]
|
||||||
property adaptive_fmts : Array(Hash(String, JSON::Any))?
|
property adaptive_fmts : Array(Hash(String, JSON::Any))?
|
||||||
|
@ -597,20 +464,14 @@ struct Video
|
||||||
keywords.includes? "YouTube Red"
|
keywords.includes? "YouTube Red"
|
||||||
end
|
end
|
||||||
|
|
||||||
def captions : Array(Caption)
|
def captions : Array(Invidious::Videos::Caption)
|
||||||
return @captions.as(Array(Caption)) if @captions
|
if @captions
|
||||||
captions = info["captions"]?.try &.["playerCaptionsTracklistRenderer"]?.try &.["captionTracks"]?.try &.as_a.map do |caption|
|
return @captions.as(Array(Invidious::Videos::Caption))
|
||||||
name = caption["name"]["simpleText"]? || caption["name"]["runs"][0]["text"]
|
else
|
||||||
language_code = caption["languageCode"].to_s
|
captions = Invidious::Videos::Caption.from_yt_json(info["captions"])
|
||||||
base_url = caption["baseUrl"].to_s
|
@captions = captions
|
||||||
|
return captions
|
||||||
caption = Caption.new(name.to_s, language_code, base_url)
|
|
||||||
caption.name = caption.name.split(" - ")[0]
|
|
||||||
caption
|
|
||||||
end
|
end
|
||||||
captions ||= [] of Caption
|
|
||||||
@captions = captions
|
|
||||||
return @captions.as(Array(Caption))
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def description
|
def description
|
||||||
|
@ -674,21 +535,6 @@ struct Video
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
struct Caption
|
|
||||||
property name
|
|
||||||
property language_code
|
|
||||||
property base_url
|
|
||||||
|
|
||||||
getter name : String
|
|
||||||
getter language_code : String
|
|
||||||
getter base_url : String
|
|
||||||
|
|
||||||
setter name
|
|
||||||
|
|
||||||
def initialize(@name, @language_code, @base_url)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
class VideoRedirect < Exception
|
class VideoRedirect < Exception
|
||||||
property video_id : String
|
property video_id : String
|
||||||
|
|
||||||
|
|
168
src/invidious/videos/caption.cr
Normal file
168
src/invidious/videos/caption.cr
Normal file
|
@ -0,0 +1,168 @@
|
||||||
|
require "json"
|
||||||
|
|
||||||
|
module Invidious::Videos
|
||||||
|
struct Caption
|
||||||
|
property name : String
|
||||||
|
property language_code : String
|
||||||
|
property base_url : String
|
||||||
|
|
||||||
|
def initialize(@name, @language_code, @base_url)
|
||||||
|
end
|
||||||
|
|
||||||
|
# Parse the JSON structure from Youtube
|
||||||
|
def self.from_yt_json(container : JSON::Any) : Array(Caption)
|
||||||
|
caption_tracks = container
|
||||||
|
.dig?("playerCaptionsTracklistRenderer", "captionTracks")
|
||||||
|
.try &.as_a
|
||||||
|
|
||||||
|
captions_list = [] of Caption
|
||||||
|
return captions_list if caption_tracks.nil?
|
||||||
|
|
||||||
|
caption_tracks.each do |caption|
|
||||||
|
name = caption["name"]["simpleText"]? || caption["name"]["runs"][0]["text"]
|
||||||
|
name = name.to_s.split(" - ")[0]
|
||||||
|
|
||||||
|
language_code = caption["languageCode"].to_s
|
||||||
|
base_url = caption["baseUrl"].to_s
|
||||||
|
|
||||||
|
captions_list << Caption.new(name, language_code, base_url)
|
||||||
|
end
|
||||||
|
|
||||||
|
return captions_list
|
||||||
|
end
|
||||||
|
|
||||||
|
# List of all caption languages available on Youtube.
|
||||||
|
LANGUAGES = {
|
||||||
|
"",
|
||||||
|
"English",
|
||||||
|
"English (auto-generated)",
|
||||||
|
"English (United Kingdom)",
|
||||||
|
"English (United States)",
|
||||||
|
"Afrikaans",
|
||||||
|
"Albanian",
|
||||||
|
"Amharic",
|
||||||
|
"Arabic",
|
||||||
|
"Armenian",
|
||||||
|
"Azerbaijani",
|
||||||
|
"Bangla",
|
||||||
|
"Basque",
|
||||||
|
"Belarusian",
|
||||||
|
"Bosnian",
|
||||||
|
"Bulgarian",
|
||||||
|
"Burmese",
|
||||||
|
"Cantonese (Hong Kong)",
|
||||||
|
"Catalan",
|
||||||
|
"Cebuano",
|
||||||
|
"Chinese",
|
||||||
|
"Chinese (China)",
|
||||||
|
"Chinese (Hong Kong)",
|
||||||
|
"Chinese (Simplified)",
|
||||||
|
"Chinese (Taiwan)",
|
||||||
|
"Chinese (Traditional)",
|
||||||
|
"Corsican",
|
||||||
|
"Croatian",
|
||||||
|
"Czech",
|
||||||
|
"Danish",
|
||||||
|
"Dutch",
|
||||||
|
"Dutch (auto-generated)",
|
||||||
|
"Esperanto",
|
||||||
|
"Estonian",
|
||||||
|
"Filipino",
|
||||||
|
"Finnish",
|
||||||
|
"French",
|
||||||
|
"French (auto-generated)",
|
||||||
|
"Galician",
|
||||||
|
"Georgian",
|
||||||
|
"German",
|
||||||
|
"German (auto-generated)",
|
||||||
|
"Greek",
|
||||||
|
"Gujarati",
|
||||||
|
"Haitian Creole",
|
||||||
|
"Hausa",
|
||||||
|
"Hawaiian",
|
||||||
|
"Hebrew",
|
||||||
|
"Hindi",
|
||||||
|
"Hmong",
|
||||||
|
"Hungarian",
|
||||||
|
"Icelandic",
|
||||||
|
"Igbo",
|
||||||
|
"Indonesian",
|
||||||
|
"Indonesian (auto-generated)",
|
||||||
|
"Interlingue",
|
||||||
|
"Irish",
|
||||||
|
"Italian",
|
||||||
|
"Italian (auto-generated)",
|
||||||
|
"Japanese",
|
||||||
|
"Japanese (auto-generated)",
|
||||||
|
"Javanese",
|
||||||
|
"Kannada",
|
||||||
|
"Kazakh",
|
||||||
|
"Khmer",
|
||||||
|
"Korean",
|
||||||
|
"Korean (auto-generated)",
|
||||||
|
"Kurdish",
|
||||||
|
"Kyrgyz",
|
||||||
|
"Lao",
|
||||||
|
"Latin",
|
||||||
|
"Latvian",
|
||||||
|
"Lithuanian",
|
||||||
|
"Luxembourgish",
|
||||||
|
"Macedonian",
|
||||||
|
"Malagasy",
|
||||||
|
"Malay",
|
||||||
|
"Malayalam",
|
||||||
|
"Maltese",
|
||||||
|
"Maori",
|
||||||
|
"Marathi",
|
||||||
|
"Mongolian",
|
||||||
|
"Nepali",
|
||||||
|
"Norwegian Bokmål",
|
||||||
|
"Nyanja",
|
||||||
|
"Pashto",
|
||||||
|
"Persian",
|
||||||
|
"Polish",
|
||||||
|
"Portuguese",
|
||||||
|
"Portuguese (auto-generated)",
|
||||||
|
"Portuguese (Brazil)",
|
||||||
|
"Punjabi",
|
||||||
|
"Romanian",
|
||||||
|
"Russian",
|
||||||
|
"Russian (auto-generated)",
|
||||||
|
"Samoan",
|
||||||
|
"Scottish Gaelic",
|
||||||
|
"Serbian",
|
||||||
|
"Shona",
|
||||||
|
"Sindhi",
|
||||||
|
"Sinhala",
|
||||||
|
"Slovak",
|
||||||
|
"Slovenian",
|
||||||
|
"Somali",
|
||||||
|
"Southern Sotho",
|
||||||
|
"Spanish",
|
||||||
|
"Spanish (auto-generated)",
|
||||||
|
"Spanish (Latin America)",
|
||||||
|
"Spanish (Mexico)",
|
||||||
|
"Spanish (Spain)",
|
||||||
|
"Sundanese",
|
||||||
|
"Swahili",
|
||||||
|
"Swedish",
|
||||||
|
"Tajik",
|
||||||
|
"Tamil",
|
||||||
|
"Telugu",
|
||||||
|
"Thai",
|
||||||
|
"Turkish",
|
||||||
|
"Turkish (auto-generated)",
|
||||||
|
"Ukrainian",
|
||||||
|
"Urdu",
|
||||||
|
"Uzbek",
|
||||||
|
"Vietnamese",
|
||||||
|
"Vietnamese (auto-generated)",
|
||||||
|
"Welsh",
|
||||||
|
"Western Frisian",
|
||||||
|
"Xhosa",
|
||||||
|
"Yiddish",
|
||||||
|
"Yoruba",
|
||||||
|
"Zulu",
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
|
@ -89,7 +89,7 @@
|
||||||
<label for="captions[0]"><%= translate(locale, "preferences_captions_label") %></label>
|
<label for="captions[0]"><%= translate(locale, "preferences_captions_label") %></label>
|
||||||
<% preferences.captions.each_with_index do |caption, index| %>
|
<% preferences.captions.each_with_index do |caption, index| %>
|
||||||
<select class="pure-u-1-6" name="captions[<%= index %>]" id="captions[<%= index %>]">
|
<select class="pure-u-1-6" name="captions[<%= index %>]" id="captions[<%= index %>]">
|
||||||
<% CAPTION_LANGUAGES.each do |option| %>
|
<% Invidious::Videos::Caption::LANGUAGES.each do |option| %>
|
||||||
<option value="<%= option %>" <% if preferences.captions[index] == option %> selected <% end %>><%= translate(locale, option.blank? ? "none" : option) %></option>
|
<option value="<%= option %>" <% if preferences.captions[index] == option %> selected <% end %>><%= translate(locale, option.blank? ? "none" : option) %></option>
|
||||||
<% end %>
|
<% end %>
|
||||||
</select>
|
</select>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue