mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Move parsed chapters info to "extra video infos"
This commit is contained in:
parent
9535009864
commit
3860c69a52
1 changed files with 2 additions and 3 deletions
|
@ -443,6 +443,8 @@ def parse_video_info(video_id : String, player_response : Hash(String, JSON::Any
|
|||
"isUpcoming" => JSON::Any.new(is_upcoming || false),
|
||||
"keywords" => JSON::Any.new(keywords.map { |v| JSON::Any.new(v) }),
|
||||
"isPostLiveDvr" => JSON::Any.new(post_live_dvr),
|
||||
"autoGeneratedChapters" => JSON::Any.new(chapters_auto_generated),
|
||||
"chapters" => JSON::Any.new(chapters_array),
|
||||
# Related videos
|
||||
"relatedVideos" => JSON::Any.new(related),
|
||||
# Description
|
||||
|
@ -461,9 +463,6 @@ def parse_video_info(video_id : String, player_response : Hash(String, JSON::Any
|
|||
"authorThumbnail" => JSON::Any.new(author_thumbnail.try &.as_s || ""),
|
||||
"authorVerified" => JSON::Any.new(author_verified || false),
|
||||
"subCountText" => JSON::Any.new(subs_text || "-"),
|
||||
|
||||
"autoGeneratedChapters" => JSON::Any.new(chapters_auto_generated),
|
||||
"chapters" => JSON::Any.new(chapters_array),
|
||||
}
|
||||
|
||||
return params
|
||||
|
|
Loading…
Reference in a new issue