'
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('UJsV2t7BN_o',
                'recent;',
                'Want to Learn Every Chord, Ever (!) On Piano? ',
                ' In-Octave Chords (1/2)',
                'Redoing in two parts an older video on every chord possible on the piano. I demonstrate in the key of C for simplicity but you\'re encouraged to try in at least F, G, Eb and Bb too. I provide the logic and structure behind the triad types, diminished chords and the two 7ths. Experiment to find your favourite chord types and see if you can find any combinations that don\'t really sound too good. Part 2 will be about extensions but get this down first!',

                '\\n00:00 - Intro\\n01:35 - Major triad\\n03:14 - 6th\\n03:57 - How triads are modified\\n04:45 - Four positions of the 3rd\\n07:58 - Two positions of the 5th\\n10:24 - Diminished theory\\n16:19 - Two 7ths\\n19:52 - Mix and match discovery\\n23:42 - List review\\n26:23 - Final words\\n\\nMy Compositions:  https://soundcloud.com/danthecomposer\\n\\nMy Blog:  https://piano-jazz.blogspot.com/\\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-21',
                'https://i.ytimg.com/vi/UJsV2t7BN_o/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)
                    ;