https://meting-dd.2333332.xyz/test
Meting后端的基础是一个接口,原作者在此基础上增加了php后端,又用node做了一层wrapper。
同时可以发现原作者在docker hub上传了php后端的镜像,但没有node的镜像(仓库中仍有Dockerfile)。于是重写了一下。
- 纯js实现,化简api结构
- 适配多个PaaS平台,一键部署
- 采用jsonp解决Tencent系地区限制
- 插件系统,编写新接口及音源简单
server参数名称 | 图片 | 歌词 | url | 单曲/song | 歌单/playlist | 歌手/artist | 搜索/search | |
---|---|---|---|---|---|---|---|---|
网易云 | netease | √ | √ | √ | √ | √ | √ | √ |
qq音乐 | tencent | √ | √ | √ | √ | √ | × | × |
youtube music | ytmusic | √ | √⁰ | √ | √ | √ | × | × |
spotify | spotify | √ | √⁰ | √⁰ | √⁰ | √⁰ | × | × |
more.. |
客户端/浏览器访问地区 | 国内 | 国外 |
---|---|---|
网易云 | √ | √ |
qq音乐 | √¹ | × |
youtube music | √² | √ |
spotify music | √² | √ |
客户端/浏览器访问地区 | 国内 | 国外 |
---|---|---|
网易云 | √ | √ |
qq音乐 | √ | × |
youtube music | √² | √ |
spotify music | √² | √ |
⁰youtube和spotify的歌词由 https://github.com/xizeyoupan/syncedlyrics_aio 检索而来,歌词匹配准确度不会特别高。spotify的音乐源由 https://github.com/spotDL/spotify-downloader 检索而来,歌曲匹配准确度不会很高,并且获取url的时间较长。
¹使用jsonp,需要替换前端插件, https://cdn.jsdelivr.net/npm/[email protected]/dist/Meting.min.js => https://cdn.jsdelivr.net/npm/@xizeyoupan/meting@latest/dist/Meting.min.js , or https://unpkg.com/[email protected]/dist/Meting.min.js => https://unpkg.com/@xizeyoupan/meting@latest/dist/Meting.min.js
More info https://github.com/xizeyoupan/MetingJS
²见下方参数配置
以下参数均由环境变量配置
- YT_API 默认的youtube music和spotify的api地址。国内可用性取决于YT_API的连通性。你需要自己部署youtube music和spotify的api。此仓库提供示例。
- OVERSEAS 用于判断是否部署于国外。设为1会启用qq音乐的jsonp返回,同时需要替换前端插件,能实现国内访问国外api服务解析qq音乐。部署在国内不用设置这个选项。当部署到vercel上时,此选项自动设为1。
- PORT api监听端口,也是docker需要映射的端口。默认3000
- UID 用于docker,默认1010
- GID 用于docker,默认1010
仅为示例,不保证稳定性
https://meting-dd.2333332.xyz/api => Deno Deploy
可自行测试,如 https://meting-dd.2333332.xyz/test
部署 Meting-API 需要基本的计算机编程常识,如果您在部署过程中遇到无法解决的问题请到 issues 向我们提问,我们会尽快给您答复。
如果部署成功,在你的域名后拼接上/test
,理论上出现类似下图数据:
需要克隆项目到本地,node版本>=18。
npm i
npm run build:all
node node.js
deno run --allow-net --allow-env dist/deno.js
或者直接下载action中的文件运行。
运行下面的命令下载 Meting-API 镜像
docker pull intemd/meting-api:latest
然后运行 Meting-API 即可
docker run -d --name meting -p 3000:3000 intemd/meting-api:latest
比较出名,提供的域名被阻断,使用自有域名后速度尚可。冷启动速度一般。
一直下一步即可。
类似Cloudflare Workers,但提供的域名未被阻断,使用Deno为runtime。
fork本项目后新建一个project,首先在设置中加一个Environment Variable,名称是OVERSEAS,值为1。接着link到你自己的项目,部署方式选action,Deno Deploy 的 project 的 name 需要与你自己的yml中设置的吻合。
uses: denoland/deployctl@v1
with:
project: meting #这里要改成你的Deno Deploy的project的name
entrypoint: deno.js
接着在actions/publish/run workflow中勾选Deno即可。
对于很多HTTP框架的代理来说,只需设置X-Forwarded请求头或transparent proxy。但由于本项目使用了轻量化框架Hono,目前官方似乎还不支持。所以实际有用的的请求头只有X-Forwarded-Host
。
比如我用nginx想让请求 http://localhost:8099/meting
的流量全部转发到 http://localhost:3000
,直接这么写是不行的:
server {
listen 8099;
server_name localhost;
location /meting/ {
proxy_pass http://localhost:3000/;
}
}
正确写法:
-
nginx
server { listen 8099; server_name localhost; location /meting/ { proxy_pass http://localhost:3000/; proxy_set_header X-Forwarded-Host $scheme://$host:$server_port/meting; } }
-
caddy
http://localhost:8099 { handle_path /meting* { reverse_proxy http://localhost:3000 { header_up X-Forwarded-Host {scheme}://{host}:{port}/meting } } }
在上面基础上改动即可。
-
nginx
server { listen 8099 ssl; server_name localhost; ssl_certificate ../server.crt; # pem文件的路径 ssl_certificate_key ../server.key; # key文件的路径 ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; ssl_protocols TLSv1.2 TLSv1.3; ssl_prefer_server_ciphers on; location /meting/ { proxy_pass http://localhost:3000/; proxy_set_header X-Forwarded-Host $scheme://$host:$server_port/meting; } }
-
caddy
https://localhost:8099 { tls ./server.crt ./server.key handle_path /meting* { reverse_proxy http://localhost:3000 { header_up X-Forwarded-Host {scheme}://{host}:{port}/meting } } }
在导入前端插件前,加入
<script>
var meting_api='http://example.com/api?server=:server&type=:type&id=:id&auth=:auth&r=:r';
</script>
比如
<script>
var meting_api='http://localhost:3000/api?server=:server&type=:type&id=:id&auth=:auth&r=:r';
</script>
即可。就这样吧,那我去看vtb了,88
https://github.com/metowolf/MetingJS
https://github.com/metowolf/Meting-API
https://github.com/honojs/hono
https://github.com/honojs/node-server
https://github.com/camsong/fetch-jsonp