소스 검색

feat:智能打分

Joburgess 4 년 전
부모
커밋
c1e5fb3c5a
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/SoundServiceImpl.java

+ 4 - 4
mec-biz/src/main/java/com/ym/mec/biz/service/impl/SoundServiceImpl.java

@@ -156,7 +156,7 @@ public class SoundServiceImpl implements SoundService {
             BigDecimal l_s = new BigDecimal(0);
             BigDecimal l_r = new BigDecimal(0);
 
-            String filePath_r = FileUtils.getTempDirectoryPath()+ idGeneratorService.generatorId("sound") + ".mp3";
+            String filePath_r = FileUtils.getTempDirectoryPath()+ idGeneratorService.generatorId("sound") + "_r.mp3";
             f_r = new File(filePath_r);
             FileUtils.copyToFile(record.getInputStream(), f_r);
 
@@ -235,9 +235,9 @@ public class SoundServiceImpl implements SoundService {
             if(f!=null){
                 f.delete();
             }
-            if(f_r!=null){
-                f_r.delete();
-            }
+//            if(f_r!=null){
+//                f_r.delete();
+//            }
         }
 
         result.put("score", score);