修复自动点播

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 app = json.getString("app");
String streamId = json.getString("stream"); String streamId = json.getString("stream");
if ("rtp".equals(app)) { if ("rtp".equals(app)) {
String[] s = streamId.split("_"); String[] s = streamId.split("/");
if (s.length == 4) { if (s.length == 2) {
String deviceId = s[2]; String deviceId = s[0];
String channelId = s[3]; String channelId = s[1];
Device device = storager.queryVideoDevice(deviceId); Device device = storager.queryVideoDevice(deviceId);
if (device != null) { if (device != null) {
UUID uuid = UUID.randomUUID(); UUID uuid = UUID.randomUUID();