'
REMOTE_ADDR: 216.73.216.209


INSERT INTO video_table
            (vd_id, vd_theme_codes, vd_title, vd_subtitle, vd_description,
                vd_timestamps, vd_published, vd_image)
            VALUES('JMN-UWPOvjg',
                'recent;',
                'Personalising Liszt\'s Technical Exercises ',
                ' A Bunch of Examples',
                'It\'s overwhelming to look at over 200 pages of hardcore drills so let me soften the blow by saying: you don\'t need to do all of them, you can personalise them and you don\'t need to go through the book in order. You also don\'t need to do everything in every key; that\'s overkill. Herein, I demonstrate how you might open the book to a random page, observe what a technical exercise \'looks like\' and either do what it is says, of course, or recreate it in your own way. Let me show you how...',

                '\\n00:00 - Intro\\n02:32 - First exercise\\n03:43 - Second exercise\\n06:19 - Third exercise\\n08:01 - Fourth exercise\\n10:32 - Fifth exercises\\n11:50 - Sixth exercise\\n13:17 - Seventh exercise\\n14:25 - Final words\\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',
                '2026-01-08',
                'https://i.ytimg.com/vi/JMN-UWPOvjg/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)
                    ;