浏览代码

Merge branch 'vip_group_activity'

Joburgess 4 年之前
父节点
当前提交
481597ad60
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/SoundServiceImpl.java

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

@@ -162,7 +162,6 @@ public class SoundServiceImpl implements SoundService {
 
             //相似度
             List<Double> pitchs_s = soundPressureLevelExtractor(null, filePath);
-//            List<Double> pitchs_r = soundPressureLevelExtractor(record.getBytes(), null);
             List<Double> pitchs_r = soundPressureLevelExtractor(null, filePath_r);
 
             int maxLength = pitchs_s.size();
@@ -198,7 +197,6 @@ public class SoundServiceImpl implements SoundService {
 
             //节奏
             List<Double> times_s = beatExtractor(null, filePath);
-//            List<Double> times_r = beatExtractor(record.getBytes(), null);
             List<Double> times_r = beatExtractor(null, filePath_r);
 
             float sameTimes = 0;