| | |
| | | o = parameter.get("titel"); |
| | | if (o instanceof String) { |
| | | String titel = (String) o; |
| | | kommando.append("mpv --input-ipc-server=/tmp/mpvsocket --no-terminal "); |
| | | if (titel.toLowerCase().endsWith(".mp3")) { |
| | | kommando.append("mpv --input-ipc-server=/tmp/mpvsocket --no-terminal --vo=null "); |
| | | } else { |
| | | kommando.append("mpv --input-ipc-server=/tmp/mpvsocket --no-terminal "); |
| | | kommando.append("--vo=null "); |
| | | } |
| | | kommando.append(Server.BLANK); |
| | | kommando.append(titel); |
| | | Logger.getLogger(PlayActor.class.getName()).log(Level.FINE, kommando.toString()); |
| | | Process player_process; |