高颜值的第三方网易云播放器,使用网易云账号同步(个人的library),无任何社交,简洁纯净,自动替换变灰歌曲链接。
本文来源:https://github.com/qier222/YesPlayMusic#readme
yt-dlp
。Electron 版本由 @hawtim 和 @qier222 适配并维护,支持 macOS、Windows、Linux。
访问本项目的 Releases 页面下载安装包。
brew install --cask yesplaymusic
scoop install extras/yesplaymusic
除了下载安装包使用,你还可以将本项目部署到 Vercel 或你的服务器上。下面是部署到 Vercel 的方法。
本项目的 Demo (https://music.qier222.com) 就是部署在 Vercel 上的网站。
vercel.json
,将下面的内容复制粘贴到文件中,并将 https://your-netease-api.example.com
替换为你刚刚部署的网易云 API 地址:{
"rewrites": [
{
"source": "/api/:match*",
"destination": "https://your-netease-api.example.com/:match*"
}
]
}
VUE_APP_NETEASE_API_URL
,Value 为 /api
,点击 Add。最后点击底部的 Deploy 就可以部署到 Vercel 了。除了部署到 Vercel,你还可以部署到自己的服务器上
git clone --recursive https://github.com/qier222/YesPlayMusic.git
yarn install
/api
,如果 API 和网页不在同一个域名下的话(跨域),会有一些 bug。/.env.example
文件为 /.env
,修改里面 VUE_APP_NETEASE_API_URL
的值为网易云 API 地址。本地开发的话可以填写 API 地址为 http://localhost:3000
,YesPlayMusic 地址为 http://localhost:8080
。如果你使用了反向代理 API,可以填写 API 地址为 /api
。VUE_APP_NETEASE_API_URL=http://localhost:3000
yarn run build
/dist
目录下的文件上传到你的 Web 服务器docker build -t yesplaymusic .
docker run -d --name YesPlayMusic -p 80:80 yesplaymusic
docker-compose up -d
YesPlayMusic 地址为 http://localhost
如果在 Release 页面没有找到适合你的设备的安装包的话,你可以根据下面的步骤来打包自己的客户端。
npm install -g yarn
来安装 Yarn。git clone --recursive https://github.com/qier222/YesPlayMusic.git
克隆本仓库到本地。yarn install
安装项目依赖。/.env.example
文件为 /.env
。/dist_electron
目录下。了解更多信息可访问 electron-builder 文档命令 | 说明 |
---|---|
yarn electron:build –windows nsis:ia32 | Windows 32 位 |
yarn electron:build –windows nsis:arm64 | Windows ARM |
yarn electron:build –linux deb:armv7l | Debian armv7l(树莓派等) |
yarn electron:build –macos dir:arm64 | macOS ARM |
本项目由 NeteaseCloudMusicApi 提供 API。
运行本项目
# 安装依赖
yarn install
# 创建本地环境变量
cp .env.example .env
# 运行(网页端)
yarn serve
# 运行(electron)
yarn electron:serve
本地运行 NeteaseCloudMusicApi,或者将 API 部署至 Vercel
# 运行 API (默认 3000 端口)
yarn netease_api:run
查看 Todo 请访问本项目的 Projects
欢迎提 Issue 和 Pull request。
本项目仅供个人学习研究使用,禁止用于商业及非法用途。
基于 MIT license 许可进行开源。
API 源代码来自 Binaryify/NeteaseCloudMusicApi