App zur Steuerung des mpv Mediaplayers auf einem Raspberry Pi über HTTP
undisclosed
2023-01-03 7a79ba8b70e8541b6d4413a46061b2c03ecddc9b
commit | author | age
60719c 1 /*
aaed2d 2     Calypso - Media Player Remote Control via HTTP for Raspberry Pi
U 3     Copyright (C) 2021-2023  Ulrich Hilger
60719c 4
U 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
229976 19 package de.uhilger.calypso;
8e2038 20
7a79ba 21 import de.uhilger.calypso.handler.MPlayer;
229976 22 import de.uhilger.calypso.handler.OMXPlayer;
U 23 import de.uhilger.calypso.handler.Player;
24 import de.uhilger.calypso.handler.VLCPlayer;
8e2038 25 import java.io.IOException;
U 26 import java.util.HashMap;
27 import java.util.logging.Level;
28 import java.util.logging.Logger;
29
30 /**
aaed2d 31  * Hauptklasse von Calypso
cc2a32 32  * 
aaed2d 33  * Aufruf mit<br>
U 34  * java -jar calypso.jar port=9000 ctx="/calypso"<br>
35  * java -jar calypso.jar nfs-prefix="/media/mc" port=9000<br>
36  * java -Djava.util.logging.config.file=logging.properties -jar ..<br>
cc2a32 37  * 
U 38  * Der Parameter nfs-prefix bewirkt, dass beim Abspielen relative Pfade 
39  * mit diesem Praefix verbunden werden und setzt voraus, dass auf der 
aaed2d 40  * Maschine ein NFS-Mount ueber /etc/fstab eingerichtet ist.<br>
U 41  * <br>
42  * Anmerkung anlaesslich der Aenderung auf VLC (2.1.2023):<br>
43  * Mit Calypso wurde erstmals jdk.httpserver anstelle von Tomcat 
44  * einsetzt. Es war in diesem Punkt noch ein Laborversuch und sollte 
45  * unter Wiederverwendung der wesentlichen Teile bei Gelegenheit 
46  * neu gebaut werden.
cc2a32 47  * 
aaed2d 48  * @author Ulrich Hilger
U 49  * @version 0.2 vom 2.1.2023, 0.1 vom 20.03.2021 als Nachfolger von Pirc (02.2013-03.2021)
8e2038 50  */
U 51 public class App {
52   
53   private static final Logger logger = Logger.getLogger(App.class.getName());
54   
ac1194 55   public static final String IP_PORT = "port";
U 56   public static final String IP_WWW_DATA = "www-data";
57   public static final String IP_NFS_PREFIX = "nfs-prefix";
cfe367 58   public static final String IP_PLAYER = "player";
U 59   public static final String VLC_PLAYER = "vlc";
60   public static final String OMX_PLAYER = "omx";
7a79ba 61   public static final String M_PLAYER = "mpl";
6ff352 62   public static final String OMX_WD = "omx.wd";
c2c1fd 63   public static final String CTX = "ctx";
cfe367 64   
c2c1fd 65   public static final String DEFAULT_CTX = "/calypso";
ac1194 66   
0af362 67   private static HashMap initParams;  
a7f0a1 68   private static Process playerproc;
cfe367 69   private static Player player;
a7f0a1 70   
8e2038 71   /**
U 72    * @param args the command line arguments
73    */
74   public static void main(String[] args) {
75     initParams = new HashMap();
76     for(String arg: args) {
77       String[] argParts = arg.split("=");
78       initParams.put(argParts[0], argParts[1]);
79     }
ac1194 80         
cfe367 81     String playerType = getInitParameter(IP_PLAYER);
U 82     switch(playerType) {
7a79ba 83       case M_PLAYER:
U 84         player = new MPlayer();
85         break;
cfe367 86       case VLC_PLAYER:
U 87         player = new VLCPlayer();
88         break;
89       case OMX_PLAYER:
90         player = new OMXPlayer();
91         break;
92     }
ac1194 93     Server server = new Server(Integer.parseInt(getInitParameter(IP_PORT)));
c2c1fd 94     String ctx = getInitParameter(CTX);
U 95     if(ctx != null && ctx.length() > 0) {
96       server.setContextName(ctx);    
97     } else {
98       server.setContextName(DEFAULT_CTX);
99     }
8e2038 100     try {
b16b54 101       server.start(playerType);
8e2038 102     } catch (IOException ex) {
U 103       Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
104     }
105   }
106   
107   public static void stop() {
108     System.exit(0);
109   }
110   
111   public static String getInitParameter(String pname) {
112     String param = null;
113     Object o = initParams.get(pname);
114     if(o != null) {
115       param = o.toString();
116     }
117     return param;
118   } 
119   
a7f0a1 120   public static Process getPlayerProcess() {
U 121     return playerproc;
122   }
8e2038 123   
a7f0a1 124   public static void setPlayerProcess(Process p) {
U 125     playerproc = p;
126   }
cfe367 127   
U 128   public static Player getPlayer() {
129     return player;
130   }
131
132   public static void setPlayer(Player pl) {
133     player = pl;
134   }
135   
136   
137   
8e2038 138 }