Exemple #1
0
        /// <summary>
        /// 视频直播
        /// </summary>
        public void Send_VideoInteract()
        {
            string rtspAddress = _screenInteract.beginVideoInteract();
            var    request     = new ScreenInteract_Request {
                url = rtspAddress
            };

            SendMessage(request, CommandType.ScreenInteract);
        }
Exemple #2
0
        public void Send_StudentShowVideoToTeacher(string fbl = null)
        {
            CreateScreenInteract();
            string rtspAddress = _screenInteract.beginVideoInteract(fbl);
            var    request     = new ScreenInteract_Request {
                url = rtspAddress
            };

            SendMessage(request, CommandType.StudentShowToTeacher);
        }
Exemple #3
0
        /// <summary>
        /// 屏幕广播
        /// </summary>
        public void Send_ScreenInteract(string fbl = null)
        {
            CreateScreenInteract();
            string rtspAddress = _screenInteract.beginScreenInteract(fbl);
            var    request     = new ScreenInteract_Request {
                url = rtspAddress
            };

            SendMessage(request, CommandType.ScreenInteract);
        }