├── LICENSE ├── README.MD ├── autoLoader.php ├── config.php ├── core.php ├── demo ├── index.html └── static │ ├── css │ └── styles.css │ ├── img │ ├── background.jpg │ └── face.webp │ └── js │ ├── DPlayer.min.js │ ├── demo.js │ ├── hls.min.js │ └── md5.min.js ├── index.php ├── libs ├── bilibili.php └── danmaku.php └── src └── Injahow ├── Bilibili.php └── LICENSE /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/README.MD -------------------------------------------------------------------------------- /autoLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/autoLoader.php -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/config.php -------------------------------------------------------------------------------- /core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/core.php -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/demo/static/css/styles.css -------------------------------------------------------------------------------- /demo/static/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/demo/static/img/background.jpg -------------------------------------------------------------------------------- /demo/static/img/face.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/demo/static/img/face.webp -------------------------------------------------------------------------------- /demo/static/js/DPlayer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/demo/static/js/DPlayer.min.js -------------------------------------------------------------------------------- /demo/static/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/demo/static/js/demo.js -------------------------------------------------------------------------------- /demo/static/js/hls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/demo/static/js/hls.min.js -------------------------------------------------------------------------------- /demo/static/js/md5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/demo/static/js/md5.min.js -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/index.php -------------------------------------------------------------------------------- /libs/bilibili.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/libs/bilibili.php -------------------------------------------------------------------------------- /libs/danmaku.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/libs/danmaku.php -------------------------------------------------------------------------------- /src/Injahow/Bilibili.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/src/Injahow/Bilibili.php -------------------------------------------------------------------------------- /src/Injahow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiYunona/Danmaku-PHP-API/HEAD/src/Injahow/LICENSE --------------------------------------------------------------------------------