与master分支同步

This commit is contained in:
Lawrence 2021-01-12 13:50:04 +08:00
parent dd0a234c05
commit 5257c7c9f4
2 changed files with 8 additions and 7 deletions

View File

@ -409,12 +409,7 @@ public class SIPCommander implements ISIPCommander {
try {
MediaServerConfig mediaInfo = redisCatchStorage.getMediaInfo();
String ssrc = streamSession.createPlayBackSsrc();
String streamId = null;
if (rtpEnable) {
streamId = String.format("gb_playback_%s_%s", device.getDeviceId(), channelId);
}else {
streamId = String.format("%08x", Integer.parseInt(ssrc)).toUpperCase();
}
String streamId = String.format("%08x", Integer.parseInt(ssrc)).toUpperCase();
// 添加订阅
JSONObject subscribeKey = new JSONObject();
subscribeKey.put("app", "rtp");

View File

@ -183,7 +183,8 @@ export default {
scanGroup: 0,
tracks: [],
coverPlaying:false,
tracksLoading: false
tracksLoading: false,
recordPlay: ""
};
},
methods: {
@ -318,6 +319,10 @@ export default {
this.convertStop();
}
this.convertKey = ''
if (this.recordPlay != '') {
this.stopPlayRecord();
}
this.recordPlay = ''
},
copySharedInfo: function (data) {
@ -384,6 +389,7 @@ export default {
var streamInfo = res.data;
that.streamId = streamInfo.streamId;
that.videoUrl = streamInfo.ws_flv;
that.recordPlay = true;
});
}
},