Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chimeejs/chimee-plugin-panorama
A plugin for panorama video in chimee
https://github.com/chimeejs/chimee-plugin-panorama
chimee panorama panorama-camera vr
Last synced: about 2 months ago
JSON representation
A plugin for panorama video in chimee
- Host: GitHub
- URL: https://github.com/chimeejs/chimee-plugin-panorama
- Owner: Chimeejs
- License: mit
- Created: 2018-05-13T09:31:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-07T14:51:31.000Z (about 6 years ago)
- Last Synced: 2024-10-22T20:54:29.170Z (2 months ago)
- Topics: chimee, panorama, panorama-camera, vr
- Language: JavaScript
- Homepage:
- Size: 740 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chimee-plugin-panorama
A plugin for panorama video## install
You can install this package through npm now.
```
npm install chimee-plugin-panorama
```## usage
It use like most of the chimee plugin.
```javascript
import Chimee from 'chimee';
import ChimeePluginPanorama from 'chimee-plugin-panorama';
Chimee.install(ChimeePluginPanorama);
const player = new Chimee({
src: 'http://cdn.toxicjohann.com/shark.mp4',
wrapper: '#wrapper',
plugin: [
ChimeePluginPanorama.name,
],
volume: 0.1,
controls: true,
canvas: true,
autoplay: true,
muted: true,
});
```