mirror of
https://github.com/iv-org/invidious.git
synced 2025-02-24 08:18:22 -06:00
Compare commits
7 Commits
3e17d04875
...
a021b93063
Author | SHA1 | Date | |
---|---|---|---|
|
a021b93063 | ||
|
d9df90b5e3 | ||
|
cec3cfba77 | ||
|
de918b9234 | ||
|
4782a67038 | ||
|
5baaedfa39 | ||
|
4f066e880c |
7
.github/workflows/build-stable-container.yml
vendored
7
.github/workflows/build-stable-container.yml
vendored
@ -47,9 +47,11 @@ jobs:
|
|||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5
|
||||||
with:
|
with:
|
||||||
images: quay.io/invidious/invidious
|
images: quay.io/invidious/invidious
|
||||||
|
flavor: |
|
||||||
|
latest=false
|
||||||
tags: |
|
tags: |
|
||||||
type=semver,pattern={{version}}
|
type=semver,pattern={{version}}
|
||||||
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
|
type=raw,value=latest
|
||||||
labels: |
|
labels: |
|
||||||
quay.expires-after=12w
|
quay.expires-after=12w
|
||||||
|
|
||||||
@ -71,10 +73,11 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
images: quay.io/invidious/invidious
|
images: quay.io/invidious/invidious
|
||||||
flavor: |
|
flavor: |
|
||||||
|
latest=false
|
||||||
suffix=-arm64
|
suffix=-arm64
|
||||||
tags: |
|
tags: |
|
||||||
type=semver,pattern={{version}}
|
type=semver,pattern={{version}}
|
||||||
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
|
type=raw,value=latest
|
||||||
labels: |
|
labels: |
|
||||||
quay.expires-after=12w
|
quay.expires-after=12w
|
||||||
|
|
||||||
|
16
CHANGELOG.md
16
CHANGELOG.md
@ -1,5 +1,18 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
|
|
||||||
|
## v2.20240825.2 (2024-08-26)
|
||||||
|
|
||||||
|
This releases fixes the container tags pushed on quay.io.
|
||||||
|
Previously, the ARM64 build was released under the `latest` tag, instead of `latest-arm64`.
|
||||||
|
|
||||||
|
### Full list of pull requests merged since the last release (newest first)
|
||||||
|
|
||||||
|
CI: Fix docker container tags ([#4883], by @SamantazFox)
|
||||||
|
|
||||||
|
[#4877]: https://github.com/iv-org/invidious/pull/4877
|
||||||
|
|
||||||
|
|
||||||
## v2.20240825.1 (2024-08-25)
|
## v2.20240825.1 (2024-08-25)
|
||||||
|
|
||||||
Add patch component to be [semver] compliant and make github actions happy.
|
Add patch component to be [semver] compliant and make github actions happy.
|
||||||
@ -8,8 +21,9 @@ Add patch component to be [semver] compliant and make github actions happy.
|
|||||||
|
|
||||||
### Full list of pull requests merged since the last release (newest first)
|
### Full list of pull requests merged since the last release (newest first)
|
||||||
|
|
||||||
Allow manual trigger of release-container build (#4877, thanks @syeopite)
|
Allow manual trigger of release-container build ([#4877], thanks @syeopite)
|
||||||
|
|
||||||
|
[#4877]: https://github.com/iv-org/invidious/pull/4877
|
||||||
|
|
||||||
|
|
||||||
## v2.20240825.0 (2024-08-25)
|
## v2.20240825.0 (2024-08-25)
|
||||||
|
@ -53,6 +53,10 @@ end
|
|||||||
def extract_video_info(video_id : String)
|
def extract_video_info(video_id : String)
|
||||||
# Init client config for the API
|
# Init client config for the API
|
||||||
client_config = YoutubeAPI::ClientConfig.new
|
client_config = YoutubeAPI::ClientConfig.new
|
||||||
|
# Use the WEB_CREATOR when po_token is configured because it fully only works on this client
|
||||||
|
if CONFIG.po_token
|
||||||
|
client_config.client_type = YoutubeAPI::ClientType::WebCreator
|
||||||
|
end
|
||||||
|
|
||||||
# Fetch data from the player endpoint
|
# Fetch data from the player endpoint
|
||||||
player_response = YoutubeAPI.player(video_id: video_id, params: "2AMB", client_config: client_config)
|
player_response = YoutubeAPI.player(video_id: video_id, params: "2AMB", client_config: client_config)
|
||||||
@ -102,6 +106,13 @@ def extract_video_info(video_id : String)
|
|||||||
|
|
||||||
new_player_response = nil
|
new_player_response = nil
|
||||||
|
|
||||||
|
# Second try in case WEB_CREATOR doesn't work with po_token.
|
||||||
|
# Only trigger if reason found and po_token configured.
|
||||||
|
if reason && CONFIG.po_token
|
||||||
|
client_config.client_type = YoutubeAPI::ClientType::WebEmbeddedPlayer
|
||||||
|
new_player_response = try_fetch_streaming_data(video_id, client_config)
|
||||||
|
end
|
||||||
|
|
||||||
# Don't use Android client if po_token is passed because po_token doesn't
|
# Don't use Android client if po_token is passed because po_token doesn't
|
||||||
# work for Android client.
|
# work for Android client.
|
||||||
if reason.nil? && CONFIG.po_token.nil?
|
if reason.nil? && CONFIG.po_token.nil?
|
||||||
@ -114,10 +125,9 @@ def extract_video_info(video_id : String)
|
|||||||
end
|
end
|
||||||
|
|
||||||
# Last hope
|
# Last hope
|
||||||
# Only trigger if reason found and po_token or didn't work wth Android client.
|
# Only trigger if reason found or didn't work wth Android client.
|
||||||
# TvHtml5ScreenEmbed now requires sig helper for it to work but po_token is not required
|
# TvHtml5ScreenEmbed now requires sig helper for it to work but doesn't work with po_token.
|
||||||
# if the IP address is not blocked.
|
if reason && CONFIG.po_token.nil?
|
||||||
if CONFIG.po_token && reason || CONFIG.po_token.nil? && new_player_response.nil?
|
|
||||||
client_config.client_type = YoutubeAPI::ClientType::TvHtml5ScreenEmbed
|
client_config.client_type = YoutubeAPI::ClientType::TvHtml5ScreenEmbed
|
||||||
new_player_response = try_fetch_streaming_data(video_id, client_config)
|
new_player_response = try_fetch_streaming_data(video_id, client_config)
|
||||||
end
|
end
|
||||||
@ -185,10 +195,11 @@ def parse_video_info(video_id : String, player_response : Hash(String, JSON::Any
|
|||||||
end
|
end
|
||||||
|
|
||||||
video_details = player_response.dig?("videoDetails")
|
video_details = player_response.dig?("videoDetails")
|
||||||
microformat = player_response.dig?("microformat", "playerMicroformatRenderer")
|
if !(microformat = player_response.dig?("microformat", "playerMicroformatRenderer"))
|
||||||
|
microformat = {} of String => JSON::Any
|
||||||
|
end
|
||||||
|
|
||||||
raise BrokenTubeException.new("videoDetails") if !video_details
|
raise BrokenTubeException.new("videoDetails") if !video_details
|
||||||
raise BrokenTubeException.new("microformat") if !microformat
|
|
||||||
|
|
||||||
# Basic video infos
|
# Basic video infos
|
||||||
|
|
||||||
@ -225,7 +236,7 @@ def parse_video_info(video_id : String, player_response : Hash(String, JSON::Any
|
|||||||
.try &.as_a.map &.as_s || [] of String
|
.try &.as_a.map &.as_s || [] of String
|
||||||
|
|
||||||
allow_ratings = video_details["allowRatings"]?.try &.as_bool
|
allow_ratings = video_details["allowRatings"]?.try &.as_bool
|
||||||
family_friendly = microformat["isFamilySafe"].try &.as_bool
|
family_friendly = microformat["isFamilySafe"]?.try &.as_bool
|
||||||
is_listed = video_details["isCrawlable"]?.try &.as_bool
|
is_listed = video_details["isCrawlable"]?.try &.as_bool
|
||||||
is_upcoming = video_details["isUpcoming"]?.try &.as_bool
|
is_upcoming = video_details["isUpcoming"]?.try &.as_bool
|
||||||
|
|
||||||
|
@ -29,6 +29,7 @@ module YoutubeAPI
|
|||||||
WebEmbeddedPlayer
|
WebEmbeddedPlayer
|
||||||
WebMobile
|
WebMobile
|
||||||
WebScreenEmbed
|
WebScreenEmbed
|
||||||
|
WebCreator
|
||||||
|
|
||||||
Android
|
Android
|
||||||
AndroidEmbeddedPlayer
|
AndroidEmbeddedPlayer
|
||||||
@ -80,6 +81,14 @@ module YoutubeAPI
|
|||||||
os_version: WINDOWS_VERSION,
|
os_version: WINDOWS_VERSION,
|
||||||
platform: "DESKTOP",
|
platform: "DESKTOP",
|
||||||
},
|
},
|
||||||
|
ClientType::WebCreator => {
|
||||||
|
name: "WEB_CREATOR",
|
||||||
|
name_proto: "62",
|
||||||
|
version: "1.20240918.03.00",
|
||||||
|
os_name: "Windows",
|
||||||
|
os_version: WINDOWS_VERSION,
|
||||||
|
platform: "DESKTOP",
|
||||||
|
},
|
||||||
|
|
||||||
# Android
|
# Android
|
||||||
|
|
||||||
@ -291,8 +300,9 @@ module YoutubeAPI
|
|||||||
end
|
end
|
||||||
|
|
||||||
if client_config.screen == "EMBED"
|
if client_config.screen == "EMBED"
|
||||||
|
# embedUrl https://www.google.com allow loading almost all video that are configured not embeddable
|
||||||
client_context["thirdParty"] = {
|
client_context["thirdParty"] = {
|
||||||
"embedUrl" => "https://www.youtube.com/embed/#{video_id}",
|
"embedUrl" => "https://www.google.com/",
|
||||||
} of String => String | Int64
|
} of String => String | Int64
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user