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