INSERT INTO video_table
(vd_id, vd_theme_codes, vd_title, vd_subtitle, vd_description,
vd_timestamps, vd_published, vd_image)
VALUES('r6FD8gEM0fU',
'recent;',
'Have You Looked At Improvisation This Way? ',
' Autumn Leaves Demonstrations',
'Personalising your improvisations is paramount. You personalise by doing whatever you want with the knowledge you have acquired. Herein, I give some theoretical and many technical examples of what to do over Autumn Leaves in Fm, as requested. I don\'t want you to copy what I do but to take the concepts and do what You do. A lot of my knowledge comes from listening so I strongly recommend finding the top ten jazz albums (as generally suggested) and listening to each track and instrument with headphones.',
'\\n00:00 - Intro\\n00:47 - Chords used\\n01:43 - Chord tones improv\\n03:15 - Stop thinking/flow\\n5:12 - Chromatics\\n07:04 - Note families/major scale improv\\n09:00 - F blues improv\\n12:20 - Examples analyses\\n14:50 - Improv over Gm7b5, C7, Fm6\\n19:00 - Playing the 9th\\n21:46 - Why stuff works\\n23:08 - Pool of notes freedom\\n24:15 - Three note example/close\\n\\nPodcast series: https://www.youtube.com/playlist?list=PL4cPpP-Ua6NXPDTwFAHao_IiTbdVzgEV9\\n\\nPersonalised Water Pianism Syllabus: https://piano-jazz.blogspot.com/2022/04/water-pianism-syllabus.html\\n\\n',
'2025-10-14',
'https://i.ytimg.com/vi/r6FD8gEM0fU/hqdefault.jpg')
ON DUPLICATE KEY UPDATE
vd_title = VALUES(vd_title),
vd_subtitle = VALUES(vd_subtitle),
vd_description = VALUES(vd_description),
vd_timestamps = VALUES(vd_timestamps)
;