[
https://issues.apache.org/jira/browse/CB-13384?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16490223#comment-16490223
]
ASF subversion and git services commented on CB-13384:
------------------------------------------------------
Commit 5163d3846558c70753af0d232bec762f337f2c66 in cordova-plugin-camera's
branch refs/heads/master from [~vandervl]
[ https://gitbox.apache.org/repos/asf?p=cordova-plugin-camera.git;h=5163d38 ]
CB-13384: (browser) Added deprecation of video.src compatibility (#288)
* CB-13384: (browser) Added deprecation of video.src compatibility
* CB-13384: Updated to reflect property detection rather than deprecation
exception.
> URL.createObjectURL(stream) is deprecated! Use elem.srcObject = stream
> instead!
> -------------------------------------------------------------------------------
>
> Key: CB-13384
> URL: https://issues.apache.org/jira/browse/CB-13384
> Project: Apache Cordova
> Issue Type: Bug
> Components: cordova-plugin-camera
> Environment: Browser
> * Safari - "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6)
> AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Safari/604.1.38"
> {color:red}(exception){color}
> * Chrome - "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X)
> AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143
> Safari/601.1" {color:#f79232}(deprecation warning){color}
> Reporter: Matt Vander Vliet
> Priority: Trivial
>
> {{CameraProxy.js}} from {{cordova-camera-plugin}} has code deprecated by
> Safari 11, and issues deprecation warnings in Chrome, etc.
> Proposed fix:
> {code}
> var successCallback = function (stream) {
> localMediaStream = stream;
> - video.src = window.URL.createObjectURL(localMediaStream);
> + try {
> + video.src = window.URL.createObjectURL(localMediaStream);
> + } catch (e) {
> + video.srcObject = localMediaStream;
> + }
> video.play();
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]