musiccaps_details (view)
1 row where musiccaps_names contains "Gong"
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 |
|---|---|---|---|---|---|---|---|---|---|---|
| Soul Sounds tibetan singing bowls | This music is instrumental. The tempo is slow with a droning vibration of a metal bowl called the Tibetan bowl or singing bowl. The music is a single note drone with vibrations and resonance. It is calming, meditative, stress relieving, meditative and soothing. | 2011-01-01T21:09:01Z | onelightbeing | This is a sound clip from my Soul Sounds CD, a 50 minute shamanic healing with the Tibetan singing bowls and cymbals. The singing bowls are known for their meditative sound qualities. In my experience I have found the sound of the singing bowls very effective for deep relaxation of the body and mind. I have seen people's physical problems disappear during a session. Energy sensitive people have reported that when I played the singing bowls, the energy of the room not only got cleared from negative energies but also got imbued with higher positive energies. More info at www.soul-guidance.com/soulsounds.htm . The slide show is made from pictures I took when visiting many planets on my journey through the cosmos :) | ["Singing bowl", "Gong"] | ["instrumental", "slow tempo", "bells", "monotone", "resounding", "resonating", "serene", "meditative", "reflective", "relaxing", "stress relieving", "tibetan bowls", "deep", "rich", "singing bowls", "music therapy", "monks", "metal bowls", "medicinal music", "peaceful"] | 7 | en0haa37gnk | 3898 |
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;