A Hola Spark fork optimized for playing YouTube videos

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

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