function updatePlayer(id) {
  $.ajax({
    type: "POST",
    url: "/video/modal/" + id + "/true/",
    success: function (data) {
      $("#multi-video-player").html(data);
    },
    error: function (data) {
    }
  });
}
