项目作者: DVS-devtools

项目描述 :
Video player integrated with Flowplayer/YouTube/Vimeo/DailyMotion/iFrame
高级语言: JavaScript
项目地址: git://github.com/DVS-devtools/videoplayer.git
创建时间: 2019-02-11T14:35:30Z
项目社区:https://github.com/DVS-devtools/videoplayer

开源协议:MIT License

下载


VideoPlayer

Build Status
Coverage Status
npm version
Greenkeeper badge

VideoPlayer is a Manager for all the videos displayed in a web page.

It can manage multiple video instances with multiple video Provider:

Supported providers:

  • Vimeo
  • Dailymotion
  • Youtube
  • Flowplayer (internal player, just pass a video source url)
  • Iframe

Install

With NPM:

  1. npm install --save @docomodigital/videoplayer

or with Yarn:

  1. yarn add @docomodigital/videoplayer

Usage

  1. import VideoPlayer from '@docomodigital/videoplayer';
  2. // VideoPlayer is already an instance, no need to create a new one
  3. const player = VideoPlayer.createPlayer({
  4. domNode: document.getElementById('video'),
  5. provider: 'dailymotion', // | 'vimeo' | 'youtube' | 'flowplayer' | 'iframe'
  6. videoId: 'uxWvd',
  7. providerOptions: {
  8. // See each provider init options
  9. },
  10. });
  11. // Play the video (Note: some (mobile) browsers does not allow the play before a user interaction)
  12. player.play();
  13. // Pause the video
  14. player.pause();
  15. // Every player instance has an unique id, you can use it to send command from the VideoPlayer class
  16. const id = player.id; // video_uxWvd_1
  17. // Stop the video with the given id
  18. VideoPlayer.stop(id); // player.stop()
  19. // Clear (remove) the video with the given id
  20. VideoPlayer.clear(id) // player.clear()
Add an event listener
  1. const callback = (evt) => {
  2. // Do stuff...
  3. }
  4. VideoPlayer.addEventListener(id, 'play', callback);
Remove an event listener
  1. VideoPlayer.removeEventListener(id, 'play', callback);

See the Documentation for a list of all available commands

Create a new Player passing the DOM id instead of the DOM Node
  1. VideoPlayer.createPlayer({
  2. domNode: '#video', // Accepts also the DOM node (document.getElementByID('video'))
  3. provider: 'dailymotion',
  4. videoId: 'uxWvd',
  5. //...
  6. });

Register event listeners when creating the Player

  1. const playCallback = (evt) => {
  2. //
  3. }
  4. const pauseCallback = (evt) => {
  5. //
  6. }
  7. VideoPlayer.createPlayer({
  8. domNode: document.getElementById('video'),
  9. provider: 'dailymotion',
  10. videoId: 'uxWvd',
  11. events: {
  12. play: playCallback,
  13. pause: pauseCallback,
  14. },
  15. });

The Player instance is exposed and directly accessible, you can bypass at all the VideoPlayer interface

  1. import { Player } from './src'
  2. const player = new Player({
  3. domNode: document.getElementById('video'),
  4. provider: 'dailymotion',
  5. videoId: 'uxWvd',
  6. // ... Same options as VideoPlayer.createPlayer except for "events" (not supported here), you need to register events manually calling player.on(..)
  7. });
  8. // You can still have multiple Player instances, but they are not aware of each other
  9. const player2 = new Player({
  10. domNode: document.getElementById('video2'),
  11. provider: 'vimeo',
  12. videoId: 'da45hds',
  13. });

Documentation

To read the documentation, go to:

https://docomodigital.github.io/videoplayer/latest