浏览代码

重复10次24

TitanWong 1 年之前
父节点
当前提交
242d81e7c7
共有 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 1";
+                String cmd = "play -v " + Float.valueOf(new Integer(vol).toString()) / 100 + " " + path + " repeat 10";
                 log.info("start music cmd:{}", cmd);
                 if (p != null) {
                     p.destroyForcibly();