A Hola Spark fork optimized for playing YouTube videos

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

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