|
|
@ -311,21 +311,26 @@ def parse_video_info(video_id : String, player_response : Hash(String, JSON::Any
|
|
|
|
|
|
|
|
|
|
|
|
# Music section
|
|
|
|
# Music section
|
|
|
|
|
|
|
|
|
|
|
|
music_desc = player_response.dig?("engagementPanels", 1, "engagementPanelSectionListRenderer", "content", "structuredDescriptionContentRenderer", "items", 2, "videoDescriptionMusicSectionRenderer", "carouselLockups", 0, "carouselLockupRenderer", "infoRows").try &.as_a
|
|
|
|
music_list = [] of VideoMusic
|
|
|
|
|
|
|
|
music_desclist = player_response.dig?("engagementPanels", 1, "engagementPanelSectionListRenderer", "content", "structuredDescriptionContentRenderer", "items", 2, "videoDescriptionMusicSectionRenderer", "carouselLockups").try &.as_a
|
|
|
|
|
|
|
|
music_desclist.try &.each do |music_desc|
|
|
|
|
artist = nil
|
|
|
|
artist = nil
|
|
|
|
album = nil
|
|
|
|
album = nil
|
|
|
|
music_licenses = nil
|
|
|
|
music_license = nil
|
|
|
|
|
|
|
|
|
|
|
|
music_desc.try &.each do |desc|
|
|
|
|
music_desc.dig?("carouselLockupRenderer", "infoRows").try &.as_a.try &.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"
|
|
|
|
artist = extract_text(desc.dig?("infoRowRenderer", "defaultMetadata"))
|
|
|
|
artist = extract_text(desc.dig?("infoRowRenderer", "defaultMetadata"))
|
|
|
|
elsif desc_title == "ALBUM"
|
|
|
|
elsif desc_title == "ALBUM"
|
|
|
|
album = extract_text(desc.dig?("infoRowRenderer", "defaultMetadata"))
|
|
|
|
album = extract_text(desc.dig?("infoRowRenderer", "defaultMetadata"))
|
|
|
|
elsif desc_title == "LICENSES"
|
|
|
|
elsif desc_title == "LICENSES"
|
|
|
|
music_licenses = extract_text(desc.dig?("infoRowRenderer", "expandedMetadata"))
|
|
|
|
music_license = extract_text(desc.dig?("infoRowRenderer", "expandedMetadata"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
music = VideoMusic.new(album.to_s, artist.to_s, music_license.to_s)
|
|
|
|
|
|
|
|
music_list << music
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
# Author infos
|
|
|
|
# Author infos
|
|
|
|
|
|
|
|
|
|
|
@ -378,9 +383,7 @@ def parse_video_info(video_id : String, player_response : Hash(String, JSON::Any
|
|
|
|
"genreUcid" => JSON::Any.new(genre_ucid.try &.as_s || ""),
|
|
|
|
"genreUcid" => JSON::Any.new(genre_ucid.try &.as_s || ""),
|
|
|
|
"license" => JSON::Any.new(license.try &.as_s || ""),
|
|
|
|
"license" => JSON::Any.new(license.try &.as_s || ""),
|
|
|
|
# Music section
|
|
|
|
# Music section
|
|
|
|
"music_artist" => JSON::Any.new(artist || ""),
|
|
|
|
"music" => JSON.parse(music_list.to_json),
|
|
|
|
"music_album" => JSON::Any.new(album || ""),
|
|
|
|
|
|
|
|
"music_licenses" => JSON::Any.new(music_licenses || ""),
|
|
|
|
|
|
|
|
# Author infos
|
|
|
|
# Author infos
|
|
|
|
"author" => JSON::Any.new(author || ""),
|
|
|
|
"author" => JSON::Any.new(author || ""),
|
|
|
|
"ucid" => JSON::Any.new(ucid || ""),
|
|
|
|
"ucid" => JSON::Any.new(ucid || ""),
|
|
|
|