Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
rtc-beauty-plugin
Advanced tools
TRTC 可以通过插件,帮助开发者轻松实现基础美颜功能。用户可以调整美颜参数,实现自然的美颜效果。 也可以通过插件来对视频增加人像分割的处理,在通话过程中呈现背景虚化或者虚拟背景的效果。 点击此处 体验效果。
浏览器 | 版本 |
---|---|
Chrome | 65+ |
Firefox | 70+ |
Safari | 12+ |
Edge | 80+ |
移动端浏览器 | 不支持 |
微信内嵌网页 | 不支持 |
注意事项
如果您需要使用 RTCBeautyPlugin
的美颜能力时,请将 TRTC SDK 升级到 4.11.1 及以上版本。
如果您需要使用 RTCBeautyPlugin
的人像分割能力时,请将 TRTC SDK 升级到 4.11.10 及以上版本。
在项目中安装 RTCBeautyPlugin 插件。
npm install rtc-beauty-plugin
一个 RTCBeautyPlugin 实例只能用来处理一条本地音视频流。
const rtcBeautyPlugin = new RTCBeautyPlugin();
const beautyStream = rtcBeautyPlugin.generateBeautyStream(localStream);
// 发布经过美颜后的流
await client.publish(beautyStream);
将 localStream 处理成经过美颜后的 beautyStream。
// 初始化美颜插件
const rtcBeautyPlugin = new RTCBeautyPlugin();
await localStream.initialize();
// 生成美颜处理后的流
const beautyStream = rtcBeautyPlugin.generateBeautyStream(localStream);
// 发布经过美颜后的流
await client.publish(beautyStream);
功能: 调节美颜插件的美颜程度。
如果您想关闭美颜效果,将三个参数都设置为 0 即可。
Name | Type | Description |
---|---|---|
beauty | number | 美颜度( 0 - 1 ,默认为 0.5 ) |
brightness | number | 明亮度( 0 - 1 ,默认为 0.5 ) |
ruddy | number | 红润度( 0 - 1 ,默认为 0.5 ) |
beautyPlugin.setBeautyParam({ beauty: 0.5, brightness: 0.5, ruddy: 0.5 });
// 如果您想关闭美颜效果,将三个参数都设置为 0 即可,如果要重新开启,设置任意一个参数 > 0 即可打开美颜能力。
beautyPlugin.setBeautyParam({ beauty: 0, brightness: 0, ruddy: 0 });
功能: 如果您需要使用人像分割功能,您可以在一开始就调用 loadResources() 方法,来加载人像分割的计算资源。
const rtcBeautyPlugin = new RTCBeautyPlugin();
// 加载计算资源
await rtcBeautyPlugin.loadResources();
将 localStream 处理成经过人像分割处理后的 beautyStream。
Name | Type | Description |
---|---|---|
localStream | LocalStream | 通过 TRTC.createStream 方法创建的本地流 |
type | string | blur 为背景虚化,virtual 为虚拟背景 |
img | HTMLImageElement | 用于在虚拟背景中生成背景图,建议图片分辨率不超过480p,避免计算时性能开销过大 |
// 生成背景虚化的流
const rtcBeautyPlugin = new RTCBeautyPlugin();
await rtcBeautyPlugin.loadResources();
await localStream.initialize();
const virtualStream = await rtcBeautyPlugin.generateVirtualStream({
localStream: localStream,
type: 'blur'
});
await client.publish(virtualStream);
// 生成虚拟背景的流
const rtcBeautyPlugin = new RTCBeautyPlugin();
await rtcBeautyPlugin.loadResources();
await localStream.initialize();
const virtualStream = await rtcBeautyPlugin.generateVirtualStream({
localStream: localStream,
type: 'virtual',
img: document.getElementById('img'),
});
await client.publish(virtualStream);
生成既有人像分割处理,又有美颜功能的流
Name | Type | Description |
---|---|---|
localStream | LocalStream | 通过 TRTC.createStream 方法创建的本地流 |
type | string | blur 为背景虚化,virtual 为虚拟背景 |
img | HTMLImageElement | 用于在虚拟背景中生成背景图,建议图片分辨率不超过480p,避免计算时性能开销过大 |
const rtcBeautyPlugin = new RTCBeautyPlugin();
await rtcBeautyPlugin.loadResources();
await localStream.initialize();
// 生成人像分割和美颜处理后的流
const stream = await rtcBeautyPlugin.generateStream({
localStream: this.localStream_,
type: 'virtual',
img: document.getElementById('img'),
});
// 发布经过美颜后的流
await client.publish(stream);
功能: 使用人像分割的自定义背景功能时用于动态改变背景图。
Name | Type | Description |
---|---|---|
img | HTMLImageElement | 用于在虚拟背景中生成背景图,建议图片分辨率不超过480p,避免计算时性能开销过大 |
beautyPlugin.setBackground(document.getElementById('newImg'));
功能: 销毁美颜插件。
使用方式: 在推流结束之后,可以销毁美颜插件,避免内存占用和性能消耗。
await client.leave();
beautyPlugin.destroy();
一个 RTCBeautyPlugin
实例只能处理一条本地流。
使用 replaceTrack
等操作会导致您的 localStream
美颜效果消失,请酌情使用。
FAQs
rtc-beauty-plugin for TRTC SDK
The npm package rtc-beauty-plugin receives a total of 22 weekly downloads. As such, rtc-beauty-plugin popularity was classified as not popular.
We found that rtc-beauty-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.