autoRepeat Boolean (default: false)

If set to true, the widget will start playing the video or videos after initializing.

Example - enable automatic play

<div id="mediaplayer" />
<script>
$("#mediaplayer").kendoMediaPlayer({
    autoRepeat: true,
    media: { title: "Digital Transformation: A New Way of Thinking", source: "https://www.youtube.com/watch?v=gNlya720gbk" }
});
</script>
In this article