JSFiddle - React, Tailwind, and code Playground

mediaelement.js methods, properties and events , forked from http://jsfiddle.net/zE26G , see also stackoverflow.com/questions/24502039/remove-youtube-annotations-from-mediaelement-js-player

by dledle2

HTML

<!--
mediaelement.js methods, properties and events , forked from http://jsfiddle.net/zE26G , see also stackoverflow.com/questions/24502039/remove-youtube-annotations-from-mediaelement-js-player
// -->
<link rel="stylesheet" type="text/css" href="http://cdnjs.cloudflare.com/ajax/libs/mediaelement/2.13.2/css/mediaelementplayer.min.css">
<script src='http://cdnjs.cloudflare.com/ajax/libs/mediaelement/2.13.2/js/mediaelement-and-player.min.js'></script>
<video id="video-player" preload="preload" autoplay="autoplay">
    <source type="video/youtube" src="https://www.youtube.com/watch?v=IGz13x5OJ_8">
</video>

JavaScript

$(function () {
    player = new MediaElementPlayer('#video-player', {
        plugins: ['youtube']
    });
});