Giter Club home page Giter Club logo

Comments (4)

fy-meng avatar fy-meng commented on July 1, 2024 1

似乎是因为live.bilibili.com/[ROOMURL]不再显示ROOMID等信息了,不过这些信息还可以从api.live.bilibil.com/[ROOMURL]里面获取到。
我试了一下,把Bilibili.py中第 21 行BilibiliDanMuClient._get_live_status(self)url中的'http://live.bilibili.com/'改成'http://api.live.bilibili.com/'应该就能解决问题。

def _get_live_status(self):
    url = ('http://live.bilibili.com/'                # change to 'http://api.live.bilibili.com/'
        + self.url.split('/')[-1] or self.url.split('/')[-2])
    self.roomId = re.findall(b'var ROOMID = (\d+);', requests.get(url).content)[0].decode('ascii')
    r = requests.get('http://live.bilibili.com/api/player?id=cid:' + self.roomId)
    self.serverUrl = re.findall(b'<server>(.*?)</server>', r.content)[0].decode('ascii')
    return re.findall(b'<state>(.*?)</state>', r.content)[0] == b'LIVE'

from danmu.

zhangsheng377 avatar zhangsheng377 commented on July 1, 2024

@fy-meng 额。。第一次提交pull request。。。纯粹想试试。。。。如果觉得不妥,请告知我,我立马关闭pull。。。再次感谢~~~

from danmu.

Arcadia822 avatar Arcadia822 commented on July 1, 2024

参考https://github.com/wuYin/crawler/blob/master/functions.php
可以通过接口https://api.live.bilibili.com/room/v1/Room/room_init?id=${ROOMURL}获取room_id
json路径为data.room_id

from danmu.

Arcadia822 avatar Arcadia822 commented on July 1, 2024

另外之前爬取弹幕服务器的方案也不可用了,在网上搜到的另一个api获取弹幕服务器的接口也挂了,不过从别人博客查到的之前爬到的地址还能用,修改prepare_env后重新跑通了

    def _prepare_env(self):
        return ("broadcastlv.chat.bilibili.com", 2243), {}

from danmu.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.