648540858
2021-11-24 08c45876df5121b5b750798bae3e658f0ec575c6
src/main/java/com/genersoft/iot/vmp/gb28181/transmit/cmd/impl/SIPCommander.java
@@ -1630,12 +1630,12 @@
    * 回放倍速播放
    */
   @Override
   public void playSpeedCmd(Device device, StreamInfo streamInfo, String speed) {
   public void playSpeedCmd(Device device, StreamInfo streamInfo, Double speed) {
      try {
         StringBuffer content = new StringBuffer(200);
         content.append("PLAY RTSP/1.0\r\n");
         content.append("CSeq: " + InfoCseqCache.CSEQCACHE.get(streamInfo.getStreamId()) + "\r\n");
         content.append("Scale: " + speed + ".000000\r\n");
         content.append("Scale: " + String.format("%.1f",speed) + "\r\n");
         Request request = headerProvider.createInfoRequest(device, streamInfo, content.toString());
         logger.info(request.toString());
         ClientTransaction clientTransaction = null;