
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
webrtc-meeting-m
Advanced tools
WebRTC 技术由 Google 最先提出,目前主要在桌面版 Chrome 浏览器、桌面版 Safari 浏览器以及移动版的 Safari 浏览器上有较为完整的支持,其他平台(例如 Android 平台的浏览器)支持情况均比较差。
操作系统 | 浏览器类型 | 浏览器最低 版本要求 | 接收(播放) | 发送(上麦) | 屏幕分享 | SDK 版本要求 |
---|---|---|---|---|---|---|
Mac OS | 桌面版 Safari 浏览器 | 11+ | 支持 | 支持 | 支持(需要 Safari13+ 版本) | - |
Mac OS | 桌面版 Chrome 浏览器 | 56+ | 支持 | 支持 | 支持(需要 Chrome72+ 版本) | - |
Mac OS | 桌面版 Firefox 浏览器 | 56+ | 支持 | 支持 | 支持(需要 Firefox66+ 版本) | v4.7.0+ |
Mac OS | 桌面版 Edge 浏览器 | 80+ | 支持 | 支持 | 支持 | v4.7.0+ |
Windows | 桌面版 Chrome 浏览器 | 56+ | 支持 | 支持 | 支持(需要 Chrome72+ 版本) | - |
Windows | 桌面版 QQ 浏览器(极速内核) | 10.4+ | 支持 | 支持 | 不支持 | - |
Windows | 桌面版 Firefox 浏览器 | 56+ | 支持 | 支持 | 支持(需要 Firefox66+ 版本) | v4.7.0+ |
Windows | 桌面版 Edge 浏览器 | 80+ | 支持 | 支持 | 支持 | v4.7.0+ |
iOS 11.1.2+ | 移动版 Safari 浏览器 | 11+ | 支持 | 支持 | 不支持 | - |
iOS 12.1.4+ | 微信内嵌网页 | - | 支持 | 不支持 | 不支持 | - |
Android | 移动版 QQ 浏览器 | - | 不支持 | 不支持 | 不支持 | - |
Android | 移动版 UC 浏览器 | - | 不支持 | 不支持 | 不支持 | - |
Android | 微信内嵌网页(TBS 内核) | - | 支持 | 支持 | 不支持 | - |
Android | 微信内嵌网页(XWEB 内核) | - | 支持 | 支持 | 不支持 | - |
npm install webrtc-meeting --save
import webrtcMeeting from 'webrtc-meeting';
Vue.use(webrtcMeeting);
this.$useRtcMeeting(
{
clientConfig: {
rtcClient: {
sdkAppId: XXXXX,
userId: 'user_u1',
userSig: 'XXXXX',
roomId: XXX,
enableAudioVolumeEvaluation: true, // 是否开启音量评估
enableNetworkQualityEvaluation: true // 是否开启网络质量评估
},
shareClientConfig: {
sdkAppId: XXXXX,
userId: 'share_user_u1',
userSig: 'XXXXX',
roomId: XXX
}
},
onCheckSuccess: () => {
console.info('检查成功');
},
onCheckFail: () => {
console.info('检查失败');
},
onRtcStart: () => {
console.info('视频开始');
},
onRtcEnd: () => {
console.info('视频结束');
}
}
)
FAQs
webrtc-meeting-m plugin
We found that webrtc-meeting-m demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.