|
@@ -80,7 +80,7 @@ public class CameraUtil {
|
|
|
|
|
|
|
|
|
public static String historyPlayListStr(String channel, Date startTm, Date endTm) {
|
|
|
- List<String> list = historyPlayList(channel, startTm, endTm);
|
|
|
+ List<String> list = historyPlayList(channel, startTm, endTm, mappingUrl);
|
|
|
String ph = "/flv/" + DateUtils.parseDateToStr(DateUtils.YYYYMMDDHHMMSS, new Date())
|
|
|
+ "/" + channel + "/"
|
|
|
+ UUID.randomUUID().toString() + ".flv";
|
|
@@ -94,7 +94,7 @@ public class CameraUtil {
|
|
|
}
|
|
|
|
|
|
|
|
|
- public static List<String> historyPlayList(String channel, Date startTm, Date endTm) {
|
|
|
+ public static List<String> historyPlayList(String channel, Date startTm, Date endTm, String mappingUrl) {
|
|
|
if (StringUtils.isBlank(channel)
|
|
|
|| ObjectUtils.isEmpty(startTm)
|
|
|
|| ObjectUtils.isEmpty(endTm)) {
|