'
REMOTE_ADDR: 216.73.216.3


INSERT INTO video_table
            (vd_id, vd_theme_codes, vd_title, vd_subtitle, vd_description,
                vd_timestamps, vd_published, vd_image)
            VALUES('Nk0OrQ5K8N0',
                'recent;',
                'Don\'t Be Intimidated by Jazz Chord Extensions ',
                ' They\'re Just 2 4 \\u0026 6! (2/2)',
                'In the hope you enjoyed part 1/2 which provided every chord within the octave and, if necessary, have spent some time on your major scale shapes, now we look at the infamous jazzy (usually) extensions! Quite simply, the 9, 11 and 13 and the missing 2 4 6 of the major scale, with 1 3 5 7 being the in-octave notes and the former being the notes in between. Below, is a list of all variations (of extensions and with in-octave chord types) but feel free to experiment and find your favourite ones!',

                '\\n00:00 - Intro\\n00:54 - 9th\\n03:33 - altered 9\\n05:40 - mismatches\\n07:58 - 9 goes with...\\n09:19 - 11th and #11 \\n12:43 - 13th (voicing given)\\n20:46 - Final words/experiment\\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-08-26',
                'https://i.ytimg.com/vi/Nk0OrQ5K8N0/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)
                    ;