|
@@ -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 1";
|
|
|
log.info("start music cmd:{}", cmd);
|
|
|
if (p != null) {
|
|
|
p.destroyForcibly();
|