Removing element from DOM with jquery through plugin Custom Scripts for Customizer

Please try this code snippet and put it in the footer.php file.

jQuery( window ).load(function($) {
  $('.wp-playlist-current-item img').remove();
});

or

jQuery( window ).load(function($) {
  $('.wp-playlist-current-item').find('img').remove();
});