Compare commits

..

1 Commits

Author SHA1 Message Date
Fijxu
4daf1f0818 Add TvSimply client
Data taken from: 8cf658151f, 689fb0b90e and b15f623dab
2025-06-12 01:24:45 -04:00
2 changed files with 7 additions and 1 deletions

View File

@@ -32,7 +32,7 @@ module Invidious::Frontend::WatchPage
return String.build(4000) do |str| return String.build(4000) do |str|
str << "<form" str << "<form"
str << " class=\"pure-form pure-form-stacked\"" str << " class=\"pure-form pure-form-stacked\""
str << " action='" << URI.encode_www_form(url) << "'" str << " action='#{url}'"
str << " method='post'" str << " method='post'"
str << " rel='noopener'" str << " rel='noopener'"
str << " target='_blank'>" str << " target='_blank'>"

View File

@@ -42,6 +42,7 @@ module YoutubeAPI
TvHtml5 TvHtml5
TvHtml5ScreenEmbed TvHtml5ScreenEmbed
TvSimply
end end
# List of hard-coded values used by the different clients # List of hard-coded values used by the different clients
@@ -178,6 +179,11 @@ module YoutubeAPI
version: "2.0", version: "2.0",
screen: "EMBED", screen: "EMBED",
}, },
ClientType::TvSimply => {
name: "TVHTML5_SIMPLY",
name_proto: "74",
version: "1.0",
},
} }
#################################################################### ####################################################################