|
@@ -121,6 +121,10 @@
|
|
|
<el-tag >RTC:</el-tag>
|
|
<el-tag >RTC:</el-tag>
|
|
|
<span>{{ streamInfo.rtc }}</span>
|
|
<span>{{ streamInfo.rtc }}</span>
|
|
|
</el-dropdown-item>
|
|
</el-dropdown-item>
|
|
|
|
|
+ <el-dropdown-item :command="streamInfo.rtcs">
|
|
|
|
|
+ <el-tag >RTCS:</el-tag>
|
|
|
|
|
+ <span>{{ streamInfo.rtcs }}</span>
|
|
|
|
|
+ </el-dropdown-item>
|
|
|
<el-dropdown-item :command="streamInfo.rtmp">
|
|
<el-dropdown-item :command="streamInfo.rtmp">
|
|
|
<el-tag >RTMP:</el-tag>
|
|
<el-tag >RTMP:</el-tag>
|
|
|
<span>{{ streamInfo.rtmp }}</span>
|
|
<span>{{ streamInfo.rtmp }}</span>
|
|
@@ -322,7 +326,7 @@ export default {
|
|
|
player: {
|
|
player: {
|
|
|
jessibuca : ["ws_flv", "wss_flv"],
|
|
jessibuca : ["ws_flv", "wss_flv"],
|
|
|
livePlayer : ["ws_flv", "wss_flv"],
|
|
livePlayer : ["ws_flv", "wss_flv"],
|
|
|
- webRTC: ["rtc", "rtc"],
|
|
|
|
|
|
|
+ webRTC: ["rtc", "rtcs"],
|
|
|
},
|
|
},
|
|
|
videoHistory: {
|
|
videoHistory: {
|
|
|
date: '',
|
|
date: '',
|
|
@@ -393,7 +397,7 @@ export default {
|
|
|
changePlayer: function (tab) {
|
|
changePlayer: function (tab) {
|
|
|
console.log(this.player[tab.name][0])
|
|
console.log(this.player[tab.name][0])
|
|
|
this.activePlayer = tab.name;
|
|
this.activePlayer = tab.name;
|
|
|
- this.videoUrl = this.streamInfo[this.player[tab.name][0]]
|
|
|
|
|
|
|
+ this.videoUrl = this.getUrlByStreamInfo()
|
|
|
console.log(this.videoUrl)
|
|
console.log(this.videoUrl)
|
|
|
},
|
|
},
|
|
|
openDialog: function (tab, deviceId, channelId, param) {
|
|
openDialog: function (tab, deviceId, channelId, param) {
|