App zur Steuerung des mpv Mediaplayers auf einem Raspberry Pi über HTTP
undisclosed
2023-01-08 933ccd346f0a38218491e95a0c8dc28ff667db78
src/de/uhilger/calypso/neu/actor/PlayActor.java
@@ -54,12 +54,10 @@
    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;