musiccaps_details (view)
1 row where musiccaps_author = 4, musiccaps_names contains "Musical instrument" and youtube_channel = "Steel Drum Music"
This data as json, CSV (advanced)
Suggested facets: youtube_published (date), musiccaps_aspects (array)
| video | youtube_link | musiccaps_caption | youtube_published | youtube_channel | youtube_description | musiccaps_names | musiccaps_aspects | musiccaps_author | youtube_id | musiccaps_rowid |
|---|---|---|---|---|---|---|---|---|---|---|
| I'm Yours - steel drum reggae cover | The low quality recording features a tropical steel drum melody playing over background percussive instrumental. It is noisy, but it sounds tropical, exotic and emotional. | 2009-12-18T22:38:29Z | Steel Drum Music | Jason Mraz's reggae-ish hit on steel drums in Wellington, FL on 12/10/2009 Yes, the puffy shirt cracks me up still. It's hot and humid in Florida year round, so I have a fan on the floor behind me blowing full blast most of the time. ♫ iTunes - http://bit.ly/aE3djW Amazon - http://bit.ly/cgT7rA Google - http://bit.ly/38mMiPu https://www.SteelDrumMusic.net | ["Music", "Musical instrument", "Steelpan"] | ["low quality", "noisy", "background percussive instrumental", "tropical steel drum melody", "tropical", "exotic", "emotional"] | 4 | 3zIQTDfS4Hk | 524 |
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;