forked from videojs/videojs-vr
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kevin Staunton-Lambert
committed
Aug 13, 2024
1 parent
50a79b7
commit e8722a7
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>videojs-vr Demo</title> | ||
<link href="../node_modules/video.js/dist/video-js.css" rel="stylesheet"> | ||
<link href="../dist/videojs-vr.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<video width="640" height="300" id="videojs-vr-player" class="video-js vjs-default-skin" controls playsinline> | ||
<source src="https://kevleyski.github.io/reckless_in_pyrmont/hls_fmp4_byterange/reckless_in_pyrmont.m3u8" type="application/vnd.apple.mpegurl"> | ||
</video> | ||
<ul> | ||
<li><a href="../">return to main example</a></li> | ||
</ul> | ||
<script src="../node_modules/video.js/dist/video.js"></script> | ||
<script src="../dist/videojs-vr.js"></script> | ||
<script> | ||
(function(window, videojs) { | ||
var player = window.player = videojs('videojs-vr-player'); | ||
player.mediainfo = player.mediainfo || {}; | ||
player.mediainfo.projection = '180_MONO'; | ||
|
||
var vr = window.vr = player.vr({projection: '180_MONO', debug: true, forceCardboard: false}); | ||
}(window, window.videojs)); | ||
</script> | ||
|
||
<script src="examples.js"></script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* eslint-disable */ | ||
const videoSourceParam = window.location.search.substring(1); | ||
if (videoSourceParam) { | ||
if (videoSourceParam.indexOf(".mpd") !== -1) { | ||
player.src({ | ||
type: 'application/dash+xml', | ||
src: videoSourceParam | ||
}); | ||
} else if (videoSourceParam.indexOf(".m3u8") !== -1) { | ||
player.src({ | ||
type: 'application/vnd.apple.mpegurl', | ||
src: videoSourceParam | ||
}); | ||
} else { | ||
player.src({ | ||
type: 'video/mp4', | ||
src: videoSourceParam | ||
}); | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.