Python:从url获取shoutcast/互联网广播电台的名称
我一直在尝试根据 python 中的 url 获取网络广播电台的名称/标题,但到目前为止还没有运气。网络广播电台似乎使用 HTTP 之外的其他协议,但如果我错了,请纠正我。
例如: http://89.238.146.142:7030
标题为: “伊维萨全球广播电台”
我如何将此标题存储在变量中?任何帮助将不胜感激:)
亲切的问候, 弗里格
I've been trying to get the name/title of internet radio stations based on the url in python, but with no luck so far. It seems that internet radio stations use another protocol than HTTP, but please correct me if I'm wrong.
For example:
http://89.238.146.142:7030
Has the title:
"Ibiza Global Radio"
How can i store this title in a variable? Any help will be deeply appreciated :)
Kind regards,
frigg
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从一点
curl
来看,它似乎正在使用shoutcast 协议,因此您正在寻找以icy-name:
开头的早期行因此:
您可能需要添加一些
.lower()
调用,因为我相信这些标头名称不区分大小写,但这是一般想法。From a little
curl
, it seems to be using shoutcast protocol, so you're looking for an early line starting withicy-name:
Therefore:
You may want to add e.g. some
.lower()
calls because I believe these header names are meant to be case-insensitive, but that's the general idea.