'
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('6B454Z515GA',
                'recent;',
                'Proof that Jazz Repertoire Chords Are the Same Progressions ',
                ' Learn Anything Quickly! (2/2)',
                'In this second video of jazz chord progressions, I show a lot of jazz tunes and reveal how they are all \'quite\' similar, using the progressions discussed in part 1 (linked). Once you get used to jazz chord progression language, you will honestly be able to learn any jazz tune quite quickly. Hopefully this video will prove this isn\'t as hard as you may think.',

                '\\n00:00 - Intro\\n00:55 - Autumn Leaves\\n03:27 - Misty\\n05:00 - All The Things You Are\\n06:23 - Skylark\\n08:35 - My Romance\\n09:37 - Ain\'t Misbehavin\'\\n10:40 - The Nearness of You\\n12:00 - I\'ve Got You Under My Skin\\n13:52 - But Not for Me\\n14:14 - Final thoughts\\n\\n',
                '2025-08-18',
                'https://i.ytimg.com/vi/6B454Z515GA/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)
                    ;