소스 검색

循环播放

TitanWong 1 년 전
부모
커밋
2f1b737790
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/zhili/stationcontrol/tts/service/impl/MusicServiceImpl.java

+ 1 - 1
src/main/java/com/zhili/stationcontrol/tts/service/impl/MusicServiceImpl.java

@@ -27,7 +27,7 @@ public class MusicServiceImpl implements MusicService {
     public Integer start(String path, Integer vol) {
         synchronized (this) {
             try {
-                String cmd = "play -v " + Float.valueOf(new Integer(vol).toString()) / 100 + " " + path + " repeat 10";
+                String cmd = "play -v " + Float.valueOf(new Integer(vol).toString()) / 100 + " " + path + " repeat 10000";
                 log.info("start music cmd:{}", cmd);
                 if (p != null) {
                     p.destroyForcibly();