修复自动点播

This commit is contained in:
648540858 2021-08-08 09:18:45 +08:00
parent c44d61929e
commit 0a34a587c0

View File

@ -376,10 +376,10 @@ public class ZLMHttpHookListener {
String app = json.getString("app");
String streamId = json.getString("stream");
if ("rtp".equals(app)) {
String[] s = streamId.split("_");
if (s.length == 4) {
String deviceId = s[2];
String channelId = s[3];
String[] s = streamId.split("/");
if (s.length == 2) {
String deviceId = s[0];
String channelId = s[1];
Device device = storager.queryVideoDevice(deviceId);
if (device != null) {
UUID uuid = UUID.randomUUID();