'
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('mvU-RgFf_Zw',
                'recent;',
                'Learn to Compose a Jazz Piece on the Spot ',
                ' Trial \\u0026 Error, Brute Force Method! (Part 1/?)',
                'I have no idea why the feeling came over me but I wanted to press record and see what happens. I had no idea of key or melody or vibe until I sat down. I managed to make it quite a few chords through with what I think is an interesting melody but the inspiration ended on a Bdim chord... so when I sit down for Part 2 soon, I\'ll hope that block has disappeared. I invite you to propose a name for it to be voted on, maybe even lyrics (!?) and perhaps to learn it with me and maybe share your performance. Hope you enjoy the process and maybe it will inspire you to do the same...',

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