App zur Steuerung des mpv Mediaplayers auf einem Raspberry Pi über HTTP
ulrich
2021-03-29 cfe3676d7c9667824c52bb5e5c782d4a9a89b672
commit | author | age
60719c 1 /*
U 2     AV-Direktor - Control OMXPlayer on Raspberry Pi via HTTP
3     Copyright (C) 2021  Ulrich Hilger
4
5     This program is free software: you can redistribute it and/or modify
6     it under the terms of the GNU Affero General Public License as
7     published by the Free Software Foundation, either version 3 of the
8     License, or (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU Affero General Public License for more details.
14
15     You should have received a copy of the GNU Affero General Public License
16     along with this program.  If not, see <https://www.gnu.org/licenses/>.
17 */
18
8e2038 19 package de.uhilger.avdirektor;
U 20
cfe367 21 import de.uhilger.avdirektor.handler.OMXPlayer;
U 22 import de.uhilger.avdirektor.handler.Player;
23 import de.uhilger.avdirektor.handler.VLCPlayer;
8e2038 24 import java.io.IOException;
U 25 import java.util.HashMap;
26 import java.util.logging.Level;
27 import java.util.logging.Logger;
28
29 /**
cc2a32 30  * Hauptklasse des av-director
U 31  * 
32  * Aufruf mit
33  * java -jar av-director.jar port=9000
34  * java -jar av-director.jar nfs-prefix="/media/mc" port=9000
35  * java -Djava.util.logging.config.file=logging.properties -jar ..
36  * 
37  * Der Parameter nfs-prefix bewirkt, dass beim Abspielen relative Pfade 
38  * mit diesem Praefix verbunden werden und setzt voraus, dass auf der 
39  * Maschine ein NFS-Mount ueber /etc/fstab eingerichtet ist.
40  * 
8e2038 41  * @author ulrich
60719c 42  * @version 0.1, 20.03.2021
8e2038 43  */
U 44 public class App {
45   
46   private static final Logger logger = Logger.getLogger(App.class.getName());
47   
ac1194 48   public static final String IP_PORT = "port";
U 49   public static final String IP_WWW_DATA = "www-data";
50   public static final String IP_NFS_PREFIX = "nfs-prefix";
cfe367 51   public static final String IP_PLAYER = "player";
U 52   public static final String VLC_PLAYER = "vlc";
53   public static final String OMX_PLAYER = "omx";
54   
ac1194 55   
0af362 56   private static HashMap initParams;  
a7f0a1 57   private static Process playerproc;
cfe367 58   private static Player player;
U 59   
a7f0a1 60   
8e2038 61   /**
U 62    * @param args the command line arguments
63    */
64   public static void main(String[] args) {
65     initParams = new HashMap();
66     for(String arg: args) {
67       String[] argParts = arg.split("=");
68       initParams.put(argParts[0], argParts[1]);
69     }
ac1194 70         
cfe367 71     String playerType = getInitParameter(IP_PLAYER);
U 72     switch(playerType) {
73       case VLC_PLAYER:
74         player = new VLCPlayer();
75         break;
76       case OMX_PLAYER:
77         player = new OMXPlayer();
78         break;
79     }
ac1194 80     Server server = new Server(Integer.parseInt(getInitParameter(IP_PORT)));
8e2038 81     try {
U 82       server.start();
83     } catch (IOException ex) {
84       Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
85     }
86   }
87   
88   public static void stop() {
89     System.exit(0);
90   }
91   
92   public static String getInitParameter(String pname) {
93     String param = null;
94     Object o = initParams.get(pname);
95     if(o != null) {
96       param = o.toString();
97     }
98     return param;
99   } 
100   
a7f0a1 101   public static Process getPlayerProcess() {
U 102     return playerproc;
103   }
8e2038 104   
a7f0a1 105   public static void setPlayerProcess(Process p) {
U 106     playerproc = p;
107   }
cfe367 108   
U 109   public static Player getPlayer() {
110     return player;
111   }
112
113   public static void setPlayer(Player pl) {
114     player = pl;
115   }
116   
117   
118   
8e2038 119 }