| | |
| | | import de.uhilger.calypso.handler.StopServerHandler; |
| | | import de.uhilger.calypso.handler.VLCKillHandler; |
| | | import de.uhilger.calypso.handler.VLCPlayer; |
| | | import de.uhilger.calypso.handler.VLCSeekHandler; |
| | | import java.io.IOException; |
| | | import java.util.logging.Logger; |
| | | import java.net.InetSocketAddress; |
| | |
| | | server.createContext(contextName + "/playon", new PlayOnHandler(OMXPlayer.F_PLAY_ON)); |
| | | } else if (playerType.equals(App.VLC_PLAYER)) { |
| | | server.createContext(contextName + "/pause", new DBusHandler(VLCPlayer.CMD_PAUSE_RESUME)); |
| | | //server.createContext(contextName + "/seek", new DBusHandler(VLCPlayer.CMD_SEEK)); |
| | | server.createContext(contextName + "/seek", new VLCSeekHandler(VLCPlayer.CMD_SEEK)); |
| | | server.createContext(contextName + "/stop", new VLCKillHandler()); |
| | | } |
| | | server.createContext(contextName + "/ui", new FileHandler(App.getInitParameter(App.IP_WWW_DATA))); |