mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 07:22:16 +05:30
support videos with multiple songs
This commit is contained in:
parent
d8e23d34b6
commit
742c951bc9
@ -322,10 +322,17 @@ def parse_video_info(video_id : String, player_response : Hash(String, JSON::Any
|
|||||||
|
|
||||||
music_desclist.try &.as_a.each do |music_desc|
|
music_desclist.try &.as_a.each do |music_desc|
|
||||||
artist = nil
|
artist = nil
|
||||||
song = nil
|
|
||||||
album = nil
|
album = nil
|
||||||
music_license = nil
|
music_license = nil
|
||||||
|
|
||||||
|
# used when multiple songs
|
||||||
|
song = music_desc.dig?("carouselLockupRenderer", "videoLockup", "compactVideoRenderer", "title", "simpleText")
|
||||||
|
|
||||||
|
# used when multiple songs and the song has a link
|
||||||
|
if !song
|
||||||
|
song = music_desc.dig("carouselLockupRenderer", "videoLockup", "compactVideoRenderer", "title", "runs", 0, "text")
|
||||||
|
end
|
||||||
|
|
||||||
music_desc.dig?("carouselLockupRenderer", "infoRows").try &.as_a.each do |desc|
|
music_desc.dig?("carouselLockupRenderer", "infoRows").try &.as_a.each do |desc|
|
||||||
desc_title = extract_text(desc.dig?("infoRowRenderer", "title"))
|
desc_title = extract_text(desc.dig?("infoRowRenderer", "title"))
|
||||||
if desc_title == "ARTIST"
|
if desc_title == "ARTIST"
|
||||||
|
Loading…
Reference in New Issue
Block a user