Git Product home page Git Product logo

videojs-panorama's Introduction

videojs-panorama

a plugin for videojs run a full 360 degree panorama video. VR is supported right now!

Table of Contents

Installation

npm install --save videojs-panorama

or

Integration with video.js 4 and 5

###1. If you don't have videoJs, add it's scripts and stylesheet to your page

<!-- Video.js 4 -->
<link href="http://vjs.zencdn.net/4.12/video-js.css" rel="stylesheet">
<script src="http://vjs.zencdn.net/4.12/video.js"></script>

or

<!-- Video.js 5 -->
<link href="http://vjs.zencdn.net/5.8/video-js.css" rel="stylesheet">
<script src="http://vjs.zencdn.net/5.8/video.js"></script>

###2. Add three.js after videoJs script

<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r76/three.js"></script>

###3. Add the plugin stylesheet and script

<!-- Common -->
<link href="//path/to/videojs-panorama.min.css" rel="stylesheet">

and the videojs version specific plugin, you can find it in dist folder

<!-- Video.js 4 -->
<script src="//path/to/videojs-panorama.v4.min.js"></script>

or

<!-- Video.js 5 -->
<script src="//path/to/videojs-panorama.v5.min.js"></script>

###4. setup videojs panorama plugin

player.panorama({
    clickAndDrag: true,
    callback: function () {
      player.play();
    }
});

Cross domian issue

In order to avoid cross domain issue, please keep the code and video with in same domain. videojs-panorama use canvas and put video as resources, so it should be at same domain. Detail, please see: https://forums.developer.apple.com/thread/36725

If you really want to use with in different domain, here are two solutions. If you have more good solutions, please let me know.

video player in iframe

In order to avoid cross domain issue, we need to put video player inside iframe. However, mobile acceleration and fullscreen will not working on iframe. You need to set it up manually. Please check iframe.html and iframe-video.html for detail, it's a example let mobile acceleration and fullscreen functionality work on iframe.

Put it inside an iframe and use iframe in different domain. (best solution)

experimental, only work on chrome and firefox, it will be broken on safari

please make sure to add crossorigin="anonymous" attribute in video tag. Like

        <video id="videojs-panorama-player" class="video-js vjs-default-skin" poster="assets/poster.jpg"  crossorigin="anonymous" controls>
            <source src="assets/shark.mp4" type='video/mp4'>
        </video>

On server side, you have to set cross origin header, like Access-Control-Allow-Origin: *.

Resize problem

Sometimes, video need to be resized, like fullscreen the video. For performance, this plugin doesn't handle resize automatically. But it's easy to handle on your side. Here's the example.

var player = window.player = videojs('videojs-panorama-player', {}, function () {
    window.addEventListener("resize", function () {
        var canvas = player.getChild('Canvas');
        canvas.handleResize();
    });
});

Fisheye video support

In some cases, you get the video like below.

Image of fisheye poster

You don't have to use tools to convert video to equirectangular video, you can use this plugin to play directly.

There are two cases for fisheye video. One case is the camera took from top to bottom. You may need to restrict user only view the bottom half of the sphere

player.panorama({
    maxLat: -10,
    initLat: -10,
    rotateX: -Math.PI,
});

Another case is the camera took from bottom to top.

player.panorama({
    minLat: 10,
    initLat: 10,
    rotateX: 0,
});
    

Options

clickAndDrag

By default, video will be rotated when user rollover their mouse. If clickAndDrag set to true, video rotation will only happen on user drag and drop the video. Defaults to false

callback

callback function fired when panorama video is ready.

showNotice

A notice label show on the beginning of the video to notice user to drag the player to see whole video. If showNotice set to false, notice label will not be shown. Defaults to true

NoticeMessage

Customize your own notice message.

autoHideNotice

How long the notice message should be shown. Defaults to 3000, indicate it will hide after 3000ms.

initLat

initial lat for camera angle, Defaults value is 0, range between -90 to 90.

initLon

initial lot for camera angle, Defaults value is -180, don't have range.

backToVerticalCenter

automatically back to vertical center when user inactive the video frame. Defaults value depends on running platform, true on desktop, false on mobile.

returnStepLat

If backToVerticalCenter is set to true, you can customize the return back speed. Defaults value is 0.5. The larger the faster.

backToHorizonCenter

automatically back to horizontal center when user inactive the video frame. Default value the same as backToVerticalCenter.

returnStepLon

If backToHorizonCenter is set to true, you can customize the return back speed. Defaults value is 2.

clickToToggle

click to toggle the video. If video is playing, it will be paused. If video is paused, it will be played. Defaults to false.

It's possible to customize the viewable zoom

minLat

minimum Lat value for camera angle. Defaults value is -85.

maxLat

max Lat value for camera angle. Defaults value is 85.

autoMobileOrientation

This feature only works on mobile device. Auto moving 360 video when user move their phone. Defaults value is false.

videoType

This plugin can play two types of video, equirectangular and fisheye. Defaults value is equirectangular.

The properties below only support fisheye video.

rotateX

rotate video view by x axis. Defaults value is 0. Value should be radian.

rotateY

rotate video view by y axis. Defaults value is 0. Value should be radian.

rotateZ

rotate video view by z axis. Defaults value is 0. Value should be radian.

VREnable

whether VR button shows on control panel. Defaults value is true.

browser support

IE 11, Edge 12, 13, chrome, firefox, safari, iphone ios 9, ipad ios 9, android 4.4 and above.

License

Apache-2.0. Copyright (c) [email protected]

videojs-panorama's People

Contributors

wensheng-yan avatar yanwsh avatar huijun avatar

Watchers

James Cloos avatar hyunjune avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.