'
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('E2SDaqBRi-g',
                'recent;',
                'Using 1 Major Scale Over a 251 ',
                ' Freedom in Improvisation',
                'In this video full of examples using only Eb major over a 251 progression with a 251 onto the 6 (Autumn Leaves basically but this is not about the song at all), I attempt to transmit the idea of playfulness... not getting stuck in rigid lines and safe notes and playing only 1 note per beat. Apply what I discuss to any repertoire and any chord progression.',

                '\\n00:00 - Intro\\n00:23 - Quick look at the chords\\n01:06 - Notes per bar\\n04:09 - Playfulness\\n05:36 - Aim for the 9th\\n07:27 - Repeated riff\\n08:50 - Don\'t be rigid\\n09:30 - Chromatic trials\\n10:35 - Accompanying tips\\n\\nPersonalised Water Pianism Syllabus: https://piano-jazz.blogspot.com/2022/04/water-pianism-syllabus.html\\n\\n',
                '2025-10-25',
                'https://i.ytimg.com/vi/E2SDaqBRi-g/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)
                    ;