648540858
2023-05-16 be9bf60e81e22d717199d73886a04ab3019390ab
src/main/java/com/genersoft/iot/vmp/vmanager/gb28181/play/PlayController.java
@@ -1,6 +1,5 @@
package com.genersoft.iot.vmp.vmanager.gb28181.play;
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONArray;
import com.alibaba.fastjson2.JSONObject;
import com.genersoft.iot.vmp.common.InviteInfo;
@@ -116,9 +115,7 @@
      // 录像查询以channelId作为deviceId查询
      resultHolder.put(key, uuid, result);
      playService.play(newMediaServerItem, deviceId, channelId, ((code, msg, data) -> {
         System.out.println("controller收到回调");
         System.out.println(JSON.toJSONString(data));
      playService.play(newMediaServerItem, deviceId, channelId, (code, msg, data) -> {
         WVPResult<StreamContent> wvpResult = new WVPResult<>();
         if (code == InviteErrorCode.SUCCESS.getCode()) {
            wvpResult.setCode(ErrorCode.SUCCESS.getCode());
@@ -135,10 +132,9 @@
            wvpResult.setCode(code);
            wvpResult.setMsg(msg);
         }
         System.out.println(JSON.toJSONString(wvpResult));
         requestMessage.setData(wvpResult);
         resultHolder.invokeResult(requestMessage);
      }));
      });
      return result;
   }