|
方式prototype为httpflv时,日志可以正常显示on open chanle, result Ok
但是callback里的console.log(response.emms.code + '视频打开成功,可以获取URl了') 这块没有执行
- jSWShowVideoPlay(prototype) {
- const that = this
- that.isShowJSWVideo = true
- const chanel = window.session.swGetPuChanel(this.puId, 0)
- const strVideoDivId = 'id_video' // null 只获取url 不进行播放
- const media = 2 // 10 音频传输
- if (chanel) {
- var result = chanel.swOpenEx({
- div: strVideoDivId,
- prototype: prototype, // rtmp > hls
- media: media, // 打开视频httpflv,目前只支持音视频同传,之后会改
- callback: function(options, response) {
- debugger
- console.log(response.emms.code + '视频打开成功,可以获取URl了')
- that.jSWGetUrlVideo()
- }
- })
- if (result !== window.jSW.RcCode.RC_CODE_S_OK) {
- console.log('打开视频失败: ' + result)
- }
- } else {
- console.log('没有该设备通道')
- }
- },
copycode |
|