A Hola Spark fork optimized for playing YouTube videos

nipos a0e6a7b299 Remove doubled captions,fix thumbnails hace 5 años
src a0e6a7b299 Remove doubled captions,fix thumbnails hace 5 años
transforms c47a974c48 bundle ads modules hace 8 años
.gitignore 92ed45c43d First version of YouPlay Player hace 6 años
.jshintrc 65ee2cc11b make the imported version of hola_vjs replaceable hace 7 años
.npmignore 5934985b70 add 'zip' task hace 7 años
Gruntfile.js 92ed45c43d First version of YouPlay Player hace 6 años
LICENSE 3605a0bbc3 update license hace 8 años
README.md 92ed45c43d First version of YouPlay Player hace 6 años
browserify-css.js 34faefa607 jshint ./*.js hace 8 años
package.json a0e6a7b299 Remove doubled captions,fix thumbnails hace 5 años

README.md

YouPlay Player

YouPlay Player is a HTML5 video player based on Video.js which looks similar to YouTube. Forked from Hola Spark.

Features

  • Open source project under active development
  • Supports video and audio in separate files (like YouTube does for HD)
  • All the features of the original video.js
    • Custom branding (no watermark)
    • HTML/CSS skin system
    • Plugin support
    • Multi platform (desktop and mobile devices)
    • Player API

Quick start

To start using YouPlay Player, follow these steps:

  1. Download the latest yp-player.js from https://notabug.org/youplay/yp-player/releases

  2. Add this script to your document's <head> as follows:

<script src="./yp-player.js"></script>
  1. Add a <video> tag on your page:
<video class="video-js vjs-default-skin" poster="./my-preview-image.jpg" width="640" height="360" controls>
<source src="./my-video.mp4" type="video/mp4">
</video>
  1. Initialize player:
<script>
window.yp_player();
</script>
  1. Done!

Documentation

We will soon create wiki pages with more details about how you can use YouPlay Player.

License

YouPlay Player is licensed under the ISC License. View the license file
Forked from Spark Player - Copyright 2017 Hola Networks ltd

Credits