'
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('pEgvZjLtgkI',
                'recent;',
                'Rapid Arpeggios Deep-Dive ',
                ' Mastering the Three Components Behind Them',
                'Enjoy this deep-dive into the three components of rapid arpeggios, with both hands. The speed is secondary. First, you need to master the feel of an octave, then have finger independence, then, through endurance, get used to every chord shape you\'ll have want to arpeggiate! Over a few weeks, you\'ll definitely notice an improvement and ease.',

                '\\n00:00 - Intro\\n00:28 - Octave precision\\n03:25 - Finger independence\\n05:57 - Endurance with shapes\\n06:51 - Invisible piano concept\\n09:13 - Four primary chord types\\n10:35 - Don\'t be cerebral!\\n11:47 - Review with Cm6\\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-09',
                'https://i.ytimg.com/vi/pEgvZjLtgkI/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)
                    ;