App zur Steuerung des mpv Mediaplayers auf einem Raspberry Pi über HTTP
ulrich
2021-03-22 a7f0a18275d394ff92e44fcce55a511a54535787
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package de.uhilger.avdirektor;
 
import java.io.IOException;
import java.util.HashMap;
import java.util.logging.Level;
import java.util.logging.Logger;
 
/**
 *
 * @author ulrich
 */
public class App {
  
  private static final Logger logger = Logger.getLogger(App.class.getName());
 
  
  public static final String PI_PLAYER = "pi_player";
  //public static final String FBI_PROC = "fbi_proc";
  
  public static final String CMD_STOP = "q";
  public static final String CMD_DEC_SPEED = "1";
  public static final String CMD_INC_SPEED = "2";
  public static final String CMD_PREV_AUDIO = "j";
  public static final String CMD_NEXT_AUDIO = "k";
  public static final String CMD_PREV_CHAPTER = "i";
  public static final String CMD_NEXT_CHAPTER = "o";
  public static final String CMD_PREV_SUB = "n";
  public static final String CMD_NEXT_SUB = "m";
  public static final String CMD_TOGGLE_SUB = "s";
  public static final String CMD_PAUSE_RESUME = "p";
  public static final String CMD_DEC_VOL = "-";
  public static final String CMD_INC_VOL = "+";
  
  public static final String PFEIL_LINKS = "5b44";
  public static final String PFEIL_RECHTS = "5b43";
  public static final String PFEIL_HERAUF = "5b41";
  public static final String PFEIL_HERUNTER = "5b42";
  
  public static final String SP_RUECK_30 = "rueck30";
  public static final String SP_VOR_30 = "rueck30";
  public static final String SP_VOR_600 = "vor600";
  public static final String SP_RUECK_600 = "rueck600";  
 
  public static final String OPT_LOCAL_AUDIO = "-o%20local";
  public static final String OPT_HDMI_AUDIO = "-o hdmi";
  
  public static final String BLANK = " ";
  
  private static HashMap initParams;
  
  private static Process playerproc;
  
  /**
   * @param args the command line arguments
   */
  public static void main(String[] args) {
    initParams = new HashMap();
    for(String arg: args) {
      //logger.info("arg: " + arg);
      String[] argParts = arg.split("=");
      //logger.info(argParts[0]);
      //logger.info(argParts[1]);
      initParams.put(argParts[0], argParts[1]);
    }
    
    
    Server server = new Server(Integer.parseInt(getInitParameter("port")));
    try {
      server.start();
    } catch (IOException ex) {
      Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
    }
  }
  
  public static void stop() {
    System.exit(0);
  }
  
  public static String getInitParameter(String pname) {
    String param = null;
    Object o = initParams.get(pname);
    if(o != null) {
      param = o.toString();
    }
    return param;
  } 
  
  public static Process getPlayerProcess() {
    return playerproc;
  }
  
  public static void setPlayerProcess(Process p) {
    playerproc = p;
  }
}