We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如日志所示,链接在网页打开是完整的音乐 https://m801.music.126.net/20240603144104/c0cda496f68b6105bf6d797af55d6a07/jdymusic/obj/wo3DlMOGwrbDjj7DisKw/32364676421/0aa3/7589/1f44/9b6cccb4b345e4c8ee698ae28a318147.flac
No response
注册为Windows服务
{"level":40,"time":1717395373130,"pid":9088,"hostname":"Liwz","scope":"request","url":"https://m801.music.126.net/20240603144104/c0cda496f68b6105bf6d797af55d6a07/jdymusic/obj/wo3DlMOGwrbDjj7DisKw/32364676421/0aa3/7589/1f44/9b6cccb4b345e4c8ee698ae28a318147.flac","msg":"The request timed out, or the requester didn't handle the response."} {"level":50,"time":1717395373131,"pid":9088,"hostname":"Liwz","scope":"hook","stack":"AggregateError: All promises were rejected","type":"Error","msg":"All promises were rejected"}
https://m801.music.126.net/20240603144104/c0cda496f68b6105bf6d797af55d6a07/jdymusic/obj/wo3DlMOGwrbDjj7DisKw/32364676421/0aa3/7589/1f44/9b6cccb4b345e4c8ee698ae28a318147.flac
2.10.12
Windows 10
The text was updated successfully, but these errors were encountered:
配置如下: const Service = require('node-windows').Service;
const svc = new Service({ name: 'unblock-netease-cloud-music', description: '点亮网易云音乐灰色歌曲', script: './app.js', // 入口文件路径 // scriptOptions:'-p 52100:52101', // 可选参数示例: 自定义端口并开启HTTPS scriptOptions: '-o kugou pyncmd', // 可选参数 wait: '1', // 程序崩溃后重启时间间隔 grow: '0.25', // 重启等待时间成长值,第一次1秒,第二次1.25秒。。。 maxRestarts: '30', // 60秒内最大重启次数 env: [ { name: 'ENABLE_FLAC', value: 'true', }, { name: 'ENABLE_LOCAL_VIP', value: 'svip', }, { name: 'JSON_LOG', value: 'true', }, { name: 'NETEASE_COOKIE', value: 'xxxxxxxx', }, { name: 'QQ_COOKIE', value: 'uin=8435xxx; qm_keyst=xxxxxxx', }, ], });
// 监听 svc.on('install', () => { svc.start(); console.log('Installation completed.'); }); svc.on('uninstall', () => console.log('Uninstallation completed.'));
// 卸载 if (svc.exists) return svc.uninstall();
// 安装 svc.install();
Sorry, something went wrong.
这个BUG经常出现,但是同一首歌,有时候重启客户端就能完整听,有时候切到下一首再切回来也可以,解析到的音乐链接是完整音乐,是不是客户端内有时候会检测我不是vip,然后强硬给我限制时长了???有什么解决办法吗
我用的「网易云版本:UWP v2.7.1」。我是在服务器上部署的,设置的优先使用「ytdlp音源」。然后用supervisor来自启动进程。
有的时候我也发现只有30s片段,但是如果直接在终端中运行「node app.js」,就能听完整版,我偶然发现原因是「没有在python环境中运行」
省流:可能是因为没有在python环境中运行。我用的anaconda,在base中环境运行这个项目,并优先使用「ytdlp音源」,就能解决。希望能给你提供一个思路。
No branches or pull requests
Bug 描述
如日志所示,链接在网页打开是完整的音乐
https://m801.music.126.net/20240603144104/c0cda496f68b6105bf6d797af55d6a07/jdymusic/obj/wo3DlMOGwrbDjj7DisKw/32364676421/0aa3/7589/1f44/9b6cccb4b345e4c8ee698ae28a318147.flac
预期行为
No response
实际行为
No response
复现步骤
No response
启动命令及环境变量
注册为Windows服务
日志内容
{"level":40,"time":1717395373130,"pid":9088,"hostname":"Liwz","scope":"request","url":"https://m801.music.126.net/20240603144104/c0cda496f68b6105bf6d797af55d6a07/jdymusic/obj/wo3DlMOGwrbDjj7DisKw/32364676421/0aa3/7589/1f44/9b6cccb4b345e4c8ee698ae28a318147.flac","msg":"The request timed out, or the requester didn't handle the response."}
{"level":50,"time":1717395373131,"pid":9088,"hostname":"Liwz","scope":"hook","stack":"AggregateError: All promises were rejected","type":"Error","msg":"All promises were rejected"}
网易云音乐歌曲链接
https://m801.music.126.net/20240603144104/c0cda496f68b6105bf6d797af55d6a07/jdymusic/obj/wo3DlMOGwrbDjj7DisKw/32364676421/0aa3/7589/1f44/9b6cccb4b345e4c8ee698ae28a318147.flac
网易云音乐版本号
2.10.12
操作系统
Windows 10
其他信息
No response
问题排查
The text was updated successfully, but these errors were encountered: