App zur Steuerung des mpv Mediaplayers auf einem Raspberry Pi über HTTP
ulrich
2021-04-04 6ff352870ec1dfea573fb3e6de370f8020fe0d04
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";
6ff352 54   public static final String OMX_WD = "omx.wd";
cfe367 55   
ac1194 56   
0af362 57   private static HashMap initParams;  
a7f0a1 58   private static Process playerproc;
cfe367 59   private static Player player;
U 60   
a7f0a1 61   
8e2038 62   /**
U 63    * @param args the command line arguments
64    */
65   public static void main(String[] args) {
66     initParams = new HashMap();
67     for(String arg: args) {
68       String[] argParts = arg.split("=");
69       initParams.put(argParts[0], argParts[1]);
70     }
ac1194 71         
cfe367 72     String playerType = getInitParameter(IP_PLAYER);
U 73     switch(playerType) {
74       case VLC_PLAYER:
75         player = new VLCPlayer();
76         break;
77       case OMX_PLAYER:
78         player = new OMXPlayer();
79         break;
80     }
ac1194 81     Server server = new Server(Integer.parseInt(getInitParameter(IP_PORT)));
8e2038 82     try {
U 83       server.start();
84     } catch (IOException ex) {
85       Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
86     }
87   }
88   
89   public static void stop() {
90     System.exit(0);
91   }
92   
93   public static String getInitParameter(String pname) {
94     String param = null;
95     Object o = initParams.get(pname);
96     if(o != null) {
97       param = o.toString();
98     }
99     return param;
100   } 
101   
a7f0a1 102   public static Process getPlayerProcess() {
U 103     return playerproc;
104   }
8e2038 105   
a7f0a1 106   public static void setPlayerProcess(Process p) {
U 107     playerproc = p;
108   }
cfe367 109   
U 110   public static Player getPlayer() {
111     return player;
112   }
113
114   public static void setPlayer(Player pl) {
115     player = pl;
116   }
117   
118   
119   
8e2038 120 }