当前位置:网站首页>Analysis of protobuf format of real-time barrage and historical barrage at station B
Analysis of protobuf format of real-time barrage and historical barrage at station B
2022-07-06 15:59:00 【Catch the king before the thief】
Reference resources :
- https://zhuanlan.zhihu.com/p/392931611
- https://gitee.com/nbody1996/bilibili-API-collect/blob/master/danmaku/danmaku_proto.md
- Bilibili Historical barrage :https://www.cnblogs.com/mollnn/p/14964905.html
b The format of station barrage transmission is changed from the original xml Change it to protobuf, This format is binary coded transmission , Its transmission sales are much higher than the original xml, Therefore, it has certain advantages to reduce the pressure of the network at the mobile end . But one problem is , The bullet screen in this format becomes very difficult to parse , Usually from api The data obtained is a mess directly , You need a specific way to see the real content , It's a headache .
B Station not used protobuf The barrage interface before the Protocol
1、 What is? Protobuf
Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data – think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages.
The above passage comes from Google Protobuf Introduction to the official website , In short, it is a transmission protocol , Than xml smaller 、 faster 、 It's simpler , More information can be found in :https://developers.google.com/protocol-buffers/
2、 How to parse Protobuf Bullet curtain of
2.1 download Protoc compiler
Protoc It's used to put .proto Files are compiled into various programming languages ( Such as Python、Golang etc. ) The compiler , Carry out Protobuf Necessary conditions for analysis , It can be downloaded from the link below :https://github.com/protocolbuffers/protobuf


After downloading, unzip it to exe file , No installation required , But it needs to be added manually to Path in .

Determine whether the installation is successful by running the following code in the terminal :protoc --version

2.2 download Protobuf-Python In order to be in Python Chinese analysis Protobuf
Download address :https://github.com/protocolbuffers/protobuf
Unzip after download , Then enter python Entry directory ,

Execute the following command line code :
python setup.py clean
python setup.py build
python setup.py install
python setup.py test2.3 Bullet screen proto Define and compile
Barrage format ,protobuf Structure :
dm.proto
syntax = "proto3";
package dm;
message DmSegMobileReply{
repeated DanmakuElem elems = 1;
}
message DanmakuElem{
int64 id = 1;
int32 progress = 2;
int32 mode = 3;
int32 fontsize = 4;
uint32 color = 5;
string midHash = 6;
string content = 7;
int64 ctime = 8;
int32 weight = 9;
string action = 10;
int32 pool = 11;
string idStr = 12;
}| name | meaning | type | remarks |
|---|---|---|---|
| id | bullet chat dmID | int64 | only Can be used for operating parameters |
| progress | The time when the bullet screen appears in the video | int32 | millisecond |
| mode | Barrage type | int32 | 1 2 3: Ordinary barrage 4: Bottom barrage 5: Top barrage 6: Reverse barrage 7: Advanced barrage 8: Code barrage 9:BAS bullet chat |
| fontsize | Bullet screen font size | int32 | 18: Small 25: standard 36: Big |
| color | Barrage color | uint32 | Decimal system RGB888 value |
| midHash | sender UID Of HASH | string | Used to shield users and view all barrages sent by users You can also reverse check the user ID |
| content | The contents of the barrage | string | utf-8 code |
| ctime | Barrage sending time | int64 | Time stamp |
| weight | The weight | int32 | Used for intelligent shielding level |
| action | action | string | Unknown |
| pool | Barrage pool | int32 | 0: Ordinary pool 1: Caption pool 2: Special pool ( Code /BAS bullet chat ) |
| idStr | bullet chat dmID String type of | string | only Can be used for operating parameters |
2.4 analysis seg.so Bullet screen data in format
Sample video :https://www.bilibili.com/video/av98919207
Before parsing, you need to install python Of probuf package : pip install protobuf

compile proto Structure file ,
protoc --python_out=. dm.protoAfter execution, it will generate dm_pb2.py, Introduce this into the code python file ,

dm_pj.py The code is as follows :
Be careful :
- Real time barrage Unwanted cookie, Ask directly to get seg.so
- Historical barrage need cookie To get it seg.so
# -*- coding: utf-8 -*-
# @Author :
# @Date :
# @File : dm_pj.py
# @description : XXX
import json
import requests
from dm_pb2 import DmSegMobileReply
from google.protobuf.json_format import MessageToJson, Parse
b_web_cookie = 'SESSDATA=fd25e2e6%2C1660373048%2C287c9%2A21;'
def get_date_list():
url = "https://api.bilibili.com/x/v2/dm/history/index?type=1&oid=168855206&month=2022-02"
headers = {
'cookie': b_web_cookie
}
response = requests.get(url, headers=headers)
print(json.dumps(response.json(), ensure_ascii=False, indent=4))
def dm_real_time():
url_real_time = 'https://api.bilibili.com/x/v2/dm/web/seg.so?type=1&oid=168855206&pid=98919207&segment_index=1'
resp = requests.get(url_real_time)
DM = DmSegMobileReply()
DM.ParseFromString(resp.content)
data_dict = json.loads(MessageToJson(DM))
# print(data_dict)
list(map(lambda x=None: print(x['content']), data_dict.get('elems', [])))
def dm_history():
url_history = 'https://api.bilibili.com/x/v2/dm/web/history/seg.so?type=1&oid=168855206&date=2022-02-23'
headers = {
'cookie': b_web_cookie
}
resp = requests.get(url_history, headers=headers)
DM = DmSegMobileReply()
DM.ParseFromString(resp.content)
data_dict = json.loads(MessageToJson(DM))
# print(data_dict)
list(map(lambda x=None: print(x['content']), data_dict.get('elems', [])))
if __name__ == '__main__':
# dm_real_time()
get_date_list()
# dm_history()
pass
Screenshot of execution result :

Barrage contrast :

边栏推荐
- Find 3-friendly Integers
- Penetration test (1) -- necessary tools, navigation
- Flink 使用之 CEP
- Borg Maze (BFS+最小生成树)(解题报告)
- Cost accounting [20]
- China exterior wall cladding (EWC) market trend report, technical dynamic innovation and market forecast
- Accounting regulations and professional ethics [3]
- 【练习-7】(Uva 10976)Fractions Again?!(分数拆分)
- Information security - threat detection engine - common rule engine base performance comparison
- Opencv learning log 14 - count the number of coins in the picture (regardless of overlap)
猜你喜欢

用C语言写网页游戏

渗透测试 ( 2 ) --- 渗透测试系统、靶机、GoogleHacking、kali工具

Web based photo digital printing website

Penetration testing (5) -- a collection of practical skills of scanning King nmap and penetration testing tools

动态规划前路径问题优化方式

TCP的三次握手与四次挥手

C语言数组的概念

B - 代码派对(女生赛)

滲透測試 ( 1 ) --- 必備 工具、導航

渗透测试 2 --- XSS、CSRF、文件上传、文件包含、反序列化漏洞
随机推荐
Truck History
C语言是低级和高级的分水岭
Perform general operations on iptables
Borg Maze (BFS+最小生成树)(解题报告)
China earth moving machinery market trend report, technical dynamic innovation and market forecast
最全编程语言在线 API 文档
frida hook so层、protobuf 数据解析
【高老师UML软件建模基础】20级云班课习题答案合集
【练习-2】(Uva 712) S-Trees (S树)
Information security - threat detection - detailed design of NAT log access threat detection platform
渗透测试 ( 1 ) --- 必备 工具、导航
Cost accounting [21]
Perinatal Software Industry Research Report - market status analysis and development prospect forecast
Record of force deduction and question brushing
Optimization method of path problem before dynamic planning
SSM框架常用配置文件
[exercise-6] (UVA 725) division = = violence
Cost accounting [14]
数据在内存中的存储&载入内存,让程序运行起来
b站 实时弹幕和历史弹幕 Protobuf 格式解析