'
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('tWEvLeAzx3w',
                'recent;',
                'What About This Lovely Two Chord Alternation? ',
                ' Section B of my Jazz Composition (Part 2/?)',
                'Obviously enjoy part 1 first, linked below. In this shorter video (the rest will be shorter and edited down too), I was able to conclude Part 1 cleanly and transition very nicely into F# for Section B. I always do my best to avoid traditional and expected chord progressions and melodies which only use chord tones. This section became a little darker but opens up. It\'s not complete yet but I hope you\'re inspired or motivated to perhaps try composing yourself! Usually I hear a song in my mind for a few days or weeks and then go to the piano and \'find it\'. Here, I am using the brute force/trial and error method... clearly!',

                '',
                '2025-09-30',
                'https://i.ytimg.com/vi/tWEvLeAzx3w/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)
                    ;