├── log └── .git-keep ├── html ├── js │ ├── streamer.js │ ├── bootstrap.min.js │ └── jquery.min.js ├── css │ └── streamer.css ├── statistics.php ├── config.php ├── custom_50x.html ├── footer.php ├── sysstatus.php ├── index.php ├── playerstatus.php ├── encoderstatus.php ├── header.php ├── playerconf.php ├── encoderconf.php └── sysconf.php ├── .gitignore ├── outstreamer.ini ├── wiki └── images │ ├── encoder.png │ ├── encsettings.png │ ├── syssettings.png │ └── playersettings.png ├── instreamer.ini ├── autostart.sh ├── instreamer_stopled.py ├── outstreamer.py ├── instreamer.py ├── README.md └── LICENCE /log/.git-keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /html/js/streamer.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html/css/streamer.css: -------------------------------------------------------------------------------- 1 | 2 | #insertionPoint { 3 | margin-top:70px; 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | instreamer.ini 2 | outstreamer.ini 3 | html/config.php 4 | log/* 5 | -------------------------------------------------------------------------------- /outstreamer.ini: -------------------------------------------------------------------------------- 1 | [outstreamer] 2 | Encoder_IP=10.1.0.23 3 | Listen_Port=3000 4 | Soundcard_ID=1 5 | Boot=0 -------------------------------------------------------------------------------- /wiki/images/encoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickaelmonsieur/openob-gui/HEAD/wiki/images/encoder.png -------------------------------------------------------------------------------- /wiki/images/encsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickaelmonsieur/openob-gui/HEAD/wiki/images/encsettings.png -------------------------------------------------------------------------------- /wiki/images/syssettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickaelmonsieur/openob-gui/HEAD/wiki/images/syssettings.png -------------------------------------------------------------------------------- /wiki/images/playersettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickaelmonsieur/openob-gui/HEAD/wiki/images/playersettings.png -------------------------------------------------------------------------------- /html/statistics.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /html/config.php: -------------------------------------------------------------------------------- 1 | 2 | 2 |