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