跳到主要内容

发布自定义资源

提示

在 Android 平台至少需要调用 publish(RCRTCMediaType.AudioVideo)publish(RCRTCMediaType.Audio) 方法发布成功音频资源后,再发布自定义视频流才有效。tag 不能包含 _RongCloudRTC 字符。

创建自定义视频资源

  • 示例代码:

    /// 从本地目录下的资源文件创建自定义视频资源,路径需要是平台绝对路径
    engine.createCustomStreamFromFile(path, tag);

设置自定义视频属性

  • 示例代码:

    let config = {
    minBitrate: 500,
    maxBitrate: 2200,
    fps: RCRTCVideoFps.Fps24,
    resolution: RCRTCVideoResolution.Resolution_720x1280,
    };
    engine.setCustomStreamVideoConfig(tag, config);

设置自定义视频资源预览窗口

  • 示例代码:

    导入预览窗口组件

    // 导入 RCRTCView
    import RCRTCView from '@/uni_modules/RongCloud-RTCWrapper/components/RCRTCView';

    // 声明 RCRTCView
    export default {
    components: {
    RCRTCView,
    },
    }

    添加预览窗口

    <!-- 增加 RCRTCView 组件, fitType: 视频填充模式, mirror: 视频是否镜像显示 -->
    <RCRTCView class="customStreamView" ref="customStreamView" :fitType="RCRTCViewFitType.Center" :mirror="true">
    </RCRTCView>

    设置预览窗口

    // 设置预览窗口
    engine.setLocalCustomStreamView(tag, this.$refs.customStreamView.getNativeViewRef(), (code) => {
    if (code === 0) {
    // 设置成功
    } else {
    // 设置失败
    }
    });

发布自定义视频资源

  • 示例代码:

    engine.publishCustomStream(tag);

设置远端自定义视频资源发布监听

  • 示例代码:

    engine.setOnRemoteCustomStreamPublishedListener(({roomId, userId, tag, type}) => {
    // roomId 房间 ID
    // userId 远端用户 ID
    // tag 远端自定义视频资源 tag
    // type 资源类型
    });

订阅远端自定义视频资源

  • 示例代码:

    engine.subscribeCustomStream(userId, tag);

设置远端自定义视频资源预览窗口

  • 示例代码:

    // 设置预览窗口
    engine.setRemoteCustomStreamView(userId, tag, this.$refs.remoteCustomStreamView.getNativeViewRef(), (code) => {
    if (code === 0) {
    // 设置成功
    } else {
    // 设置失败
    }
    });