├── .gitignore ├── LICENSE ├── README.md ├── asr_proxy.php ├── bind.php ├── composer.json ├── composer.lock ├── doc └── 返回数据格式 ├── home_server.php ├── recv.log ├── src ├── Provider │ ├── Audio │ │ └── Format.php │ ├── Music │ │ ├── Format.php │ │ ├── Kugo.php │ │ ├── Migo.php │ │ └── Netease.php │ └── MusicProvider.php └── Util │ └── DataUtil.php └── test.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/README.md -------------------------------------------------------------------------------- /asr_proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/asr_proxy.php -------------------------------------------------------------------------------- /bind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/bind.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/composer.lock -------------------------------------------------------------------------------- /doc/返回数据格式: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/doc/返回数据格式 -------------------------------------------------------------------------------- /home_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/home_server.php -------------------------------------------------------------------------------- /recv.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/recv.log -------------------------------------------------------------------------------- /src/Provider/Audio/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/src/Provider/Audio/Format.php -------------------------------------------------------------------------------- /src/Provider/Music/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/src/Provider/Music/Format.php -------------------------------------------------------------------------------- /src/Provider/Music/Kugo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/src/Provider/Music/Kugo.php -------------------------------------------------------------------------------- /src/Provider/Music/Migo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/src/Provider/Music/Migo.php -------------------------------------------------------------------------------- /src/Provider/Music/Netease.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/src/Provider/Music/Netease.php -------------------------------------------------------------------------------- /src/Provider/MusicProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/src/Provider/MusicProvider.php -------------------------------------------------------------------------------- /src/Util/DataUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/src/Util/DataUtil.php -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctzjj/Phicomm_R1_Proxy/HEAD/test.php --------------------------------------------------------------------------------