2016-11-26 01:28:53 +00:00
|
|
|
var Browser = require('./Browser');
|
|
|
|
|
2016-11-25 04:33:48 +00:00
|
|
|
var Audio = {
|
|
|
|
|
2017-08-01 12:10:08 +00:00
|
|
|
// @property {boolean} audioData - Are Audio tags available?
|
2016-11-25 04:33:48 +00:00
|
|
|
audioData: false,
|
|
|
|
|
2017-08-01 12:10:08 +00:00
|
|
|
// @property {boolean} webAudio - Is the WebAudio API available?
|
2016-11-25 04:33:48 +00:00
|
|
|
webAudio: false,
|
|
|
|
|
2017-08-01 12:10:08 +00:00
|
|
|
// @property {boolean} ogg - Can this device play ogg files?
|
2016-11-25 04:33:48 +00:00
|
|
|
ogg: false,
|
|
|
|
|
2017-08-01 12:10:08 +00:00
|
|
|
// @property {boolean} opus - Can this device play opus files?
|
2016-11-25 04:33:48 +00:00
|
|
|
opus: false,
|
|
|
|
|
2017-08-01 12:10:08 +00:00
|
|
|
// @property {boolean} mp3 - Can this device play mp3 files?
|
2016-11-25 04:33:48 +00:00
|
|
|
mp3: false,
|
|
|
|
|
2017-08-01 12:10:08 +00:00
|
|
|
// @property {boolean} wav - Can this device play wav files?
|
2016-11-25 04:33:48 +00:00
|
|
|
wav: false,
|
|
|
|
|
2017-08-01 12:10:08 +00:00
|
|
|
// Can this device play m4a files?
|
|
|
|
// @property {boolean} m4a - True if this device can play m4a files.
|
2016-11-25 04:33:48 +00:00
|
|
|
m4a: false,
|
|
|
|
|
2017-08-01 12:10:08 +00:00
|
|
|
// @property {boolean} webm - Can this device play webm files?
|
2016-11-25 04:33:48 +00:00
|
|
|
webm: false,
|
|
|
|
|
2017-08-01 12:10:08 +00:00
|
|
|
// @property {boolean} dolby - Can this device play EC-3 Dolby Digital Plus files?
|
2016-11-25 04:33:48 +00:00
|
|
|
dolby: false
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-11-26 01:28:53 +00:00
|
|
|
function init ()
|
2016-11-25 04:33:48 +00:00
|
|
|
{
|
|
|
|
Audio.audioData = !!(window['Audio']);
|
2017-11-09 13:43:56 +00:00
|
|
|
|
2016-11-25 04:33:48 +00:00
|
|
|
Audio.webAudio = !!(window['AudioContext'] || window['webkitAudioContext']);
|
|
|
|
|
|
|
|
var audioElement = document.createElement('audio');
|
|
|
|
|
|
|
|
var result = !!audioElement.canPlayType;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (result)
|
|
|
|
{
|
|
|
|
if (audioElement.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/, ''))
|
|
|
|
{
|
|
|
|
Audio.ogg = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (audioElement.canPlayType('audio/ogg; codecs="opus"').replace(/^no$/, '') || audioElement.canPlayType('audio/opus;').replace(/^no$/, ''))
|
|
|
|
{
|
|
|
|
Audio.opus = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (audioElement.canPlayType('audio/mpeg;').replace(/^no$/, ''))
|
|
|
|
{
|
|
|
|
Audio.mp3 = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mimetypes accepted:
|
|
|
|
// developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements
|
|
|
|
// bit.ly/iphoneoscodecs
|
|
|
|
if (audioElement.canPlayType('audio/wav; codecs="1"').replace(/^no$/, ''))
|
|
|
|
{
|
|
|
|
Audio.wav = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (audioElement.canPlayType('audio/x-m4a;') || audioElement.canPlayType('audio/aac;').replace(/^no$/, ''))
|
|
|
|
{
|
|
|
|
Audio.m4a = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (audioElement.canPlayType('audio/webm; codecs="vorbis"').replace(/^no$/, ''))
|
|
|
|
{
|
|
|
|
Audio.webm = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (audioElement.canPlayType('audio/mp4;codecs="ec-3"') !== '')
|
|
|
|
{
|
|
|
|
if (Browser.edge)
|
|
|
|
{
|
|
|
|
Audio.dolby = true;
|
|
|
|
}
|
|
|
|
else if (Browser.safari && Browser.safariVersion >= 9)
|
|
|
|
{
|
|
|
|
if ((/Mac OS X (\d+)_(\d+)/).test(navigator.userAgent))
|
|
|
|
{
|
|
|
|
var major = parseInt(RegExp.$1, 10);
|
|
|
|
var minor = parseInt(RegExp.$2, 10);
|
|
|
|
|
|
|
|
if ((major === 10 && minor >= 11) || major > 10)
|
|
|
|
{
|
|
|
|
Audio.dolby = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e)
|
|
|
|
{
|
|
|
|
// Nothing to do here
|
|
|
|
}
|
|
|
|
|
|
|
|
return Audio;
|
|
|
|
}
|
|
|
|
|
2016-11-26 01:28:53 +00:00
|
|
|
module.exports = init();
|