├── .gitmodules ├── README.md ├── conf ├── listen.conf ├── modules.conf └── name.conf ├── data └── Welcome │ └── config.json ├── main.php └── modules └── SHOUTcast ├── Buffer.php ├── Metadata.php ├── Stream.php └── Welcome.php /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Modfwango/Radio-PHP/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Modfwango/Radio-PHP/HEAD/README.md -------------------------------------------------------------------------------- /conf/listen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Modfwango/Radio-PHP/HEAD/conf/listen.conf -------------------------------------------------------------------------------- /conf/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Modfwango/Radio-PHP/HEAD/conf/modules.conf -------------------------------------------------------------------------------- /conf/name.conf: -------------------------------------------------------------------------------- 1 | radio-php 2 | -------------------------------------------------------------------------------- /data/Welcome/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Modfwango/Radio-PHP/HEAD/data/Welcome/config.json -------------------------------------------------------------------------------- /main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Modfwango/Radio-PHP/HEAD/main.php -------------------------------------------------------------------------------- /modules/SHOUTcast/Buffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Modfwango/Radio-PHP/HEAD/modules/SHOUTcast/Buffer.php -------------------------------------------------------------------------------- /modules/SHOUTcast/Metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Modfwango/Radio-PHP/HEAD/modules/SHOUTcast/Metadata.php -------------------------------------------------------------------------------- /modules/SHOUTcast/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Modfwango/Radio-PHP/HEAD/modules/SHOUTcast/Stream.php -------------------------------------------------------------------------------- /modules/SHOUTcast/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Modfwango/Radio-PHP/HEAD/modules/SHOUTcast/Welcome.php --------------------------------------------------------------------------------