|
@@ -34,8 +34,11 @@ import javax.annotation.Resource;
|
|
|
import java.io.*;
|
|
|
import java.text.ParseException;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.time.format.DateTimeFormatter;
|
|
|
import java.util.*;
|
|
|
import java.util.concurrent.Callable;
|
|
|
+import java.util.concurrent.CompletableFuture;
|
|
|
import java.util.concurrent.ExecutionException;
|
|
|
import java.util.concurrent.ExecutorService;
|
|
|
import java.util.concurrent.Executors;
|
|
@@ -491,7 +494,7 @@ ffmpeg -i "concat:1.ts|2.ts" -c copy output.mp4
|
|
|
sc = serverConfig;
|
|
|
wsUrl = caneraConfig.getWsUrl();
|
|
|
recordUrl = caneraConfig.getRecordUrl();
|
|
|
- hkUrl=caneraConfig.getHkUrl();
|
|
|
+ hkUrl = caneraConfig.getHkUrl();
|
|
|
}
|
|
|
|
|
|
|
|
@@ -772,6 +775,15 @@ ffmpeg -i "concat:1.ts|2.ts" -c copy output.mp4
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
+ * RTSP流下载
|
|
|
+ */
|
|
|
+ public static void streamUrlDownload(String url, String code) {
|
|
|
+ log.info(ffmpegPath + " -i " + url + " -c copy /opt/stream/map" + code);
|
|
|
+ cUtil.cmd(ffmpegPath + " -i " + url + " -c copy /opt/stream/map" + code);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
public static List<Map<String, Object>> filterRecordList(String channel,
|
|
|
Date startTm,
|
|
|
Date endTm,
|
|
@@ -890,42 +902,63 @@ ffmpeg -i "concat:1.ts|2.ts" -c copy output.mp4
|
|
|
}
|
|
|
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
- public void previewURLs(CamerasVo camerasVo){
|
|
|
+
|
|
|
+
|
|
|
+ public void previewURLs(CamerasVo camerasVo) {
|
|
|
String result = null;
|
|
|
- String url="http://"+hkUrl+"/api/video/v2/cameras/previewURLs";
|
|
|
+ String url = "http://" + hkUrl + "/api/video/v2/cameras/previewURLs";
|
|
|
try {
|
|
|
result = HttpClientUtil.postJson(url, JSON.toJSONString(camerasVo));
|
|
|
} catch (Exception e) {
|
|
|
- log.error("previewURLs------------>"+e.getMessage());
|
|
|
+ log.error("previewURLs------------>" + e.getMessage());
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
JSONObject outJson = (JSONObject) JSONObject.parse(result);
|
|
|
- if ("200".equals(outJson.getString("code"))) {
|
|
|
- log.info("outJson----->"+outJson);
|
|
|
+ if ("0".equals(outJson.getString("code"))) {
|
|
|
+ log.info("outJson----->" + outJson);
|
|
|
JSONObject data = outJson.getJSONObject("data");
|
|
|
- String urls=data.getString("url");
|
|
|
- HttpUtils.sendGet(historyUrl+"rtsp/api/pull?target="+urls+"&streamPath="+camerasVo.getCameraIndexCode()+"/"+camerasVo.getCameraIndexCode()+"&save=0");
|
|
|
+ String urls = data.getString("url");
|
|
|
+ HttpUtils.sendGet(historyUrl + "rtsp/api/pull?target=" + urls + "&streamPath=" + camerasVo.getCameraIndexCode() + "/" + camerasVo.getCameraIndexCode() + "&save=0");
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
-
|
|
|
- public AjaxResult playbackURLs(PlaybackVo playbackVo){
|
|
|
- String result = null;
|
|
|
- String url="http://"+hkUrl+"/api/video/v2/cameras/playbackURLs";
|
|
|
- try {
|
|
|
- result = HttpClientUtil.postJson(url, JSON.toJSONString(playbackVo));
|
|
|
- } catch (Exception e) {
|
|
|
- log.error("playbackURLs------------>"+e.getMessage());
|
|
|
- e.printStackTrace();
|
|
|
- }
|
|
|
- JSONObject outJson = (JSONObject) JSONObject.parse(result);
|
|
|
- if ("200".equals(outJson.getString("code"))) {
|
|
|
- log.info("outJson----->"+outJson);
|
|
|
- return AjaxResult.success(outJson);
|
|
|
- }
|
|
|
- return AjaxResult.error("方法调用异常");
|
|
|
+
|
|
|
+ public void playbackURLs(List<String> list) {
|
|
|
+ CompletableFuture future = CompletableFuture.supplyAsync(() -> {
|
|
|
+ for (String code : list) {
|
|
|
+ PlaybackVo playbackVo = new PlaybackVo();
|
|
|
+ playbackVo.setCameraIndexCode(code);
|
|
|
+
|
|
|
+ LocalDateTime currentTime = LocalDateTime.now();
|
|
|
+
|
|
|
+ LocalDateTime beforeTenMinutes = currentTime.minusMinutes(10);
|
|
|
+
|
|
|
+ LocalDateTime afterTenMinutes = currentTime.plusMinutes(10);
|
|
|
+
|
|
|
+ DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
|
|
|
+ playbackVo.setBeginTime(beforeTenMinutes.format(formatter));
|
|
|
+ playbackVo.setEndTime(afterTenMinutes.format(formatter));
|
|
|
+
|
|
|
+
|
|
|
+ String result = null;
|
|
|
+ String url = "http://" + hkUrl + "/api/video/v2/cameras/playbackURLs";
|
|
|
+ try {
|
|
|
+ result = HttpClientUtil.postJson(url, JSON.toJSONString(playbackVo));
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error("playbackURLs------------>" + e.getMessage());
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ JSONObject outJson = (JSONObject) JSONObject.parse(result);
|
|
|
+ if ("0".equals(outJson.getString("code"))) {
|
|
|
+ log.info("outJson----->" + outJson);
|
|
|
+ JSONObject data = outJson.getJSONObject("data");
|
|
|
+ String urls = data.getString("url");
|
|
|
+ streamUrlDownload(urls, playbackVo.getCameraIndexCode());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return 1;
|
|
|
+ });
|
|
|
+ future.join();
|
|
|
}
|
|
|
|
|
|
public static void main(String[] args) throws InterruptedException, ParseException, IOException {
|