musiccaps_details (view)
1 row where musiccaps_aspects contains "gentle" and musiccaps_names contains "Electric piano"
This data as json, CSV (advanced)
| video | youtube_link | musiccaps_caption | youtube_published | youtube_channel | youtube_description | musiccaps_names | musiccaps_aspects | musiccaps_author | youtube_id | musiccaps_rowid | 
|---|---|---|---|---|---|---|---|---|---|---|
| Now We Remain by David Haas | This is a calming and soothing piece played on the piano. It could be classified as a ballad. It is gentle and tranquil - there are mostly high notes being played. | 2009-04-03T08:31:58Z | Aira Lagunzad | Happy Lent 2009! I made this video... This is the first video I uploaded in youtube... | ["Electric piano", "Keyboard (musical)", "Piano"] | ["calming piano", "piano ballad", "gentle", "tranquil", "intricate piano motifs"] | 3 | zd3lShuZNmU | 5499 | 
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW musiccaps_details AS select
  musiccaps.url as video,
  json_object(
    'label',
    coalesce(videos.title, 'Missing from YouTube'),
    'href',
    musiccaps.url
  ) as youtube_link,
  musiccaps.caption as musiccaps_caption,
  videos.publishedAt as youtube_published,
  videos.channelTitle as youtube_channel,
  videos.description as youtube_description,
  musiccaps.audioset_names as musiccaps_names,
  musiccaps.aspect_list as musiccaps_aspects,
  musiccaps.author_id as musiccaps_author,
  videos.id as youtube_id,
  musiccaps.rowid as musiccaps_rowid
from
  musiccaps
  left join videos on musiccaps.ytid = videos.id;