[
{
"search": "",
"replace": ""
},
{
"search": "$('#btnPlayPause').click(function() {",
"replace": "$('#btnPlayPause').click(function() {\n const videoFile = document.getElementById('videoFile');\n const videoPlayer = document.getElementById('videoPlayer');\n\n // Event listener for the video file selection\n videoFile.addEventListener('change', function() {\n const file = videoFile.files[0];\n const url = URL.createObjectURL(file);\n videoPlayer.src = url;\n });"
}
]