Merge branch 'master' into dev/ws-log

pull/1682/head
648540858 2024-11-01 10:07:15 +08:00
commit db531ecde1
2 changed files with 3 additions and 3 deletions

View File

@ -112,7 +112,7 @@ mvn package -P war
```
编译如果报错, 一般都是网络问题, 导致的依赖包下载失败
编译完成后在target目录下出现wvp-pro-***.jar/wvp-pro-***.war
编译完成后在target目录下出现 `wvp-pro-VERSION.jar``wvp-pro-VERSION.war` 文件
接下来[配置服务](./_content/introduction/config.md)

View File

@ -267,7 +267,7 @@ public class PlayServiceImpl implements IPlayService {
}
if (s.length == 2) {
log.info("[ZLM HOOK] 预览流未找到, 发起自动点播:{}->{}->{}/{}", event.getMediaServer().getId(), event.getSchema(), event.getApp(), event.getStream());
play(event.getMediaServer(), deviceId, channelId, null, null);
play(event.getMediaServer(), deviceId, channelId, null, (code, msg, data) -> {});
} else if (s.length == 4) {
// 此时为录像回放, 录像回放格式为> 设备ID_通道ID_开始时间_结束时间
String startTimeStr = s[2];
@ -283,7 +283,7 @@ public class PlayServiceImpl implements IPlayService {
startTime, endTime
);
playBack(event.getMediaServer(), device, deviceChannel, startTime, endTime, null);
playBack(event.getMediaServer(), device, deviceChannel, startTime, endTime, (code, msg, data) -> {});
}
}