TestController.java 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. package com.persagy.cameractl.controller;
  2. import java.io.BufferedReader;
  3. import java.io.File;
  4. import java.io.IOException;
  5. import java.io.InputStream;
  6. import java.io.InputStreamReader;
  7. import java.util.ArrayList;
  8. import java.util.Date;
  9. import java.util.HashMap;
  10. import java.util.List;
  11. import java.util.Map;
  12. import org.slf4j.Logger;
  13. import org.slf4j.LoggerFactory;
  14. import org.springframework.web.bind.annotation.RequestBody;
  15. import com.persagy.cameractl.service.HCNetSDKWindows;
  16. import com.persagy.cameractl.utils.Camera;
  17. import com.persagy.cameractl.utils.OtherTools;
  18. import com.persagy.cameractl.utils.ResultClass;
  19. import com.sun.jna.NativeLong;
  20. import com.sun.jna.ptr.IntByReference;
  21. import cn.hutool.core.date.DateUtil;
  22. //@RestController
  23. public class TestController {
  24. public static Logger logger = LoggerFactory.getLogger(TestController.class);
  25. private volatile boolean isInit = false;
  26. private volatile HCNetSDKWindows hcNetSdk;
  27. //@RequestMapping(value = "/test", method = RequestMethod.POST)
  28. public ResultClass hello(@RequestBody Camera camera) {
  29. ResultClass returnResult = new ResultClass();
  30. String targetFile = OtherTools.getVideoFilePath();
  31. returnResult.name = false;
  32. if (targetFile.equals("")) {
  33. returnResult.reason = "回放文件名称生成失败";
  34. return returnResult;
  35. }
  36. logger.info("playback path: " + targetFile);
  37. File mp4File = new File(targetFile);
  38. String targetFileName = mp4File.getName();
  39. File fileParent = mp4File.getParentFile();
  40. String targetFilePath = fileParent.getPath();
  41. // SDK初始化
  42. boolean init = this.init();
  43. if (!init) {
  44. returnResult.reason = "SDK初始化失败";
  45. return returnResult;
  46. }
  47. // 文件下载,这里不使用原文件,因为还需要转码
  48. String downloadFile = targetFilePath + "/_" + targetFileName;
  49. String downloadVideo = this.downloadVideo(camera, downloadFile);
  50. if (!"true".equals(downloadVideo)) {
  51. returnResult.reason = downloadVideo;
  52. return returnResult;
  53. }
  54. try {
  55. logger.info("-------- start transcoding --------");
  56. Map<String, String> data = new HashMap<String, String>(4);
  57. convetorVideo(downloadFile, targetFile);
  58. data.put("url", OtherTools.playMp4RootUrl + OtherTools.getMp4NamePrefix(targetFileName));
  59. returnResult.resultData = data;
  60. } catch (Exception e) {
  61. e.printStackTrace();
  62. }
  63. returnResult.name = true;
  64. returnResult.reason = "回放文件生成成功";
  65. return returnResult;
  66. }
  67. /**
  68. * 按时间进行视频下载,实现回放
  69. *
  70. * @param Camera 请求参数
  71. * @param filePath 文件路径,包含文件名称及后缀
  72. * @param channel 通道号
  73. * @return
  74. */
  75. private String downloadVideo(Camera camera, String filePath) {
  76. // 注册设备 -1表示失败,其他值表示返回的用户ID值。接口返回失败请调用NET_DVR_GetLastError获取错误码,通过错误码判断出错原因。
  77. HCNetSDKWindows.NET_DVR_DEVICEINFO_V30 m_strDeviceInfo = new HCNetSDKWindows.NET_DVR_DEVICEINFO_V30();
  78. NativeLong lUserID = hcNetSdk.NET_DVR_Login_V30(camera.cameraIp, (short) camera.cameraPort, camera.userName, camera.password, m_strDeviceInfo);
  79. // 注册失败
  80. if (lUserID.longValue() == -1) {
  81. int errCode = hcNetSdk.NET_DVR_GetLastError();
  82. // 返回失败时的错误码
  83. return "设备注册失败,失败码:" + errCode;
  84. }
  85. // 准备文件下载
  86. NativeLong loadHandle = hcNetSdk.NET_DVR_GetFileByTime(lUserID, new NativeLong(camera.channel), getHkTime(camera.startDateStr), getHkTime(camera.endDateStr), filePath);
  87. logger.info("hksdk playback file status: " + loadHandle.longValue());
  88. if (loadHandle.longValue() >= 0) {
  89. // 判断文件夹是否存在
  90. File files = new File(filePath);
  91. if(!files.exists()){
  92. files.mkdirs();
  93. }
  94. // 发送回放开始的信号
  95. hcNetSdk.NET_DVR_PlayBackControl(loadHandle, HCNetSDKWindows.NET_DVR_PLAYSTART, 0, null);
  96. IntByReference pos = new IntByReference();
  97. while (true) {
  98. boolean backFlag = hcNetSdk.NET_DVR_PlayBackControl(loadHandle, HCNetSDKWindows.NET_DVR_PLAYGETPOS, 0, pos);
  99. // 回放下载异常,直接跳出
  100. if (!backFlag) {
  101. logger.warn("hksdk download exception");
  102. break;
  103. }
  104. int produce = pos.getValue();
  105. if (produce > 0) {
  106. logger.info("hksdk download progress: " + produce + "%");
  107. }
  108. if (produce == 100) {//下载成功
  109. hcNetSdk.NET_DVR_StopGetFile(loadHandle);
  110. hcNetSdk.NET_DVR_Logout(lUserID);
  111. logger.info("hksdk exit status: " + hcNetSdk.NET_DVR_GetLastError());
  112. //hcNetSdk.NET_DVR_Cleanup(); // 这里不进行释放
  113. return "true";
  114. }
  115. if (produce > 100) { //下载失败,异常终止,这时返回true
  116. hcNetSdk.NET_DVR_StopGetFile(loadHandle);
  117. logger.info("hksdk exit status: " + hcNetSdk.NET_DVR_GetLastError());
  118. hcNetSdk.NET_DVR_Logout(lUserID);
  119. return "true";
  120. }
  121. }
  122. }
  123. int net_DVR_GetLastError = hcNetSdk.NET_DVR_GetLastError();
  124. logger.error("hksdk download failed: " + net_DVR_GetLastError);
  125. return "文件下载失败,失败码:" + net_DVR_GetLastError;
  126. }
  127. /**
  128. * 初始化SDK
  129. *
  130. * @return
  131. */
  132. private boolean init() {
  133. if (!isInit) {
  134. // 初始化
  135. hcNetSdk = HCNetSDKWindows.INSTANCE;
  136. isInit = hcNetSdk.NET_DVR_Init();
  137. }
  138. return isInit;
  139. }
  140. /**
  141. * 获取海康录像机格式的时间
  142. */
  143. private HCNetSDKWindows.NET_DVR_TIME getHkTime(String timeParam) {
  144. Date time = DateUtil.parse(timeParam);
  145. HCNetSDKWindows.NET_DVR_TIME dvrTime = new HCNetSDKWindows.NET_DVR_TIME();
  146. dvrTime.dwYear = DateUtil.year(time);
  147. dvrTime.dwMonth = DateUtil.month(time) + 1;
  148. dvrTime.dwDay = DateUtil.dayOfMonth(time);
  149. dvrTime.dwHour = DateUtil.hour(time, true);
  150. dvrTime.dwMinute = DateUtil.minute(time);
  151. dvrTime.dwSecond = DateUtil.second(time);
  152. return dvrTime;
  153. }
  154. /**
  155. * 文件转码
  156. *
  157. * @param videoInputFile
  158. * @param videoOutFile
  159. * @throws Exception
  160. */
  161. public static void convetor(String videoInputFile, String videoOutFile) throws Exception {
  162. File sourceFile = new File(videoInputFile);
  163. // 把源MP4转为页面上可播放的MP4
  164. Runtime run = Runtime.getRuntime();
  165. Process p = run.exec("ffmpeg -i \"" + videoInputFile + "\" -c copy -y \"" + videoOutFile + "\"");
  166. // 读取标准输入流、输出流,防止进程阻塞
  167. // 标准输入流(必须写在 waitFor 之前)
  168. String inputStreamStr = OtherTools.consumeInputStream(p.getInputStream());
  169. // 标准错误流(必须写在 waitFor 之前)
  170. String errStreamStr = OtherTools.consumeInputStream(p.getErrorStream());
  171. int retCode = p.waitFor();
  172. if (retCode != 0) {
  173. String errStr = errStreamStr != null ? errStreamStr : inputStreamStr;
  174. logger.error("ffmpeg转换mp4时失败,错误信息:" + errStr);
  175. }
  176. p.destroy();
  177. sourceFile.delete();
  178. }
  179. /**
  180. * 文件转码
  181. *
  182. * @param videoInputFile
  183. * @param videoOutFile
  184. * @throws Exception
  185. */
  186. @SuppressWarnings("unused")
  187. public static void convetorVideo(String videoInputFile, String videoOutFile) throws Exception {
  188. List<String> command = new ArrayList<String>();
  189. command.add("ffmpeg");
  190. command.add("-i");
  191. command.add(videoInputFile);
  192. command.add("-c");
  193. command.add("copy");
  194. command.add("-an");
  195. command.add(videoOutFile);
  196. ProcessBuilder builder = new ProcessBuilder(command);
  197. Process process = null;
  198. try {
  199. process = builder.start();
  200. } catch (IOException e) {
  201. e.printStackTrace();
  202. }
  203. // 使用这种方式会在瞬间大量消耗CPU和内存等系统资源,所以这里我们需要对流进行处理
  204. InputStream errorStream = process.getErrorStream();
  205. InputStreamReader inputStreamReader = new InputStreamReader(errorStream);
  206. BufferedReader br = new BufferedReader(inputStreamReader);
  207. String line = "";
  208. while ((line = br.readLine()) != null) {
  209. }
  210. if (br != null) {
  211. br.close();
  212. }
  213. if (inputStreamReader != null) {
  214. inputStreamReader.close();
  215. }
  216. if (errorStream != null) {
  217. errorStream.close();
  218. }
  219. //File sourceFile = new File(videoInputFile);
  220. //sourceFile.delete();
  221. }
  222. public static void main(String[] args) throws Exception {
  223. //convetor("C:\\Users\\25694\\Desktop\\testffmepg\\sss.mp4", "C:\\Users\\25694\\Desktop\\testffmepg\\demo.mp4");
  224. convetorVideo("C:\\Users\\25694\\Desktop\\testffmepg\\sss.mp4", "C:\\Users\\25694\\Desktop\\testffmepg\\demoss.mp4");
  225. }
  226. }