play
Forces the video to start playing.
Example
<div id="mediaplayer" />
<script>
$("#mediaplayer").kendoMediaPlayer({
media: { title: "Digital Transformation: A New Way of Thinking", source: "https://www.youtube.com/watch?v=gNlya720gbk" }
});
// get a reference to the media player widget
var mediaPlayer = $("#mediaplayer").data("kendoMediaPlayer");
// Starts the playing of the video
mediaPlayer.play();
</script>