[Webkit-unassigned] [Bug 179411] getUserMedia constraints have no affect

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Nov 17 17:35:11 PST 2018


https://bugs.webkit.org/show_bug.cgi?id=179411

--- Comment #3 from Kerry Davis <kdavis at airbridgelabs.com> ---
Safari PWA version of this code still indicates that navigator.mediaDevices and thus navigator.mediaDevices.getUserMedia are both null, Oddly enough creating and analyser node seems to work (albeit useless without getusermedia

if (!noanalyser){
        try{
            //analyser = new AnalyserNode(acontext);
            analyser = acontext.createAnalyser();
            try{
                analyser.fftSize = 32768; // Maximum FFT size is 32768 by the standard; Desktop Safari handles this but apparently not mobile
            }catch(err){
                analyser = null;
                testlog("can't create analyser.fftSize == 32768");
            }
        }catch(err){
            testlog("can't create analyser");
        }
    }

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20181118/7509abd4/attachment.html>


More information about the webkit-unassigned mailing list