App zur Steuerung des mpv Mediaplayers auf einem Raspberry Pi über HTTP
ulrich
2021-03-22 a7f0a18275d394ff92e44fcce55a511a54535787
src/de/uhilger/avdirektor/App.java
@@ -48,6 +48,8 @@
  
  private static HashMap initParams;
  
  private static Process playerproc;
  /**
   * @param args the command line arguments
   */
@@ -83,5 +85,11 @@
    return param;
  } 
  
  public static Process getPlayerProcess() {
    return playerproc;
  }
  
  public static void setPlayerProcess(Process p) {
    playerproc = p;
  }
}