App zur Steuerung des mpv Mediaplayers auf einem Raspberry Pi über HTTP
undisclosed
2023-01-07 2f2aa7d344d41c6d4083149b1ea6b41e7fb1f683
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package de.uhilger.calypso.neu;
 
import java.util.HashMap;
 
/**
 *
 * @author Ulrich Hilger
 */
public class App {
  /**
   * @param args the command line arguments
   */
  public static void main(String[] args) {
    HashMap<String, String> initParams = new HashMap();
    for (String arg : args) {
      String[] argParts = arg.split(Server.EQUAL);
      initParams.put(argParts[0], argParts[1]);
    }
    String conf = initParams.get(Server.CONF);
    AppProperties einst = new AppProperties();
    einst.readFile(conf);
    Server server;
    server = new Server();
    server.start(einst);    
  }
  
}