Skip to content
New issue

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

解析到完整音乐,但PC客户端内被限制VIP免费试听片段 #1416

Open
5 tasks done
wwfra opened this issue Jun 3, 2024 · 3 comments
Open
5 tasks done
Labels
bug Something isn't working

Comments

@wwfra
Copy link

wwfra commented Jun 3, 2024

Bug 描述

ub

如日志所示,链接在网页打开是完整的音乐
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

问题排查

  • 我确认我使用的核心是由 UnblockNeteaseMusic 项目官方发行,不是其他任何 fork。
  • 我确认我已经升级到了最新的核心版本(推荐使用最新构建而不是 release)。
  • 我确认我已经启用了 HTTPS 端口。
  • 我确认我已经正确设置了 EndPoint。
  • 我确认我已经在对应的客户端正确安装了 CA 证书。
@wwfra wwfra added the bug Something isn't working label Jun 3, 2024
@wwfra
Copy link
Author

wwfra commented Jun 3, 2024

配置如下:
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();

@wwfra
Copy link
Author

wwfra commented Jun 7, 2024

这个BUG经常出现,但是同一首歌,有时候重启客户端就能完整听,有时候切到下一首再切回来也可以,解析到的音乐链接是完整音乐,是不是客户端内有时候会检测我不是vip,然后强硬给我限制时长了???有什么解决办法吗

@EuphoriaJP
Copy link

这个BUG经常出现,但是同一首歌,有时候重启客户端就能完整听,有时候切到下一首再切回来也可以,解析到的音乐链接是完整音乐,是不是客户端内有时候会检测我不是vip,然后强硬给我限制时长了???有什么解决办法吗

我用的「网易云版本:UWP v2.7.1」。我是在服务器上部署的,设置的优先使用「ytdlp音源」。然后用supervisor来自启动进程。

有的时候我也发现只有30s片段,但是如果直接在终端中运行「node app.js」,就能听完整版,我偶然发现原因是「没有在python环境中运行」

省流:可能是因为没有在python环境中运行。我用的anaconda,在base中环境运行这个项目,并优先使用「ytdlp音源」,就能解决。希望能给你提供一个思路。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants