New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-vr-player

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-vr-player

A 360° HTML5 video player as a React Component

0.0.2
Source
npm
Version published
Weekly downloads
10
-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

react-vr-player

VR / 360° Video Player as a React Component

This is still very much beta.

It it adapted from eleVR player, which you can find here

What it does support so far

  • 360° Videos
  • Play/Pause
  • Seek
  • Mute
  • Fullscreen
  • HMD device (tested on Oculus Rift DK2, and Homido)

Install

First, get it from NPM: npm install react-vr-player Then, if you use Webpack, it should just be a matter of const player = require('react-vr-player')

Use

render() {
    const sources = [
        { url: '/videos/video.webm', type: 'video/webm'},
        { url: '/videos/video.mp4', type: 'video/mp4'}
    ];
    const keys = { // Facultative, if you want to re-map the keys
        left: 'A',
        right: 'D',
        up: 'W',
        down: 'S',
        rotateLeft: 'Q',
        rotateRight: 'E',
        fullScreen: 'F',
        zeroSensor: 'Z',
        playPause: ' '
    };
    return (
            <VrPlayer
                sources={sources}
                brand="Some Brand Name"
                title="Some Video Title"
                keys={keys}></VrPlayer>

    );
}

Keywords

virtual

FAQs

Package last updated on 19 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts