We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
关于返回的流如何附加到
Chrome 71 remove URL.createObjectURL from MediaStream
https://developers.google.com/web/updates/2018/10/chrome-71-deps-rems#remove_urlcreateobjecturl_from_mediastream
The sample code does not work in modern browsers and needs to be modified
video.src = window.URL.createObjectURL(stream);
to:
video.srcObject = stream;
The text was updated successfully, but these errors were encountered:
Fix remove URL.createObjectURL #1
2c428a3
Thank you very much, the original book content is relatively old, some demos I have not fully tested
Sorry, something went wrong.
No branches or pull requests
Chrome 71 remove URL.createObjectURL from MediaStream
https://developers.google.com/web/updates/2018/10/chrome-71-deps-rems#remove_urlcreateobjecturl_from_mediastream
The sample code does not work in modern browsers and needs to be modified
to:
The text was updated successfully, but these errors were encountered: