|
@@ -53,7 +53,7 @@ public class CameraUtil {
|
|
|
public static String historyPlay(List<String> fromVideoFileList, String ph) {
|
|
|
// 视频服务映射路径
|
|
|
// String NewfilePath = flvPath + ph;
|
|
|
- String NewfilePath = BaseConfig.getProfile() + ph;
|
|
|
+ String NewfilePath = BaseConfig.getProfile() + "/" + ph;
|
|
|
log.info("NewfilePath:{}", NewfilePath);
|
|
|
log.info("fromVideoFileList:{}", fromVideoFileList);
|
|
|
if (ObjectUtils.isEmpty(fromVideoFileList) || fromVideoFileList.size() <= 0) {
|
|
@@ -69,7 +69,7 @@ public class CameraUtil {
|
|
|
}).start();
|
|
|
// windows可以 linux不行
|
|
|
// convetor(fromVideoFileList, NewfilePath);
|
|
|
- return Constants.RESOURCE_PREFIX + ph;
|
|
|
+ return Constants.RESOURCE_PREFIX + "/" + ph;
|
|
|
// return mappingUrl + "record/flv/hazard/" + ph;
|
|
|
}
|
|
|
|