2018-01-25 17:03:35 +00:00
|
|
|
/**
|
|
|
|
* Determines the video support of the browser running this Phaser Game instance.
|
|
|
|
* These values are read-only and populated during the boot sequence of the game.
|
|
|
|
* They are then referenced by internal game systems and are available for you to access
|
|
|
|
* via `this.sys.game.device.video` from within any Scene.
|
|
|
|
*
|
|
|
|
* @namespace Phaser.Device.Video
|
|
|
|
* @typedef {object} DeviceVideo
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @property {boolean} h264Video - Can this device play h264 mp4 video files?
|
|
|
|
* @property {boolean} hlsVideo - Can this device play hls video files?
|
|
|
|
* @property {boolean} mp4Video - Can this device play h264 mp4 video files?
|
|
|
|
* @property {boolean} oggVideo - Can this device play ogg video files?
|
|
|
|
* @property {boolean} vp9Video - Can this device play vp9 video files?
|
|
|
|
* @property {boolean} webmVideo - Can this device play webm video files?
|
|
|
|
*/
|
2016-11-25 04:33:48 +00:00
|
|
|
var Video = {
|
|
|
|
|
|
|
|
h264Video: false,
|
2018-01-25 17:03:35 +00:00
|
|
|
hlsVideo: false,
|
2016-11-25 04:33:48 +00:00
|
|
|
mp4Video: false,
|
2018-01-25 17:03:35 +00:00
|
|
|
oggVideo: false,
|
2016-11-25 04:33:48 +00:00
|
|
|
vp9Video: false,
|
2018-01-25 17:03:35 +00:00
|
|
|
webmVideo: false
|
2016-11-25 04:33:48 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-11-26 01:28:53 +00:00
|
|
|
function init ()
|
2016-11-25 04:33:48 +00:00
|
|
|
{
|
|
|
|
var videoElement = document.createElement('video');
|
|
|
|
var result = !!videoElement.canPlayType;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (result)
|
|
|
|
{
|
|
|
|
if (videoElement.canPlayType('video/ogg; codecs="theora"').replace(/^no$/, ''))
|
|
|
|
{
|
|
|
|
Video.oggVideo = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (videoElement.canPlayType('video/mp4; codecs="avc1.42E01E"').replace(/^no$/, ''))
|
|
|
|
{
|
|
|
|
// Without QuickTime, this value will be `undefined`. github.com/Modernizr/Modernizr/issues/546
|
|
|
|
Video.h264Video = true;
|
|
|
|
Video.mp4Video = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (videoElement.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/, ''))
|
|
|
|
{
|
|
|
|
Video.webmVideo = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (videoElement.canPlayType('video/webm; codecs="vp9"').replace(/^no$/, ''))
|
|
|
|
{
|
|
|
|
Video.vp9Video = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (videoElement.canPlayType('application/x-mpegURL; codecs="avc1.42E01E"').replace(/^no$/, ''))
|
|
|
|
{
|
|
|
|
Video.hlsVideo = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e)
|
|
|
|
{
|
|
|
|
// Nothing to do
|
|
|
|
}
|
|
|
|
|
|
|
|
return Video;
|
|
|
|
}
|
|
|
|
|
2016-11-26 01:28:53 +00:00
|
|
|
module.exports = init();
|