vplyr
v1.0.16
Published
a html video player
Downloads
43
Readme
vPlyr
A simple, HTML5, FLV media player.
Using package managers
npm
npm install vplyr
https://www.npmjs.com/package/vplyr
Quick setup
HTML5 Video
HTML
<video poster="/path/to/poster.jpg" controls src="/path/to/video.mp4"></video>
CSS
Include the vplyr.css
stylsheet into your <head>
<link rel="stylesheet" href="dist/vplyr.css">
JavaScript
Include the vplyr.js
script before the closing </body>
tag and then call new vPlayer(tag,options)
<script src="dist/vplyr.js"></script>
<script>new vPlayer(document.querySelector('video'), { debug: false })</script>