从Spotify下载的音频CDN在10秒后保持沉默

发布于 2025-01-31 02:36:47 字数 996 浏览 2 评论 0 原文

我正在尝试从Spotify CDN链接中获取Spotify音频:

但下载 image1 image2
因此,决定使用python请求模块在标题中设置 range ,但也行不通:

import requests

local_filename = "music"
with requests.get(
        'https://audio-fa.scdn.co/audio/cb1fb87a',
        headers={
            'Range': 'bytes=0-6583015',    
        }
) as r:
    with open(local_filename, 'wb') as f:
        f.write(r.content)
        print('done')

I'm trying to fetch spotify audio from spotify cdn link:

https://audio-fa.scdn.co/audio/cb1fb87a228...

but downloaded audio is not more than 10 sec
in network tab of browser saw spotify fetch music over one url with different range
image1
image2
so decided to use python request module inorder to set Range in header but it doesn’t work either:

import requests

local_filename = "music"
with requests.get(
        'https://audio-fa.scdn.co/audio/cb1fb87a',
        headers={
            'Range': 'bytes=0-6583015',    
        }
) as r:
    with open(local_filename, 'wb') as f:
        f.write(r.content)
        print('done')

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生生漫 2025-02-07 02:36:47

这是故意完成的,Spotify具有内置的副本保护。流和缓存的文件都被加密,这比简单地下载音频文件并将其合并在一起并使用它们要困难。据我所知,头部没有加密,流是音频格式是ogg/vorbis,我不确定加密是如何工作的,我认为打破它并免费获得音乐是不合法的但是,如果您可以反向工程师使用什么加密以及在何处找到钥匙,则应该有可能。如果您想下载音乐,我建议您从没有Spotify Premium的其他来源中寻找它。

This is done on purpose, Spotify has a built in copy protection. Both the streams and the cached files are encrypted making it harder than simply downloading the audio file and head, merging them together and using that. To my knowledge the head is not encrypted and the streams are, the audio format is ogg/vorbis, I don't know for sure how the encryption works, and I don't think it's legal to break it and get your music for free but it should be possible if you can reverse engineer what encryption is used and where to find the keys. If you want to download your music I suggest looking for it from other sources that have higher quality if you don't have Spotify premium.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文