修复自动点播
This commit is contained in:
parent
c44d61929e
commit
0a34a587c0
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user