Merge pull request #939 from xiaoQQya/wvp-28181-2.0
修复设备通道列表按通道类型筛选不准确等问题
This commit is contained in:
commit
6fddd1d34a
@ -271,18 +271,7 @@ public class PlayServiceImpl implements IPlayService {
|
|||||||
streamInfo);
|
streamInfo);
|
||||||
logger.info("[点播成功] deviceId: {}, channelId:{}, 码流类型:{}", device.getDeviceId(),
|
logger.info("[点播成功] deviceId: {}, channelId:{}, 码流类型:{}", device.getDeviceId(),
|
||||||
device.isSwitchPrimarySubStream() ? "辅码流" : "主码流");
|
device.isSwitchPrimarySubStream() ? "辅码流" : "主码流");
|
||||||
String streamUrl;
|
snapOnPlay(mediaServerItemInuse, device.getDeviceId(), channelId, ssrcInfo.getStream());
|
||||||
if (mediaServerItemInuse.getRtspPort() != 0) {
|
|
||||||
streamUrl = String.format("rtsp://127.0.0.1:%s/%s/%s", mediaServerItemInuse.getRtspPort(), "rtp", ssrcInfo.getStream());
|
|
||||||
}else {
|
|
||||||
streamUrl = String.format("http://127.0.0.1:%s/%s/%s.live.mp4", mediaServerItemInuse.getHttpPort(), "rtp", ssrcInfo.getStream());
|
|
||||||
}
|
|
||||||
String path = "snap";
|
|
||||||
String fileName = device.getDeviceId() + "_" + channelId + ".jpg";
|
|
||||||
// 请求截图
|
|
||||||
logger.info("[请求截图]: " + fileName);
|
|
||||||
zlmresTfulUtils.getSnap(mediaServerItemInuse, streamUrl, 15, 1, path, fileName);
|
|
||||||
|
|
||||||
}, (event) -> {
|
}, (event) -> {
|
||||||
inviteInfo.setStatus(InviteSessionStatus.ok);
|
inviteInfo.setStatus(InviteSessionStatus.ok);
|
||||||
|
|
||||||
@ -365,6 +354,7 @@ public class PlayServiceImpl implements IPlayService {
|
|||||||
InviteErrorCode.SUCCESS.getCode(),
|
InviteErrorCode.SUCCESS.getCode(),
|
||||||
InviteErrorCode.SUCCESS.getMsg(),
|
InviteErrorCode.SUCCESS.getMsg(),
|
||||||
streamInfo);
|
streamInfo);
|
||||||
|
snapOnPlay(mediaServerItemInUse, device.getDeviceId(), channelId, stream);
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -440,6 +430,28 @@ public class PlayServiceImpl implements IPlayService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 点播成功时调用截图.
|
||||||
|
*
|
||||||
|
* @param mediaServerItemInuse media
|
||||||
|
* @param deviceId 设备 ID
|
||||||
|
* @param channelId 通道 ID
|
||||||
|
* @param stream ssrc
|
||||||
|
*/
|
||||||
|
private void snapOnPlay(MediaServerItem mediaServerItemInuse, String deviceId, String channelId, String stream) {
|
||||||
|
String streamUrl;
|
||||||
|
if (mediaServerItemInuse.getRtspPort() != 0) {
|
||||||
|
streamUrl = String.format("rtsp://127.0.0.1:%s/%s/%s", mediaServerItemInuse.getRtspPort(), "rtp", stream);
|
||||||
|
} else {
|
||||||
|
streamUrl = String.format("http://127.0.0.1:%s/%s/%s.live.mp4", mediaServerItemInuse.getHttpPort(), "rtp", stream);
|
||||||
|
}
|
||||||
|
String path = "snap";
|
||||||
|
String fileName = deviceId + "_" + channelId + ".jpg";
|
||||||
|
// 请求截图
|
||||||
|
logger.info("[请求截图]: " + fileName);
|
||||||
|
zlmresTfulUtils.getSnap(mediaServerItemInuse, streamUrl, 15, 1, path, fileName);
|
||||||
|
}
|
||||||
|
|
||||||
private StreamInfo onPublishHandlerForPlay(MediaServerItem mediaServerItem, HookParam hookParam, String deviceId, String channelId) {
|
private StreamInfo onPublishHandlerForPlay(MediaServerItem mediaServerItem, HookParam hookParam, String deviceId, String channelId) {
|
||||||
StreamInfo streamInfo = null;
|
StreamInfo streamInfo = null;
|
||||||
Device device = redisCatchStorage.getDevice(deviceId);
|
Device device = redisCatchStorage.getDevice(deviceId);
|
||||||
|
Loading…
Reference in New Issue
Block a user