All Projects → prateekrastogi → videojs-landscape-fullscreen

prateekrastogi / videojs-landscape-fullscreen

Licence: other
Videojs on Mobile and/or React: Automatically Switch to Landscape on Fullscreen, and Fullscreen on Landscape

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to videojs-landscape-fullscreen

videojs-plus
An extension and skin for video.js
Stars: ✭ 49 (-31.94%)
Mutual labels:  videojs, videojs-plugin
videojs-airplay
Videojs Plugin that adds an airplay button to the control bar
Stars: ✭ 28 (-61.11%)
Mutual labels:  videojs, videojs-plugin
videojs-share
Share plugin for video.js
Stars: ✭ 24 (-66.67%)
Mutual labels:  videojs, videojs-plugin
generator-videojs-plugin
Yeoman generator for video.js plugins.
Stars: ✭ 71 (-1.39%)
Mutual labels:  videojs, videojs-plugin
videojs-annotation-comments
A plugin for video.js to add support for timeline moment/range comments and annotations
Stars: ✭ 129 (+79.17%)
Mutual labels:  videojs, videojs-plugin
videojs-ima-player
video ad plugin for video.js
Stars: ✭ 12 (-83.33%)
Mutual labels:  videojs, videojs-plugin
Larkplayer
🚀 A lightweight & flexible web player :)
Stars: ✭ 82 (+13.89%)
Mutual labels:  videojs
videojs-react-enhanced
React.js wrapper component for Video.js player
Stars: ✭ 37 (-48.61%)
Mutual labels:  videojs
Videojs Playlist
A plugin to play multiple audio tracks or multiple videos.
Stars: ✭ 63 (-12.5%)
Mutual labels:  videojs
Wjplayer
Video.js bundle that supports HLS, VAST/VMAP, 360-degree videos, and more.
Stars: ✭ 55 (-23.61%)
Mutual labels:  videojs
videojs-react-course-assistant
A note taking tool to use with (initially) youtube playlists aiming to be similar to Frontend Masters or Coursera
Stars: ✭ 13 (-81.94%)
Mutual labels:  videojs
videojs-hlsjs
HLS playback plugin for videojs
Stars: ✭ 26 (-63.89%)
Mutual labels:  videojs
Videojs Contrib Hls
HLS library for video.js
Stars: ✭ 2,723 (+3681.94%)
Mutual labels:  videojs
Streaming Room
Streaming room in Node.js, rtmp, hsl, html5 videojs player
Stars: ✭ 106 (+47.22%)
Mutual labels:  videojs
Embed
Embed player for D.Tube
Stars: ✭ 65 (-9.72%)
Mutual labels:  videojs
videojs-abloop
A video.js plugin for looping of a section of video, with GUI and API controls
Stars: ✭ 36 (-50%)
Mutual labels:  videojs-plugin
React Awesome Player
🔥 video.js component for React
Stars: ✭ 56 (-22.22%)
Mutual labels:  videojs
Videojs Wavesurfer
video.js plugin that adds a navigable waveform for audio and video files
Stars: ✭ 242 (+236.11%)
Mutual labels:  videojs
videojs-logo
A video.js plugin to display a logo image on the player. If you think it's good, give me a star! ⭐
Stars: ✭ 19 (-73.61%)
Mutual labels:  videojs
Videojs Hotkeys
Adds more hotkey support to video.js
Stars: ✭ 155 (+115.28%)
Mutual labels:  videojs

videojs-landscape-fullscreen

Fullscreen control:

  • Rotate to landscape to enter Fullscreen
  • Always enter fullscreen in landscape mode even if device is in portrait mode

Installation

npm install --save videojs-landscape-fullscreen

Plugin Options

Default options

{
  fullscreen: {
    enterOnRotate: true,         // Enter fullscreen mode on rotating the device in landscape
    exitOnRotate: true,         // Exit fullscreen mode on rotating the device in portrait
    alwaysInLandscapeMode: true, // Always enter fullscreen in landscape mode even when device is in portrait mode (works on chromium, firefox, and ie >= 11)
    iOS: true //Whether to use fake fullscreen on iOS (needed for displaying player controls instead of system controls)
  }
};

Usage

To include videojs-landscape-fullscreen on your website or web application, use any of the following methods.

React

import React, { Component } from 'react'
import videojs from 'video.js'
import 'video.js/dist/video-js.css'

// initialize video.js plugins
import 'videojs-youtube'
import 'videojs-landscape-fullscreen'

class Player extends Component {
  componentDidMount() {
    // instantiate Video.js
    this.player = videojs(this.videoNode, this.props, function onPlayerReady() {
      console.log('onPlayerReady', this)
    })
    
    // configure plugins
    this.player.landscapeFullscreen({
      fullscreen: {
        enterOnRotate: true,
        exitOnRotate: true,
        alwaysInLandscapeMode: true,
        iOS: true
      }
    })
  }

  // destroy player on unmount
  componentWillUnmount() {
    if (this.player) {
      this.player.dispose()
    }
  }

  // wrap the player in a div with a `data-vjs-player` attribute
  // so videojs won't create additional wrapper in the DOM
  // see https://github.com/videojs/video.js/pull/3856
  render() {
    return (
      <div>
        <div data-vjs-player>
          <video ref={node => (this.videoNode = node)} className="video-js" />
        </div>
      </div>
    )
  }
}

export default Player
import React from 'react'
import Player from '../components/Player'

// Or Use React-Hooks
export default class Index extends React.Component {
  render() {
    const videoJsOptions = {
      techOrder: ['youtube'],
      autoplay: false,
      controls: true,
      sources: [
        {
          src: 'https://www.youtube.com/watch?v=D8Ymd-OCucs',
          type: 'video/youtube',
        },
      ],
    }

    return <Player {...videoJsOptions} />
  }
}

<script> Tag

This is the simplest case. Get the script in whatever way you prefer and include the plugin after you include video.min.js, so that the videojs global is available.

<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-landscape-fullscreen.min.js"></script>
<script>
  var player = videojs('some-player-id');

  player.landscapeFullscreen();
</script>

Browserify/CommonJS

When using with Browserify, install videojs-landscape-fullscreen via npm and require the plugin as you would any other module.

var videojs = require('video.js');

// The actual plugin function is exported by this module, but it is also
// attached to the `Player.prototype`; so, there is no need to assign it
// to a variable.
require('videojs-landscape-fullscreen');

var player = videojs('some-player-id');

player.landscapeFullscreen();

RequireJS/AMD

When using with RequireJS (or another AMD library), get the script in whatever way you prefer and require the plugin as you normally would:

require(['video.js', 'videojs-landscape-fullscreen'], function(videojs) {
  var player = videojs('some-player-id');

  player.landscapeFullscreen();
});

Pull Requests

Feel free to open pull requests as long as there are no major changes in api surface area.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].