a plugin for videojs run a full 360 degree panorama video. VR is supported right now!
npm install --save videojs-panorama
or
###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();
}
});
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.
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.
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: *
.
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();
});
});
In some cases, you get the video like below.
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,
});
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 function fired when panorama video is ready.
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
Customize your own notice message.
How long the notice message should be shown. Defaults to 3000
, indicate it will hide after 3000ms.
initial lat for camera angle, Defaults value is 0
, range between -90 to 90.
initial lot for camera angle, Defaults value is -180
, don't have range.
automatically back to vertical center when user inactive the video frame. Defaults value depends on running platform, true on desktop, false on mobile
.
If backToVerticalCenter is set to true, you can customize the return back speed. Defaults value is 0.5
. The larger the faster.
automatically back to horizontal center when user inactive the video frame. Default value the same as backToVerticalCenter
.
If backToHorizonCenter is set to true, you can customize the return back speed. Defaults value is 2
.
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
minimum Lat value for camera angle. Defaults value is -85
.
max Lat value for camera angle. Defaults value is 85
.
This feature only works on mobile device. Auto moving 360 video when user move their phone. Defaults value is false
.
This plugin can play two types of video, equirectangular and fisheye. Defaults value is equirectangular
.
rotate video view by x axis. Defaults value is 0
. Value should be radian.
rotate video view by y axis. Defaults value is 0
. Value should be radian.
rotate video view by z axis. Defaults value is 0
. Value should be radian.
whether VR button shows on control panel. Defaults value is true
.
IE 11, Edge 12, 13, chrome, firefox, safari, iphone ios 9, ipad ios 9, android 4.4 and above.
Apache-2.0. Copyright (c) yanwsh@gmail.com