Skip to content Skip to sidebar Skip to footer

Html5 Video Tag Volume Support

i had a question on some devices like iPad and Android Tables you cannt change Volume of Video Tags becuase Volume API dont supported on this devices. have yo a idea how i can dete

Solution 1:

The best I could come up with is this:

functionvolumeChangeSupported () {
    var ua = navigator.userAgent.toLowerCase();
    // got information from jplayer:var noVolume = /ipad|iphone|ipod|android|blackberry|windows ce|windows phone|webos|playbook/.exec(ua);

    if (noVolume) {
        if (noVolume[0] === 'android' && /gecko/.test(ua)) {
            // Firefox on android DOES support changing the volume:returntrue;
        }
        else {
            returnfalse;
        }
    }
    returntrue;
}

This doesn't really "detect" support for changing the volume. I got this information partly from jPlayer and partly from my own experience testing Firefox 19 on an old Android 3 tablet. Who knows if Firefox on an Android phone or a different Android version behaves differently.

But before this I tried to detect volume change support like this:

function volumeChangeSupported () {
    var audio = new Audio();
    audio.volume = 0.5;
    return audio.volume === 0.5;
}

This yielded the correct result for iPhone Safari and Android Firefox, but not for other Android Browsers (the "Android Browser" and "Dolphin", which can't change the volume but had audio.volume === 0.5 to be true).

Post a Comment for "Html5 Video Tag Volume Support"