vue trtc 实时音视频通话 建立房间 退出房间 监听房间

                        <div class="stream-content">
                            <!-- <p>远端流</p> -->
                            <div id="remote_stream"></div>
                            <!-- <p>本地流</p> -->
                            <div id="local_stream">
                                <img :src="Camera" alt="" @click="toggleCamera"
                                    style="width: 40px;height: 40px;position: absolute;z-index: 100;top: 200px;left: 100px;" />
                                <img :src="mic" alt="" @click="micBtn"
                                    style="width: 40px;height: 40px;position: absolute;z-index: 130;top: 200px; left: 144px;" />
                            </div>
                        </div>

<script>

import $ from "jquery";
import TRTC from "trtc-js-sdk";
  import {
    
    APP_INFO,
    ROLE_LIST
} from "@/config/constant.js";
image.png
export default {
    components: {},
    props: [],
    data() {
        return {
            Camera: require('../../assets/images/big-camera-on.png'), //  摄像头
            mic: require('../..//assets/images/big-mic-on.png'), //  麦克风
            roomId: 11111, //  房间id
            localStream: null,
            remoteStream: null,
            userSelected: localStorage.getItem('userName'),
            userInfo: {},
        };
    },
    methods: {
        getUserSig() {
            // 获取签名
            if (APP_INFO.APP_ID && APP_INFO.SECRET_KEY) {
                getUserId(this.userSelected).then(response => {
                    const {
                        data
                    } = response
                    if (data) {
                        const userInfoObj = {
                            sdkAppId: APP_INFO.APP_ID,
                            userSig: data,
                            userId: this.userSelected,
                        };
                        this.userInfo = userInfoObj;
                    } else {
                        this.handleGetUserSigError("");
                    }
                    this.userInfo.userId && this.initClient();
                });
            } else {
                this.handleGetUserSigError();
            }
        },
        handleGetUserSigError() {
            this.$alert(
                "获取签名失败,请检查APP_ID和SECRET_KEY配置是否正确",
                "获取签名失败", {
                    confirmButtonText: "确定",
                    type: "warning",
                }
            );
        },
        // 摄像头 打开关闭
        toggleCamera() {
            this.isCameraOpen = !this.isCameraOpen;
            if (this.isCameraOpen) {
                this.Camera = require('../../assets/images/big-camera-on.png')
                this.localStream.unmuteVideo();
            } else {
                this.Camera = require('../../assets/images/big-camera-off.png')
                this.localStream.muteVideo();
            }
        },
        // 麦克风  打开关闭
        micBtn() {
            this.isradioOpen = !this.isradioOpen;
            if (this.isradioOpen) {
                this.mic = require('../../assets/images/big-mic-on.png')
                this.localStream.unmuteAudio();
            } else {
                this.mic = require('../../assets/images/big-mic-off.png')
                this.localStream.muteAudio();
            }
        },
        /**
         * 在获取用户签名的前提下进行创建clent初始化
         */
        initClient() {
            
            this.client = TRTC.createClient({
                mode: "rtc", //mode: 实时音视频通话模式,设置为‘rtc’,互动直播模式,设置为'live'
                sdkAppId: this.userInfo.sdkAppId,
                userSig: this.userInfo.userSig,
                userId: this.userInfo.userId,
            });
            this.userList.push(this.userInfo.userId)
            // this.client && this.joinRoom();
        },
        // 进房间
        joinRoom(Id, recordId) {
            this.roomId = Id
            let that = this
            this.timer = setTimeout(function() {
                that.quitRoom() // 三十秒无人接听自动挂断
            }, 30000);
            // 远端用户进房通知,只有主动推流的用户能够接收到
            this.client.on('peer-join', evt => {
                const userId = evt.userId;
                console.log('peer-join ' + userId);
                if (userId !== this.userInfo.userId) {
                    this.userList.push(userId)
                }
            });
            // 远端用户离开房间通知
            this.client.on('peer-leave', evt => {
                const userId = evt.userId;
                this.userList = this.userList.filter((item) => {
                    return item != userId
                })
                if (that.userList.length == 1 && that.userList[0] == that.userInfo.userId) {
                    that.quitRoom() //  房间只剩下自己一个人  自动挂断房间
                
                }

                console.log('peer-leave ' + userId);
            });
            // 请在 Client.join() 进房前注册 Client.on('stream-added') 事件以确保您不会错过远端用户进房通知。
            this.client.on("stream-added", (event) => {
                const remoteStream = event.stream;
                clearInterval(that.timer);
                console.log("远端流增加: " + remoteStream.getId());
                this.remoteStream = remoteStream;
                remoteStream.on("connection-state-changed", (event) => {
                    console.log(`prevState: ${event.prevState}, state: ${event.state}`);
                });
                //订阅远端流
                this.client.subscribe(remoteStream);
            });
            this.client.on("stream-subscribed", (event) => {
                const remoteStream = event.stream;
                console.log("远端流订阅成功:" + remoteStream.getId());
                // 播放远端流
                remoteStream.play("remote_stream");
                if (remoteStream.userId_.indexOf("weixin") == -1) {    //  这里是获取是不是小程序端过来的 远程端
                    const videoLoading = document.querySelector(
                        `#player_${remoteStream.getId()}`
                    );
                                           //单独设置远程端某个视频的 样式
                    videoLoading.setAttribute(
                        "style",
                        "position: absolute;height: 250px;margin: 0 0 25px 0;width: 300px;right: 49px;top: 343px;"
                    );
                } else {
             //是小程序端过来的 单独处理
                    this.videoOk = $(`#video_${remoteStream.id_}`).get(0); //  获取video  视频id
                    this.trtcRecording(Id, remoteStream.userId_, recordId)   //  进行云端录制  这里调用方法   后台提供接口  把房间号   小程序的userid    传到后台
                
                }
            });
            // 2、进入音视频通话房间
            this.client
                .join({
                    roomId: parseInt(Id),
                    role: "anchor"
                })
                .then(() => {
                    // join room success
                    console.log("join room success");
                    // 3、发布本地流和订阅远端流
                    const localStream = TRTC.createStream({
                        userId: this.userInfo.userId,
                        audio: true, // 开启声音
                        video: true, // 开启视频
                    });
                    // localStream.setVideoProfile("360p");
                    localStream.setVideoProfile({
                        width: 522,
                        height: 500,
                        frameRate: 15,
                        bitrate: 400 /* kpbs */ ,
                    });

                    localStream
                        .initialize()
                        .then(() => {
                            console.log("初始化本地流成功");
                            localStream.play("local_stream");
                            this.client
                                .publish(localStream)
                                .then(() => {
                                    console.log("本地流发布成功");
                                })
                                .catch((error) => {
                                    console.error("本地流发布失败 " + error);
                                });
                        })
                        .catch((error) => {
                            console.error("初始化本地流失败 " + error);
                        });
                    this.localStream = localStream;
                })
                .catch((error) => {
                    console.error("远端流订阅失败: " + error);
                });
        },
        // 退出房间
        quitRoom() {
            // 取消发布本地流
            let data = {}
            this.client
                .unpublish(this.localStream)
                .then(() => {})
                .catch((err) => console.error("取消发布本地流失败" + err));
            this.localStream.close();
            this.client
                .leave()
                .then(() => {
                    this.localStream.stop();
                    // this.localStream.muteAudio();
                    // 关闭视频通话
                    const videoTrack = this.localStream.getVideoTrack();
                    if (videoTrack) {
                        this.localStream.removeTrack(videoTrack).then(() => {
                            console.log("remove video call success");
                            // 关闭摄像头
                            videoTrack.stop();
                        });
                    }
                    // 退房成功,可再次调用client.join重新进房开启新的通话。
                    console.log("退出房间成功");
                })
                .catch((error) => {
                    console.error("退房失败" + error);
                    // 错误不可恢复,需要刷新页面。
                });
        },
    

        // 接听视频
        joinOk(data) {   
    
            this.joinRoom(data.roomNumber, data.id) //拨打电话
            
        },
    
      //切换页面  退出房间
    beforeDestroy() {

        if (this.dataValue.callStatus) {
            this.quitRoom()
        }

    },


};

</script>

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,463评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,868评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,213评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,666评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,759评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,725评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,716评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,484评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,928评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,233评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,393评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,073评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,718评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,308评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,538评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,338评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,260评论 2 352

推荐阅读更多精彩内容