mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-03-16.git
synced 2024-08-15 00:53:18 +00:00
extractors: Add helper for short view count text
This commit is contained in:
parent
e6ddd6d6c1
commit
9621175dc9
1 changed files with 14 additions and 0 deletions
|
@ -519,6 +519,20 @@ module HelperExtractors
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Retrieves the amount of views/viewers a video has.
|
||||||
|
# Seems to be used on related videos only
|
||||||
|
#
|
||||||
|
# Returns "0" when unable to parse
|
||||||
|
def self.get_short_view_count(container : JSON::Any) : String
|
||||||
|
box = container["shortViewCountText"]?
|
||||||
|
return "0" if !box
|
||||||
|
|
||||||
|
# Simpletext: "4M views"
|
||||||
|
# runs: {"text": "1.1K"},{"text":" watching"}
|
||||||
|
return box["simpleText"]?.try &.as_s.sub(" views", "") ||
|
||||||
|
box.dig?("runs", 0, "text").try &.as_s || "0"
|
||||||
|
end
|
||||||
|
|
||||||
# Retrieve lowest quality thumbnail from InnerTube data
|
# Retrieve lowest quality thumbnail from InnerTube data
|
||||||
#
|
#
|
||||||
# TODO allow configuration of image quality (-1 is highest)
|
# TODO allow configuration of image quality (-1 is highest)
|
||||||
|
|
Loading…
Reference in a new issue