Giter Site home page Giter Site logo

hliang / douyin-live Goto Github PK

View Code? Open in Web Editor NEW

This project forked from sjj1024/douyin-live

0.0 1.0 0.0 1.54 MB

Python爬虫,抖音直播小爬虫,可以爬取抖音直播弹幕,抖音直播礼物,抖音礼物排行,抖音直播账号信息,抖音直播流地址,抖音直播礼物价值,抖音直播进出,抖音直播在线观众

Python 97.91% HTML 2.09% Batchfile 0.01%

douyin-live's Introduction

抖音直播爬虫 python 实现

注意:不能获取匿名直播间用户信息,这只是爬虫,不是黑客。
抖音弹幕抓取,礼物抓取,直播流地址抓取,可以抓取到m3u8直播流链接,还有flv直播流链接,还有直播礼物打赏排名,在线观众排名等等。
可配置服务端地址,将数据推送到自己的服务器,可以控制是否开启推送等配置。可以控制是否保存lOG文件等配置。
欢迎参观我的CSDN博客:我的CSDN博客,阅读量过260W,粉丝过3W
欢迎参观我的掘金博客:我的掘金博客,阅读量过100,粉丝过2个

环境大于3.6应该都可以

python 3.9 

附上windows的python3.9.2安装包:https://wwd.lanzouq.com/i6AEm02zzppi

安装依赖

pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/

生成Proto文件

(proto是需要单独安装的一个工具哦,mac电脑应该是必须执行这条命令才可以,windows的应该可以直接用,如果你是要部署到linux服务器上,可能需要单独安装proto,然后再执行下面的命令)

protoc -I . --python_out=. ./proto/dy.proto

此时会在proto文件夹中重新生成dy_pb2.py文件,mac电脑一定要这样做,windows也尽量这样生成一下,避免程序启动失败。

动态配置

# 配置日志信息
import logging

# 配置日志信息
LOG_FILE_SAVE = True
LOG_FILE_NAME = "log.txt"
LOG_LEVEL = logging.DEBUG
LOG_FORMAT = "%(asctime)s - %(levelname)s - %(message)s"

# 直播信息配置:直播地址,直播用户排名,直播排名抓取间隔,直播推送到后台,推送到后台地址
LIVE_ROOM_URL = "https://live.douyin.com/646454278948"
# 特殊礼物单独统计
LIVE_GIFT_LIST = ["月下瀑布"]
# 是否抓取在线打赏排名
LIVE_RANK_LIST = True
# 获取礼物排名时间间隔: 建议不要低于10秒
LIVE_RANK_INTERVAL = 10
# 使用ws推送直播数据
LIVE_WEB_SEND = False
# 是否开启HTTP推送
LIVE_HTTP_SEND = True
# 多久向服务端推送一条消息
LIVE_SEND_INTERVAL = 3
# HTTP推送地址:普通用户不用管下面的配置,需要将直播数据推送到你们服务器的才配置
LIVE_WEB_SEND_URL = "http://************/game/gamemgnt"
# 一场比赛唯一的UUID
GAME_UUID = "157ae45b-263b-414a-8976-6d2ad210a7e8"
# 应援UUID(这是我们自己项目推送使用的参数):4
DONATION_UUID = "179019d3-83dd-4619-b7d9-579786659204"

运行

打开浏览器,打开你想监听的抖音直播间,然后将直播间网址黏贴到config.py的LIVE_ROOM_URL中,然后运行main.py程序即可看到效果。 注意:如果要获取排名,需要将时间间隔设置大一点,否则抓取频繁会获取不到数据:打包房间人数失败

python main.py

直播流地址

直播流地址可以使用在线播放工具测试是否可以正常播放直播内容
西瓜播放器(支持flv直播流):https://h5player.bytedance.com/generate/
m3u8在线播放器(播放m3u8流):http://tool.pfan.cn/m3u8/

TODO

有的直播有可能获取不到m3u8的链接,待研究:https://live.douyin.com/3652616706
flv直播流地址区分标清|高清|蓝光地址,需要都获取到

运行效果

记得修改config.py里面的直播地址啊,不然获取不到数据的!
获取线上数据失败:如果你不用将直播数据推送到你们的服务器上,可以忽略此提示
start http senders
http sender
2024-06-23 12:09:42,452 - DEBUG - Starting new HTTPS connection (1): live.douyin.com:443
2024-06-23 12:09:42,755 - DEBUG - https://live.douyin.com:443 "GET /686317875683 HTTP/1.1" 200 None
主播账号信息: {'id_str': '4494447533370240', 'sec_uid': 'MS4wLjABAAAAhArPTznJ_2XJXkz4ajjB4ONd4gt_WvBiRy-ReJW5bI70SBHEwyDfRQZgw6ZsWpmm', 'nickname': '兔子178(助力新人)', 'avatar_thumb': {'url_list': ['https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_a8c2d40101fa34edfa0ca343a9ea9275.jpeg?from=3067671334', 'https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_a8c2d40101fa34edfa0ca343a9ea9275.jpeg?from=3067671334', 'https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_a8c2d40101fa34edfa0ca343a9ea9275.jpeg?from=3067671334']}, 'follow_info': {'follow_status': 0, 'follow_status_str': '0'}, 'subscribe': {'is_member': False, 'level': 0, 'identity_type': 0, 'buy_type': 0, 'open': 1}, 'open_id_str': ''}
直播流m3u8链接地址是: https://pull-hls-l6.douyincdn.com/stage/stream-115367666226823199_or4/index.m3u8?k=342ddd8742f84d4b&t=1719720583
直播流FLV地址是: https://pull-flv-l6.douyincdn.com/stage/stream-115367666226823199_or4.flv?k=eacb0e65da246f82\u0026t=1719720583
间隔10秒更新一下排行
2024-06-23 12:09:43,723 - INFO - 房间标题: 首播破万,快来看看
2024-06-23 12:09:43,724 - INFO - 主播账号信息: {'id_str': '4494447533370240', 'sec_uid': 'MS4wLjABAAAAhArPTznJ_2XJXkz4ajjB4ONd4gt_WvBiRy-ReJW5bI70SBHEwyDfRQZgw6ZsWpmm', 'nickname': '兔子178(助力新人)', 'avatar_thumb': {'url_list': ['https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_a8c2d40101fa34edfa0ca343a9ea9275.jpeg?from=3067671334', 'https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_a8c2d40101fa34edfa0ca343a9ea9275.jpeg?from=3067671334', 'https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_a8c2d40101fa34edfa0ca343a9ea9275.jpeg?from=3067671334']}, 'follow_info': {'follow_status': 0, 'follow_status_str': '0'}, 'subscribe': {'is_member': False, 'level': 0, 'identity_type': 0, 'buy_type': 0, 'open': 1}, 'open_id_str': ''}
2024-06-23 12:09:43,725 - INFO - 直播流m3u8链接地址是: https://pull-hls-l6.douyincdn.com/stage/stream-115367666226823199_or4/index.m3u8?k=342ddd8742f84d4b&t=1719720583
2024-06-23 12:09:43,726 - INFO - 直播流FLV地址是: https://pull-flv-l6.douyincdn.com/stage/stream-115367666226823199_or4.flv?k=eacb0e65da246f82\u0026t=1719720583
2024-06-23 12:09:43,732 - DEBUG - Starting new HTTPS connection (1): live.douyin.com:443
2024-06-23 12:09:43,761 - INFO - 弹幕监听地址wsurl:wss://webcast5-ws-web-lf.douyin.com/webcast/im/push/v2/?room_id=7383530533722000165&compress=gzip&version_code=180800&webcast_sdk_version=1.0.14-beta.0&live_id=1&did_rule=3&user_unique_id=7903278610184481671&identity=audience&signature=64VRjIHYpMqj6bz0&aid=6383&device_platform=web&browser_language=zh-CN&browser_platform=Win32&browser_name=Mozilla&browser_version=5.0+%28Windows+NT+10.0%3B+Win64%3B+x64%29+AppleWebKit%2F537.36+%28KHTML%2C+like+Gecko%29+Chrome%2F126.0.0.0+Safari%2F537.36+Edg%2F126.0.0.0
2024-06-23 12:09:43,847 - DEBUG - https://live.douyin.com:443 "GET /webcast/ranklist/audience/?aid=6383&app_name=douyin_web&live_id=1&device_platform=web&language=zh-CN&cookie_enabled=true&screen_width=2560&screen_height=1440&browser_language=zh-CN&browser_platform=Win32&browser_name=Chrome&browser_version=117.0.0.0&webcast_sdk_version=2450&room_id=7383530533722000165&rank_type=30 HTTP/1.1" 200 0
推送打赏排名出错:Expecting value: line 1 column 1 (char 0)
2024-06-23 12:09:44,195 - INFO - Websocket connected
2024-06-23 12:09:44,195 - INFO - [onOpen] [webSocket Open事件] [房间Id:7383530533722000165]
2024-06-23 12:09:44,196 - INFO - [ping] [💗发送ping心跳] [房间Id:7383530533722000165] ====> 房间🏖标题【首播破万,快来看看】
2024-06-23 12:09:44,328 - INFO - [sendAck] [🌟发送Ack] [房间Id:7383530533722000165] ====> 房间标题【首播破万,快来看看】
2024-06-23 12:09:44,328 - INFO - [onMessage] [待解析方法WebcastRoomMessage等待解析~] [房间Id:7383530533722000165]
2024-06-23 12:09:44,328 - INFO - [onMessage] [待解析方法WebcastRoomIntroMessage等待解析~] [房间Id:7383530533722000165]
2024-06-23 12:09:44,328 - INFO - [onMessage] [待解析方法WebcastInRoomBannerMessage等待解析~] [房间Id:7383530533722000165]
2024-06-23 12:09:44,328 - INFO - [onMessage] [待解析方法WebcastRoomRankMessage等待解析~] [房间Id:7383530533722000165]
2024-06-23 12:09:44,329 - INFO - [onMessage] [待解析方法WebcastRoomStatsMessage等待解析~] [房间Id:7383530533722000165]
2024-06-23 12:09:44,329 - INFO - [onMessage] [待解析方法WebcastRoomStreamAdaptationMessage等待解析~] [房间Id:7383530533722000165]
2024-06-23 12:09:44,346 - INFO - [sendAck] [🌟发送Ack] [房间Id:7383530533722000165] ====> 房间标题【首播破万,快来看看】
2024-06-23 12:09:44,346 - INFO - [onMessage] [待解析方法WebcastRanklistHourEntranceMessage等待解析~] [房间Id:7383530533722000165]
2024-06-23 12:09:44,347 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息1] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546020645164051", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "102630063603", "shortId": "1240345440", "nickName": "爱囚", "gender": 2, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_osSAAhSNTIADAAGPZzaSItAXMghNOCzAyEleAf.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_9.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "9", "alternativeText": "荣誉等级9级勋章"}}], "FollowInfo": {"followingCount": "1367", "followerCount": "428", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "AA2954075452", "secUid": "MS4wLjABAAAA-_8jRXqOBP1aF91al_vB6u-sOsgHWd8xupPqzDuyl_c"}, "content": "比心  比心  首播 爱心  爱心 正在筹备中 或开播的兄弟姐妹们 关注大美见证你的风采 玫瑰  玫", "giftImage": {"urlListList": ["\nQhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#607A53"], "width": "50"}, "eventTime": "1719115781", "individualChatPriority": 50}
2024-06-23 12:09:44,347 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息2] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546043671303208", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "2960358302823159", "shortId": "79882414029", "nickName": "安安", "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oQQgkzmr8mAABIXdNBPAZJAqPiIB9iAE3js07.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "40", "followerCount": "2217", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "79882414029", "secUid": "MS4wLjABAAAAYo2TVmMl-9cJvXHRs8pOwT9s3txoi0LfwNTYilWU661JMDWmb-h6dK_Qh5C5GUhi"}, "content": "交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友[粽子][粽子][粽子]", "giftImage": {"urlListList": ["\nVhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#FADCDC"], "width": "30", "avgColor": "\n\u00018\u0012\u00011"}, "eventTime": "1719115781", "individualChatPriority": 30}
2024-06-23 12:09:44,347 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息3] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546014588965897", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31032"}, "user": {"id": "4018052619052676", "shortId": "73549366931", "nickName": "炸毛可乐ᜊ ᜊ", "gender": 2, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/douyin-user-image-file_7aa9c817fb41e21ee7f70980a070b942.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "235", "followerCount": "387", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "73549366931", "secUid": "MS4wLjABAAAAjaLmbXJQ2Sbr1iWXcQGjLhBd2cyQLNebZk2w6RW8n0pd-_28ZywKOKhLmnBHpG6I"}, "content": "大家好,很高兴认识你们。。。大家好,很高兴认识你们。。。大家好,很高兴认识你们。。。大家好,很高兴认", "giftImage": {"width": "50"}, "eventTime": "1719115781", "individualChatPriority": 50}
2024-06-23 12:09:44,348 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息4] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546013209351178", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31031"}, "user": {"id": "3123066406971083", "shortId": "46587669896", "nickName": "玲灵117", "gender": 2, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_o4EoXiA0eAEtQ8BrAG7Me4EfVIBELBAMXKAIzl.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_11.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "11", "alternativeText": "荣誉等级11级勋章"}}, {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_5.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "5", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "51", "followerCount": "1497", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "46587669896", "secUid": "MS4wLjABAAAAGqfp7zZTBaMlFzZ_UmT5o-HgkPqjvPyDnXCJn_FaJLUBsxCxJnmJu6_Pksjt-ywN"}, "content": "交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁", "giftImage": {"urlListList": ["\nVhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#7A6053"], "width": "30", "avgColor": "\n\u00018\u0012\u00011"}, "eventTime": "1719115781", "individualChatPriority": 30}
2024-06-23 12:09:44,348 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息5] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546009392256009", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "69814708992", "shortId": "657923782", "nickName": "星云哥", "gender": 1, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_o07Svy5RhrgXAfwDrACEAgA9oFA6CZzNAI4NeY.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_19.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "19", "alternativeText": "荣誉等级19级勋章"}}], "FollowInfo": {"followingCount": "1729", "followerCount": "3072", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "657923782", "secUid": "MS4wLjABAAAAsNvhaZuzhl_JF3Ck-6Ku14b4XWIrrkSk1UfLQF-sVN0"}, "content": "[爱心]交朋友[爱心]交朋友[爱心]交朋友[爱心]交朋友[爱心]交朋友[爱心]交朋友[爱心]交朋友[爱心]交朋友[爱心]交朋友[爱心]交朋友[爱心]交朋友", "giftImage": {"urlListList": ["\nVhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#666666"], "width": "30", "avgColor": "\n\u00018\u0012\u00011"}, "eventTime": "1719115781", "individualChatPriority": 30}
2024-06-23 12:09:44,348 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息6] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546035061150754", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "1380617975497119", "shortId": "3652151566", "nickName": "倚窗听雨", "gender": 2, "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/mosaic-legacy_31c080002074836fc84ad.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "1440", "followerCount": "1757", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "yichuangting70", "secUid": "MS4wLjABAAAA041rt0SJdxHByToXUhxZLVsBsB6x4BcRdnUlqfVjHAeQkKPUe-SFf0zGFfJOt-CG"}, "content": "交朋友  交朋友  交朋友  交朋友  交朋友  交朋友  交朋友  交朋友  交朋友  交朋友", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#BCBCE0"], "width": "50"}, "eventTime": "1719115782", "individualChatPriority": 50}
2024-06-23 12:09:44,348 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息7] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546044649067535", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31008"}, "user": {"id": "781070068360937", "shortId": "73485905170", "nickName": "一瓶卸妆水", "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_o0AAi0mkAe9JDHaA8LADnQgnygQCPAZCcebZg8.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_3.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "3", "alternativeText": "荣誉等级3级勋章"}}], "FollowInfo": {"followingCount": "1018", "followerCount": "1263", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "73485905170", "secUid": "MS4wLjABAAAATetI8beFH_kkBYY1B8yDa-heV7_Ejh618C7_P3JKqto"}, "content": "赞  赞  赞  赞  赞", "giftImage": {"urlListList": ["\nQhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#BCD9E0"], "width": "50"}, "eventTime": "1719115782", "individualChatPriority": 50}
2024-06-23 12:09:44,349 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息8] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546020657566771", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "3261591442164153", "shortId": "71664756868", "nickName": "追剧的霞妹妹5号", "gender": 2, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oc9vmAI2ZADfglAEEQBAC1RmWCFk9ZTEqAubfA.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "425", "followerCount": "468", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "71664756868", "secUid": "MS4wLjABAAAAFb-fXA6uTolas7NtaUIsZPo404PVU8wnh-QqfDqucP0nmsR8Iq7wfh-KJnXA1NtQ"}, "content": "交朋友 点关注 交朋友 点关注 交朋友 点关注 交朋友 点关注 交朋友 点关注 交朋友 点关注[困][困][困]", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#CCB1A3"], "width": "50"}, "eventTime": "1719115782", "individualChatPriority": 50}
2024-06-23 12:09:44,349 - INFO - [unPackWebcastGiftMessage] [直播间礼物消息1:1] [房间Id:7383530533722000165] {"common": {"method": "WebcastGiftMessage", "msgId": "7383546038311031858", "roomId": "7383530533722000165", "createTime": "1719115782", "isShowMsg": true, "describe": "@琴姐:送给主播 1个人气票", "priorityScore": "31000"}, "giftId": "3992", "groupCount": "1", "repeatCount": "1", "comboCount": "1", "user": {"id": "97112688353", "shortId": "1506682181", "nickName": "@琴姐", "gender": 2, "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oMlbIWCeAACa6CzRAAgfGz0qENSLyghCiAWHbA.jpeg?from=3067671334", "https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oMlbIWCeAACa6CzRAAgfGz0qENSLyghCiAWHbA.jpeg?from=3067671334", "https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oMlbIWCeAACa6CzRAAgfGz0qENSLyghCiAWHbA.jpeg?from=3067671334"], "uri": "100x100/aweme-avatar/tos-cn-i-0813c001_oMlbIWCeAACa6CzRAAgfGz0qENSLyghCiAWHbA"}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_29.png~tplv-obj.image", "http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_29.png~tplv-obj.image"], "uri": "webcast/new_user_grade_level_v1_29.png", "height": "16", "width": "32", "imageType": 1, "content": {"level": "29", "alternativeText": "荣誉等级29级勋章"}}, {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_12.png~tplv-obj.image", "http://p11-webcast.douyinpic.com/img/webcast/fansclub_level_v6_12.png~tplv-obj.image"], "uri": "webcast/fansclub_level_v6_12.png", "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "12", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "6105", "followerCount": "11204", "followerCountStr": "1.1万", "followingCountStr": "6105"}, "displayId": "chu221435sw", "secUid": "MS4wLjABAAAA6EimHh1QDZuRIowITNXxdxj0nmkmlNdLspG-FXHxsA4"}, "repeatEnd": 1, "groupId": "1719115779", "gift": {"image": {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/e9b7db267d0501b8963d8000c091e123.png~tplv-obj.png", "http://p11-webcast.douyinpic.com/img/webcast/e9b7db267d0501b8963d8000c091e123.png~tplv-obj.png"], "uri": "webcast/e9b7db267d0501b8963d8000c091e123.png", "avgColor": "#FFF1EB"}, "describe": "送出人气票", "id": "3992", "forLinkmic": true, "combo": true, "type": 1, "diamondCount": 1, "isDisplayedOnPanel": true, "giftLabelIcon": {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/6218e1b5a8c9b0d1d34bf9d1f2230a73.png~tplv-obj.png", "http://p11-webcast.douyinpic.com/img/webcast/6218e1b5a8c9b0d1d34bf9d1f2230a73.png~tplv-obj.png"], "uri": "webcast/6218e1b5a8c9b0d1d34bf9d1f2230a73.png", "avgColor": "#CCA3A3"}, "name": "人气票", "icon": {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/e9b7db267d0501b8963d8000c091e123.png~tplv-obj.png", "http://p11-webcast.douyinpic.com/img/webcast/e9b7db267d0501b8963d8000c091e123.png~tplv-obj.png"], "uri": "webcast/e9b7db267d0501b8963d8000c091e123.png", "avgColor": "#CCBEA3"}}, "sendType": "4", "publicAreaCommon": {"userLabel": {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image", "http://p11-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image"], "uri": "webcast/userlabel_regular_chat.png", "avgColor": "#7A6D53"}}, "trayDisplayText": {"key": "webcast_aweme_tray_message_to_anchor", "defaultPatter": "送{0}", "defaultFormat": {"color": "#B3FFFFFF", "weight": 400, "useRemoteClor": true}, "piecesList": [{"type": true, "format": {"color": "#B3FFFFFF", "weight": 400, "useRemoteClor": true}}]}, "totalCount": "1", "clientGiftSource": 1, "sendTime": "1719115779219", "traceId": "7f6c867d614ffe103610038e622e2357"}
2024-06-23 12:09:44,349 - INFO - [unPackWebcastMemberMessage] [直播间成员加入: 6135] [房间Id:7383530533722000165] | {"common": {"method": "WebcastMemberMessage", "msgId": "7383546064295867443", "roomId": "7383530533722000165", "isShowMsg": true, "foldType": "1", "anchorFoldType": "1", "priorityScore": "42000", "anchorFoldTypeV2": "3"}, "user": {"id": "109834820475", "shortId": "2935566400", "nickName": "阳光女孩", "gender": 2, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/mosaic-legacy_2df650004e06a513be8cc.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_2.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "2", "alternativeText": "荣誉等级2级勋章"}}], "FollowInfo": {"followingCount": "604", "followerCount": "258", "followerCountStr": "258", "followingCountStr": "604"}, "displayId": "dy1qjnadoj4g", "secUid": "MS4wLjABAAAAAF-aMPcm9_U2tdsDd9dzolq7Oj-JwuylcJ2TpQQukgg"}, "memberCount": "6135", "action": "1", "anchorDisplayText": {"key": "live_room_enter_toast", "defaultPatter": "{0:user} 来了{1:string}", "defaultFormat": {"color": "#b8ffffff", "weight": 400}, "piecesList": [{"type": true, "format": {"color": "#8CE7FF", "weight": 400}}]}, "publicAreaCommon": {}}
2024-06-23 12:09:44,349 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息9] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546038395163702", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "104687758145", "shortId": "1521069209", "nickName": "杨大美", "gender": 2, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_4820491acafa4696bc83ed4135f6eb05.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_16.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "16", "alternativeText": "荣誉等级16级勋章"}}], "FollowInfo": {"followingCount": "1884", "followerCount": "10018", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "YL911911911", "secUid": "MS4wLjABAAAAFWLWcfGCRN16r4iZIspA5TVeASfSkFlXyfy7dBcK5Co"}, "content": "首播[爱心][爱心]正在筹备中,或开播的兄弟姐妹们,关注大美见证你的风采[玫瑰][玫瑰][玫瑰][呲牙][呲牙][呲牙][爱心][爱心][爱心][爱心][爱心][爱心][爱心][爱心][爱心][爱心]", "giftImage": {"urlListList": ["\nVhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#607A53"], "width": "50"}, "eventTime": "1719115782", "individualChatPriority": 50}
2024-06-23 12:09:44,350 - INFO - [unPackWebcastMemberMessage] [直播间成员加入: 6135] [房间Id:7383530533722000165] | {"common": {"method": "WebcastMemberMessage", "msgId": "7383546062139405861", "roomId": "7383530533722000165", "isShowMsg": true, "foldType": "1", "anchorFoldType": "1", "priorityScore": "42000", "anchorFoldTypeV2": "3"}, "user": {"id": "2106297425333102", "shortId": "2921542892", "nickName": "郭利民", "gender": 1, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_61f68c4b935049599ad849e55252e062.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_2.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "2", "alternativeText": "荣誉等级2级勋章"}}], "FollowInfo": {"followingCount": "1601", "followerCount": "301", "followerCountStr": "301", "followingCountStr": "1601"}, "displayId": "guolimin3659", "secUid": "MS4wLjABAAAAVxYIhEICCjLaGLrBytC8LjuX2ltNmnaSxqPe2CJvVN9AneqFJEDO0KD5Apiw_Cls"}, "memberCount": "6135", "action": "1", "anchorDisplayText": {"key": "live_room_enter_toast", "defaultPatter": "{0:user} 来了{1:string}", "defaultFormat": {"color": "#b8ffffff", "weight": 400}, "piecesList": [{"type": true, "format": {"color": "#8CE7FF", "weight": 400}}]}, "publicAreaCommon": {}}
2024-06-23 12:09:44,350 - INFO - [unPackWebcastMemberMessage] [直播间成员加入: 6146] [房间Id:7383530533722000165] | {"common": {"method": "WebcastMemberMessage", "msgId": "7383546062697542196", "roomId": "7383530533722000165", "isShowMsg": true, "foldType": "1", "anchorFoldType": "1", "priorityScore": "42000", "anchorFoldTypeV2": "3"}, "user": {"id": "65514369861", "shortId": "1703127154", "nickName": "漳墩格力家电", "gender": 2, "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oIzzCGzAhT6f4AZAOghEAMUAePsKzAAOANbIwD.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_2.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "2", "alternativeText": "荣誉等级2级勋章"}}], "FollowInfo": {"followingCount": "1003", "followerCount": "166", "followerCountStr": "166", "followingCountStr": "1003"}, "displayId": "1703127154", "secUid": "MS4wLjABAAAAcod2qBUJlLrvcmr-DUNSh5HreFXcuezg5YzXZXta9H0"}, "memberCount": "6146", "action": "1", "anchorDisplayText": {"key": "live_room_enter_toast", "defaultPatter": "{0:user} 来了{1:string}", "defaultFormat": {"color": "#b8ffffff", "weight": 400}, "piecesList": [{"type": true, "format": {"color": "#8CE7FF", "weight": 400}}]}, "publicAreaCommon": {}}
2024-06-23 12:09:44,350 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息10] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546047462675508", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "1552934702955419", "shortId": "81170392977", "nickName": "Qiu", "gender": 2, "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_8732fac9fbe6310da460011f15355f26.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "89", "followerCount": "61", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "81170392977", "secUid": "MS4wLjABAAAAMAMUttI0xw3QwpDbCz-oWB9EPTYzXSRzOV37l7E8RSGIHW-RTtRaNRt6IKMB9moA"}, "content": "帅哥美女交朋友  帅哥美女交朋友  帅哥美女交朋友  帅哥美女交朋友  帅哥美女 求抱抱  求抱抱", "giftImage": {"width": "50"}, "eventTime": "1719115782", "individualChatPriority": 50}
2024-06-23 12:09:44,350 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息11] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546038600258614", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31032"}, "user": {"id": "2010348901110989", "shortId": "66487528806", "nickName": "风止意难平", "gender": 1, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_o4g6YA0nSI7YxHJeDAAe7AEeDCL9beiAr2IoCI.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "210", "followerCount": "238", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "66487528806", "secUid": "MS4wLjABAAAApKqySMZpD6Yf2P9_80UkOG8JRwvzqPayGzOruQY4vNd0H0_LtB9lzrC1ja4RpPHe"}, "content": "不错很喜欢不错很喜欢不错很喜欢不错很喜欢不错很喜欢不错很喜欢不错很喜欢不错很喜欢不错很喜欢不错很", "giftImage": {"urlListList": ["\nQhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#FFFFFF"], "width": "50"}, "eventTime": "1719115782", "individualChatPriority": 50}
2024-06-23 12:09:44,350 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息12] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546039855289378", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "2225013813677517", "shortId": "3508075309", "nickName": "用户3712797715979", "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_osPAGiAIAQAuiXHjU2PBBZIwG8AmEzAjBBa75.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_3.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "3", "alternativeText": "荣誉等级3级勋章"}}], "FollowInfo": {"followingCount": "470", "followerCount": "376", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "dye3hq8epa82", "secUid": "MS4wLjABAAAAcCiazORULnsjI0EwFmBuwuxgmUtYz2w5pd3TjX-0ZaKOi2A52CdQM6KrhFYfLDsp"}, "content": "交朋友,交朋友,求关注,求关注,有关必回,有关必回,", "giftImage": {"urlListList": ["\nRhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_watch.png~tplv-obj.image*\u0007#EBCEE1"], "width": "50"}, "eventTime": "1719115782", "individualChatPriority": 50}
2024-06-23 12:09:44,351 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息13] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546038953612328", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "102765727416", "shortId": "1248576530", "nickName": "章鱼小丸子🐙短剧", "gender": 2, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oMlCIpAAAnDAXgAAIXBCbeKD5ADQQQ9s9KVVfA.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_5.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "5", "alternativeText": "荣誉等级5级勋章"}}], "FollowInfo": {"followingCount": "367", "followerCount": "310", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "1248576530", "secUid": "MS4wLjABAAAAQAZbpms-ccdpp8KoNtsoVCOIx6fJOvX3BOxz5A2QKTA"}, "content": "互粉  互粉  互粉  互粉  互粉  互粉  互粉  互粉  互粉  互粉  互粉  互粉  互粉", "giftImage": {"urlListList": ["\nQhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#374C52"], "width": "30", "avgColor": "\n\u00018\u0012\u00011"}, "eventTime": "1719115782", "individualChatPriority": 30}
2024-06-23 12:09:44,351 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息14] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546040357704743", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "3897130257233790", "shortId": "42542086492", "nickName": "夏日 .", "gender": 1, "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_os9AICDEYwnA9ugjmeA1eo0AbLDADkIASdEKlB.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_12.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "12", "alternativeText": "荣誉等级12级勋章"}}], "FollowInfo": {"followingCount": "816", "followerCount": "838", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "42542086492", "secUid": "MS4wLjABAAAA08oWgcsH93wpIKZf0WwT-LtHcYLm_AzCyPvlK9MR7eIIlz-_yohGQ8N9L9ie0hq2"}, "content": "拉拉手,拉拉手……拉拉手,拉拉手……拉拉手,拉拉手……拉拉手,[比心][比心][比心]拉拉手……拉拉手,拉拉手……拉拉", "giftImage": {"urlListList": ["\nQhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#405237"], "width": "50"}, "eventTime": "1719115782", "individualChatPriority": 50}
2024-06-23 12:09:44,351 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息15] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546025250247730", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31069"}, "user": {"id": "728312559698900", "shortId": "62825598249", "nickName": "菲菲🎤(上午九点十八分首播)", "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_owyuENtZRBAyt3APA9i9AezABAOgqCNKISfTXi.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_15.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "15", "alternativeText": "荣誉等级15级勋章"}}, {"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/fansclub_level_v6_2.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "2", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "198", "followerCount": "827", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "62825598249", "secUid": "MS4wLjABAAAARppK7UWXRpsUUY7FXQHjUaN3pFL266uY_rLqRYEz-us"}, "content": "感谢‎  拥抱未来(首播22:19))送的人气票  x1", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#607A53"], "height": "2", "width": "50"}, "eventTime": "1719115782", "individualChatPriority": 50}
2024-06-23 12:09:44,351 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息16] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546042401035305", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "95378357985", "shortId": "1162123993", "nickName": "放弃治疗", "gender": 1, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/mosaic-legacy_9b9b0017b13b8d15f23b.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_2.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "2", "alternativeText": "荣誉等级2级勋章"}}], "FollowInfo": {"followingCount": "3249", "followerCount": "3412", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "TT882486", "secUid": "MS4wLjABAAAAkkX1l4DtuoUB1P-xYCslrEaj7Ln8yfzQFKsdFhAGABw"}, "content": "赞  赞  赞  赞  赞 强  强  强", "giftImage": {"urlListList": ["\nVhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_watch.png~tplv-obj.image*\u0007#7C9BA3"], "width": "50"}, "eventTime": "1719115782", "individualChatPriority": 50}
2024-06-23 12:09:44,351 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息17] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546020737995813", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31006"}, "user": {"id": "94999218230858", "shortId": "27513782947", "nickName": "艾玛丝", "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oAf29pRlmECAAAArlCdFTBaEIADAxmAxpgfYq3.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "14", "followerCount": "200", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "27513782947", "secUid": "MS4wLjABAAAAXMh5kI5ngyoQiM5DUoXT6bRaL6wD75BXi6BTFY88VbM"}, "content": "关注前榜十 吃瓜群众  吃瓜群众  吃瓜群众 金牌  金牌  金牌", "giftImage": {"urlListList": ["\nQhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#B1CCA3"], "width": "50"}, "eventTime": "1719115782", "individualChatPriority": 50}
2024-06-23 12:09:44,351 - INFO - [onMessage] [待解析方法WebcastRanklistHourEntranceMessage等待解析~] [房间Id:7383530533722000165]
2024-06-23 12:09:44,351 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息18] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546027590997004", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31067"}, "user": {"id": "73221642619", "shortId": "132661524", "nickName": "小樱桃百货", "gender": 2, "Level": 1, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_5b89d319b1cc1a9f0c795e5f978135f6.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_22.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "22", "alternativeText": "荣誉等级22级勋章"}}, {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_9.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "9", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "9324", "followerCount": "25489", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "Sl09520", "secUid": "MS4wLjABAAAAy97BEb6s3eBSL77dloSCTMITbPIX7YImO5TPevJVVns"}, "content": "有关必回有关必回交朋友有关必回有关必回交朋友有关必回有关必回交朋友有关必回有关必回交朋友", "giftImage": {"urlListList": ["\nWhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_new_send_gift.png~tplv-obj.image*\u0007#FADCF0"], "width": "50"}, "eventTime": "1719115782", "individualChatPriority": 80}
2024-06-23 12:09:44,351 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息19] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546046176007168", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "957013226431034", "shortId": "88532994431", "nickName": "栖栖", "gender": 2, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_okEyIAAA9rKcA2DmtFBdfgJTZzfAtEAgNdqOCM.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "309", "followerCount": "303", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "88532994431", "secUid": "MS4wLjABAAAAINRzAP6vtjlxoegStwb7AWPAQw4lam7QssitdiY19iY"}, "content": "交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁交老铁 抓", "giftImage": {"urlListList": ["\nRhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#523737"], "width": "30", "avgColor": "\n\u00018\u0012\u00011"}, "eventTime": "1719115783", "individualChatPriority": 30}
2024-06-23 12:09:44,352 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息20] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546038903051316", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31008"}, "user": {"id": "111254835728", "shortId": "2070026367", "nickName": "金鑫好物", "gender": 2, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oQIBTeMi1EAHBCnRQbleAaAADqXUEUTS9BeA7y.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_15.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "15", "alternativeText": "荣誉等级15级勋章"}}, {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_3.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "3", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "2406", "followerCount": "5518", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "2070026367", "secUid": "MS4wLjABAAAANAUgFvqITCMrN71_yfzhzegKAaY0-EapK6cvY_tBE6c"}, "content": "关注主播关注主播关注主播关注主播关注主播主播优秀主播优秀主播优秀主播优秀", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#E6FADC"], "width": "30", "avgColor": "\n\u00018\u0012\u00011"}, "eventTime": "1719115782", "individualChatPriority": 30}
2024-06-23 12:09:44,352 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息21] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546015796532262", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "105483945587", "shortId": "2934317573", "nickName": "💦森林🚿", "gender": 1, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_ad931030f300cc1034a3a32aedf63d0d.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_24.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "24", "alternativeText": "荣誉等级24级勋章"}}, {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_13.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "13", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "418", "followerCount": "26177", "followStatus": "2", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "r88888.....", "secUid": "MS4wLjABAAAA5PRBpVgGjraYEOdjA7tnDYjhHJarIgP3eMsyYk26yR8"}, "content": "诚信交友诚信交友诚信交友诚信交友诚信交友诚信交友诚信交友诚信交友诚信交友诚信交友诚信交友诚信交友诚信", "giftImage": {"urlListList": ["\nVhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#E0BCBC"], "width": "50"}, "eventTime": "1719115783", "individualChatPriority": 80}
2024-06-23 12:09:44,352 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息22] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546041998480384", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31069"}, "user": {"id": "4141192967094921", "shortId": "32634783456", "nickName": "菜农", "gender": 1, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oUISQAAA9esaAgDmDFDbfj5rCvvAYEAgN6X9Ct.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_5.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "5", "alternativeText": "荣誉等级5级勋章"}}, {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_2.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "2", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "25", "followerCount": "125", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "32634783456", "secUid": "MS4wLjABAAAABUVjtFoB3937hfklj35sGylbxrThSuH8YTKtoWpc5CS_IX_NWnroPfhJ7AlMSzBg"}, "content": "我是你永远的粉丝,我是你永远的粉丝。", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#CECEEB"], "height": "1", "width": "50"}, "eventTime": "1719115783", "individualChatPriority": 50}
2024-06-23 12:09:44,352 - INFO - [unPackWebcastMemberMessage] [直播间成员加入: 6159] [房间Id:7383530533722000165] | {"common": {"method": "WebcastMemberMessage", "msgId": "7383546068356032009", "roomId": "7383530533722000165", "isShowMsg": true, "foldType": "1", "anchorFoldType": "1", "priorityScore": "42000", "anchorFoldTypeV2": "3"}, "user": {"id": "95798348451", "shortId": "1101153173", "nickName": "知足常乐。一切随缘。", "gender": 1, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/mosaic-legacy_1b43a0001b96593b4eab9.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_8.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "8", "alternativeText": "荣誉等级8级勋章"}}], "FollowInfo": {"followingCount": "513", "followerCount": "363", "followerCountStr": "363", "followingCountStr": "513"}, "displayId": "1101153173", "secUid": "MS4wLjABAAAArEcefBBpQTyuOsa7Y5jmoKs14_oNrnlBfOYJPw4N3ME"}, "memberCount": "6159", "action": "1", "anchorDisplayText": {"key": "live_room_enter_toast", "defaultPatter": "{0:user} 来了{1:string}", "defaultFormat": {"color": "#b8ffffff", "weight": 400}, "piecesList": [{"type": true, "format": {"color": "#8CE7FF", "weight": 400}}]}, "publicAreaCommon": {}}
2024-06-23 12:09:44,352 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息23] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546038253392936", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "253325484759993", "shortId": "34272898897", "nickName": "红姐~", "gender": 2, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_o4IArMQByEyAJA7Q5sQADFEBfLDX46ASFfKkea.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "320", "followerCount": "257", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "34272898897", "secUid": "MS4wLjABAAAAzOD-nCmqunzPouneu-Y9sKzTn3y5_4hwsuAwC8bWVj4"}, "content": "活的 执行有效4件套  𒐫𒐫𒐫𒐫𒐫𒐫𒐫 𒐫𒐫𒐫 𒐫𒐫𒐫𒐫𒐫𒐫𒐫焊", "giftImage": {"urlListList": ["\nQhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#D6D6D6"], "width": "50"}, "eventTime": "1719115783", "individualChatPriority": 50}
2024-06-23 12:09:44,352 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息24] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546025653523519", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "3525476209657995", "shortId": "64265779456", "nickName": "再回头推荐好物", "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_o0BAhFDSFA7UcKwJA94TACfAK1OEIDAfgmCYOE.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "5", "followerCount": "407", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "64265779456", "secUid": "MS4wLjABAAAAIj1xn7XsItlEIyd8OfKpX53-sYh5s-ICYQjtzcKNOvqmc7Sxa1VnStp2y6kRKcNb"}, "content": "交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友", "giftImage": {"urlListList": ["\nVhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_watch.png~tplv-obj.image*\u0007#A37C96"], "width": "30", "avgColor": "\n\u00018\u0012\u00011"}, "eventTime": "1719115783", "individualChatPriority": 30}
2024-06-23 12:09:44,353 - INFO - [unPackWebcastMemberMessage] [直播间成员加入: 6135] [房间Id:7383530533722000165] | {"common": {"method": "WebcastMemberMessage", "msgId": "7383546068309299493", "roomId": "7383530533722000165", "isShowMsg": true, "foldType": "1", "anchorFoldType": "1", "priorityScore": "42000", "anchorFoldTypeV2": "3"}, "user": {"id": "101660894579", "shortId": "1157307598", "nickName": "美丽人生", "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_b8dd9b2f109247b78ae2186160de9b46.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_11.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "11", "alternativeText": "荣誉等级11级勋章"}}], "FollowInfo": {"followingCount": "1895", "followerCount": "1852", "followerCountStr": "1852", "followingCountStr": "1895"}, "displayId": "1157307598", "secUid": "MS4wLjABAAAAJ2CXcj7mwxA1jyPYiJ05ZE913HyDIziiK5q4CW2HCUs"}, "memberCount": "6135", "action": "1", "anchorDisplayText": {"key": "live_room_enter_toast", "defaultPatter": "{0:user} 来了{1:string}", "defaultFormat": {"color": "#b8ffffff", "weight": 400}, "piecesList": [{"type": true, "format": {"color": "#8CE7FF", "weight": 400}}]}, "publicAreaCommon": {}}
2024-06-23 12:09:44,353 - INFO - [unPackWebcastGiftMessage] [直播间礼物消息2:2] [房间Id:7383530533722000165] {"common": {"method": "WebcastGiftMessage", "msgId": "7383546035584816143", "roomId": "7383530533722000165", "createTime": "1719115784", "isShowMsg": true, "describe": "芷晴优选好物:送给主播 1个人气票", "priorityScore": "31000"}, "giftId": "3992", "groupCount": "1", "repeatCount": "1", "comboCount": "1", "user": {"id": "80596436786", "shortId": "170954018", "nickName": "芷晴优选好物", "gender": 2, "Level": 1, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oEszRUJ2AAAGAeq1gEfYEhCzCN99qI8hAACAnI.jpeg?from=3067671334", "https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oEszRUJ2AAAGAeq1gEfYEhCzCN99qI8hAACAnI.jpeg?from=3067671334", "https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oEszRUJ2AAAGAeq1gEfYEhCzCN99qI8hAACAnI.jpeg?from=3067671334"], "uri": "100x100/aweme-avatar/tos-cn-i-0813c001_oEszRUJ2AAAGAeq1gEfYEhCzCN99qI8hAACAnI"}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_11.png~tplv-obj.image", "http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_11.png~tplv-obj.image"], "uri": "webcast/new_user_grade_level_v1_11.png", "height": "16", "width": "32", "imageType": 1, "content": {"level": "11", "alternativeText": "荣誉等级11级勋章"}}, {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_1.png~tplv-obj.image", "http://p11-webcast.douyinpic.com/img/webcast/fansclub_level_v6_1.png~tplv-obj.image"], "uri": "webcast/fansclub_level_v6_1.png", "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "1", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "413", "followerCount": "453", "followerCountStr": "453", "followingCountStr": "413"}, "displayId": "170954018", "secUid": "MS4wLjABAAAAvAXioUhUNP3gSARX9iiisNOyEokk9t8LvX_7d5IzL_g"}, "repeatEnd": 1, "groupId": "1719115781", "gift": {"image": {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/e9b7db267d0501b8963d8000c091e123.png~tplv-obj.png", "http://p11-webcast.douyinpic.com/img/webcast/e9b7db267d0501b8963d8000c091e123.png~tplv-obj.png"], "uri": "webcast/e9b7db267d0501b8963d8000c091e123.png", "avgColor": "#374C52"}, "describe": "送出人气票", "id": "3992", "forLinkmic": true, "combo": true, "type": 1, "diamondCount": 1, "isDisplayedOnPanel": true, "giftLabelIcon": {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/6218e1b5a8c9b0d1d34bf9d1f2230a73.png~tplv-obj.png", "http://p11-webcast.douyinpic.com/img/webcast/6218e1b5a8c9b0d1d34bf9d1f2230a73.png~tplv-obj.png"], "uri": "webcast/6218e1b5a8c9b0d1d34bf9d1f2230a73.png", "avgColor": "#8F8F8F"}, "name": "人气票", "icon": {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/e9b7db267d0501b8963d8000c091e123.png~tplv-obj.png", "http://p11-webcast.douyinpic.com/img/webcast/e9b7db267d0501b8963d8000c091e123.png~tplv-obj.png"], "uri": "webcast/e9b7db267d0501b8963d8000c091e123.png", "avgColor": "#F1FFEB"}}, "sendType": "4", "publicAreaCommon": {"userLabel": {"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/userlabel_new_send_gift.png~tplv-obj.image", "http://p3-webcast.douyinpic.com/img/webcast/userlabel_new_send_gift.png~tplv-obj.image"], "uri": "webcast/userlabel_new_send_gift.png", "avgColor": "#E6FADC"}}, "trayDisplayText": {"key": "webcast_aweme_tray_message_to_anchor", "defaultPatter": "送{0}", "defaultFormat": {"color": "#B3FFFFFF", "weight": 400, "useRemoteClor": true}, "piecesList": [{"type": true, "format": {"color": "#B3FFFFFF", "weight": 400, "useRemoteClor": true}}]}, "totalCount": "1", "clientGiftSource": 1, "sendTime": "1719115780754", "traceId": "daf0b482661df747f96bb24949324b6b"}
2024-06-23 12:09:44,353 - INFO - [unPackWebcastMemberMessage] [直播间成员加入: 6163] [房间Id:7383530533722000165] | {"common": {"method": "WebcastMemberMessage", "msgId": "7383546067780385319", "roomId": "7383530533722000165", "isShowMsg": true, "foldType": "1", "anchorFoldType": "1", "priorityScore": "42000", "anchorFoldTypeV2": "3"}, "user": {"id": "104942221204", "shortId": "1566990373", "nickName": "fang", "gender": 2, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oEId2KeZHPqsA4aAhAGEAABZTmAOERPfBIt27e.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_6.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "6", "alternativeText": "荣誉等级6级勋章"}}], "FollowInfo": {"followingCount": "1165", "followerCount": "806", "followerCountStr": "806", "followingCountStr": "1165"}, "displayId": "1566990373", "secUid": "MS4wLjABAAAA_oWsEagR_NNUOemWXfJfV4HlJRYypwJIy4LNg8dgewE"}, "memberCount": "6163", "action": "1", "anchorDisplayText": {"key": "live_room_enter_toast", "defaultPatter": "{0:user} 来了{1:string}", "defaultFormat": {"color": "#b8ffffff", "weight": 400}, "piecesList": [{"type": true, "format": {"color": "#8CE7FF", "weight": 400}}]}, "publicAreaCommon": {}}
2024-06-23 12:09:44,353 - INFO - [unPackWebcastRoomUserSeqMessage] [] [房间Id:7383530533722000165] | {"common": {"method": "WebcastRoomUserSeqMessage", "msgId": "7383546066711823653", "roomId": "7383530533722000165", "createTime": "1719115783253"}, "ranksList": [{"user": {"id": "4493027451086906", "nickName": "农村哥117", "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oIgPIIAmDAzgqbIiDWtZ1gA7AwBBBBi2PAEzx.jpeg?from=3067671334", "https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oIgPIIAmDAzgqbIiDWtZ1gA7AwBBBBi2PAEzx.jpeg?from=3067671334", "https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oIgPIIAmDAzgqbIiDWtZ1gA7AwBBBBi2PAEzx.jpeg?from=3067671334"], "uri": "100x100/aweme-avatar/tos-cn-i-0813_oIgPIIAmDAzgqbIiDWtZ1gA7AwBBBBi2PAEzx"}, "FollowInfo": {}, "idStr": "4493027451086906"}, "rank": "1"}, {"user": {"id": "2572503244090669", "nickName": "阿芳…….晚上7.30首播各位老铁", "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o4IlQABA73ZpABDMBFCOfDCuMfwBoEAAEQd9Ee.jpeg?from=3067671334", "https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o4IlQABA73ZpABDMBFCOfDCuMfwBoEAAEQd9Ee.jpeg?from=3067671334", "https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o4IlQABA73ZpABDMBFCOfDCuMfwBoEAAEQd9Ee.jpeg?from=3067671334"], "uri": "100x100/aweme-avatar/tos-cn-i-0813c001_o4IlQABA73ZpABDMBFCOfDCuMfwBoEAAEQd9Ee"}, "FollowInfo": {}, "idStr": "2572503244090669"}, "rank": "2"}, {"user": {"id": "4261331554276836", "nickName": "老朱助农", "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o8D9ePI0BDAOAHnTCgbzeaACArEyvAZ2AM9kyA.jpeg?from=3067671334", "https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o8D9ePI0BDAOAHnTCgbzeaACArEyvAZ2AM9kyA.jpeg?from=3067671334", "https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o8D9ePI0BDAOAHnTCgbzeaACArEyvAZ2AM9kyA.jpeg?from=3067671334"], "uri": "100x100/aweme-avatar/tos-cn-i-0813c001_o8D9ePI0BDAOAHnTCgbzeaACArEyvAZ2AM9kyA"}, "FollowInfo": {}, "idStr": "4261331554276836"}, "rank": "3"}], "total": "6135", "totalUser": "177728", "totalUserStr": "10万+", "totalStr": "6135", "onlineUserForAnchor": "6135", "totalPvForAnchor": "17.8万"}
2024-06-23 12:09:45,093 - INFO - [sendAck] [🌟发送Ack] [房间Id:7383530533722000165] ====> 房间标题【首播破万,快来看看】
2024-06-23 12:09:45,093 - INFO - [onMessage] [待解析方法WebcastRoomStatsMessage等待解析~] [房间Id:7383530533722000165]
2024-06-23 12:09:45,094 - INFO - [sendAck] [🌟发送Ack] [房间Id:7383530533722000165] ====> 房间标题【首播破万,快来看看】
2024-06-23 12:09:45,095 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息25] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546030786909194", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31059"}, "user": {"id": "105886681690", "shortId": "2329065702", "nickName": "搁浅的鲸鱼", "gender": 2, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_ogANefeqA0T7IzAGIS7BhjAMAXhBQMRaAAEhEp.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_1.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "1", "alternativeText": "荣誉等级1级勋章"}}], "FollowInfo": {"followingCount": "348", "followerCount": "267", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "yzhxn121380", "secUid": "MS4wLjABAAAANts4URJFJci5qGdbSwtlBV0F5sw6uTKZVpT09MEXXFc"}, "content": "!111", "giftImage": {"urlListList": ["\nRhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_watch.png~tplv-obj.image*\u0007#E0BCBC"], "width": "50"}, "eventTime": "1719115783", "individualChatPriority": 50}
2024-06-23 12:09:45,095 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息26] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383545831992857651", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31006"}, "user": {"id": "88322590908", "shortId": "3775946502", "nickName": "大王巡山", "gender": 1, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oUQ7faMAGECXGh0gDBI8q4FDRAAEwAfsEbBALe.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_23.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "23", "alternativeText": "荣誉等级23级勋章"}}, {"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/fansclub_level_v6_10.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "10", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "162", "followerCount": "13641", "followStatus": "2", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "kankan91172", "secUid": "MS4wLjABAAAAooeo0CtQ15VEdMOyuVzF3XRL61PJ49eMO1xsAL2YMx8"}, "content": "主播优秀", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#CCB1A3"], "width": "50"}, "eventTime": "1719115783", "individualChatPriority": 80}
2024-06-23 12:09:45,096 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息27] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546037996114954", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31007"}, "user": {"id": "3068077968730048", "shortId": "94905871250", "nickName": "小爆🔥", "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_ocMAEBuobEsQ3AL7lBJgG5qAA1BAAmeGfueGIE.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "437", "followerCount": "575", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "94905871250", "secUid": "MS4wLjABAAAAwo-0lC0qM0N2G0R3B2_UPRiFx6KAlB__Vy8uuroY7EsmtMWFuPcX_fnjRKZL1mGL"}, "content": "交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友 鞠躬  鞠躬  鞠躬", "giftImage": {"urlListList": ["\nQhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#EBEBFF"], "width": "30", "avgColor": "\n\u00018\u0012\u00011"}, "eventTime": "1719115783", "individualChatPriority": 30}
2024-06-23 12:09:45,096 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息28] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546040391701514", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "1638695217928638", "shortId": "88575615214", "nickName": "徽姑娘2《首播筹备中》", "gender": 2, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_owAD6fVTIY6BE7IEejsnbBa707A8AAfAAFyMQr.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_12.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "12", "alternativeText": "荣誉等级12级勋章"}}, {"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/fansclub_level_v6_4.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "4", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "122", "followerCount": "5688", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "88575615214", "secUid": "MS4wLjABAAAAS5eQoPa3gtNKbZJ8kKFnUoaZjT2xSRM_IJEe5V7j6MAJXDPhqQX7DA736kQUc4Ah"}, "content": "欢迎:‎如鱼得水 💕💕", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#FFFFFF"], "width": "50"}, "eventTime": "1719115783", "individualChatPriority": 50}
2024-06-23 12:09:45,097 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息29] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546032780432420", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31094"}, "user": {"id": "2559272775845246", "shortId": "3553848915", "nickName": "顺其自然", "gender": 1, "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_c4a63eb53c913ec07888b64be576ac65.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_15.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "15", "alternativeText": "荣誉等级15级勋章"}}, {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_10.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "10", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "6744", "followerCount": "20501", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "lidebing9706", "secUid": "MS4wLjABAAAAi7YoS4wPP2E5RGlIQAiL0t8kFjz4L9gfJ4MSpgk-vkgfRZEZ0O0fl0r134rPFLKY"}, "content": "交朋友,交朋友,交朋友,交朋友,交朋友,交朋友,交朋友,交朋友,交朋友,交朋友,交朋友[比心][比心][比心]", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#A37C7C"], "width": "50"}, "eventTime": "1719115784", "individualChatPriority": 80}
2024-06-23 12:09:45,097 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息30] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546036382192651", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31088"}, "user": {"id": "728318427008889", "shortId": "68692908238", "nickName": "越吊越有138.9882", "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oEgt7yL3MEEABABXkE2LYBcIIeGAf1AHbAeQ4K.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "156", "followerCount": "174", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "68692908238", "secUid": "MS4wLjABAAAAZzHExVlTMAaAkItdILb0e-cVOuFtjMIC7bqL0npwgR8"}, "content": "诚信交友诚信交友诚信交友诚信交友诚信交友诚信交友诚信交友诚信交友诚信交友 爱心  爱心  爱心  爱", "giftImage": {"urlListList": ["\nRhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#DCDCFA"], "width": "50"}, "eventTime": "1719115783", "individualChatPriority": 50}
2024-06-23 12:09:45,097 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息31] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546025183990838", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "743734694117384", "shortId": "87302188518", "nickName": "颜颜妈⁴¹³", "gender": 2, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oIBmzKIAa6AFQEewCR7qurfRAEDeBEAQSAhMzv.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_27.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "27", "alternativeText": "荣誉等级27级勋章"}}, {"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/fansclub_level_v6_5.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "5", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "180", "followerCount": "14884", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "1413181687878GH", "secUid": "MS4wLjABAAAAJsUWpcQIPKPFuV1xgQd6U_9p4ipZDyLALZFTD_QVy1E"}, "content": "恭迎‎用户7405723370305", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#BCBCE0"], "width": "50"}, "eventTime": "1719115783", "individualChatPriority": 80}
2024-06-23 12:09:45,097 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息32] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546041922229302", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31028"}, "user": {"id": "67177915620", "shortId": "276980737", "nickName": "西柚妈妈", "gender": 2, "Level": 1, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oABgmAITcAnAgfAKEoAAC14qeC8w9KZDQAsWbA.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_2.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "2", "alternativeText": "荣誉等级2级勋章"}}], "FollowInfo": {"followingCount": "1103", "followerCount": "1105", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "276980737", "secUid": "MS4wLjABAAAABTssBQd1spkjZtUtwd0OrXTwVhlOATJbEsr0nQU-dS4"}, "content": "主播真会玩儿,交朋[强壮][强壮][强壮]友,活的有xiao来", "giftImage": {"urlListList": ["\nQhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#FADCDC"], "width": "50"}, "eventTime": "1719115784", "individualChatPriority": 50}
2024-06-23 12:09:45,098 - INFO - [onMessage] [待解析方法WebcastRanklistHourEntranceMessage等待解析~] [房间Id:7383530533722000165]
2024-06-23 12:09:45,098 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息33] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546040945005587", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31003"}, "user": {"id": "104219519366", "shortId": "2211262116", "nickName": "宝鎶", "gender": 1, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_dcfccd66b1dce8c827a1edc87229be0a.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_27.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "27", "alternativeText": "荣誉等级27级勋章"}}, {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_5.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "5", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "705", "followerCount": "8282", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "2211262116", "secUid": "MS4wLjABAAAAbbTCjLcf8Dx1Kd7Ibub6UTLJyMxOYnX9AKheqFTj4tE"}, "content": "交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友", "giftImage": {"urlListList": ["\nVhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#CCA3BE"], "height": "2", "width": "30", "avgColor": "\n\u00018\u0012\u00011"}, "eventTime": "1719115784", "individualChatPriority": 30}
2024-06-23 12:09:45,098 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息34] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546021317219337", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "59333452382", "shortId": "189979479", "nickName": "花开花落@", "gender": 2, "Level": 1, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_aad82073436e4f85914e4c884dc9330d.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_5.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "5", "alternativeText": "荣誉等级5级勋章"}}], "FollowInfo": {"followingCount": "2664", "followerCount": "2471", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "189979479", "secUid": "MS4wLjABAAAA-89Y_HuOQWbWUgC2Qn7ddM7T7q_RgZbRSDgv9I24BxM"}, "content": "手拉手   手拉手   交朋友", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#BCBCE0"], "width": "50"}, "eventTime": "1719115784", "individualChatPriority": 50}
2024-06-23 12:09:45,098 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息35] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546035426268198", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31032"}, "user": {"id": "70011381464", "shortId": "1061262931", "nickName": "乐宝", "gender": 2, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oM4RAhBrgyIIgA2ABIPAywKjgnPoEA1iPiZKl.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_6.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "6", "alternativeText": "荣誉等级6级勋章"}}], "FollowInfo": {"followingCount": "1094", "followerCount": "615", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "LE66601", "secUid": "MS4wLjABAAAAijT55s83lRavDMPujdOcPwk8WVq3k80p5PflrZw1c64"}, "content": "互动   必回  互动   必回   互动   必回  互动   必回[抱拳][抱拳][抱拳]互动   必回   互", "giftImage": {"width": "50"}, "eventTime": "1719115784", "individualChatPriority": 50}
2024-06-23 12:09:45,098 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息36] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546047463347252", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "2960357266036748", "shortId": "78845627618", "nickName": "123121", "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oAAAAANzNivAAe6IZ2XfCirKBBw9a9E7Ty2t6g.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "91", "followerCount": "249", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "78845627618", "secUid": "MS4wLjABAAAAx68qDHCixDGwdjREsKIMCe0s_s_MU_2nIgTbm-ujAGg5jPPB2yOG-Lgmiq9y58GH"}, "content": "很高兴认识大家,很高兴认识大家,很高兴认识大家,很高兴认识大家,很高兴认识大家,很高兴认识大家,很高", "giftImage": {"urlListList": ["\nQhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#7A6053"], "width": "50"}, "eventTime": "1719115784", "individualChatPriority": 50}
获取到的直播数据是:点赞:0, 评论: 36, 礼物价值: 2
推送直播数据出错:如果你不用将直播数据推送到你们的服务器上,可以忽略此提示
2024-06-23 12:09:45,578 - INFO - [sendAck] [🌟发送Ack] [房间Id:7383530533722000165] ====> 房间标题【首播破万,快来看看】
2024-06-23 12:09:45,578 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息37] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546046268544034", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31009"}, "user": {"id": "1678292486458288", "shortId": "46745530690", "nickName": "恺恺🚉", "gender": 2, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_586907c7b31af3554915910a1ab9d2ea.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "1516", "followerCount": "1497", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "46745530690", "secUid": "MS4wLjABAAAAHsV4RRYhxF3yHLX3rIGZmjDQ8nbrkgnOhozOMDzZ0lBUxkBMXxuCyuxZiHZ1oTiu"}, "content": "有效✨交友✨ 有效✨交友✨ 有效✨交友✨ 有效✨交友✨ 有效✨交友✨ 有效✨交友✨ 有效✨交友✨", "giftImage": {"width": "50"}, "eventTime": "1719115784", "individualChatPriority": 50}
2024-06-23 12:09:45,579 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息38] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546044283884585", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "3556241156870478", "shortId": "33897335509", "nickName": "越越666", "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_5b34b3462a104fca5a005211e9553fea.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "465", "followerCount": "521", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "33897335509", "secUid": "MS4wLjABAAAANzs5RXiNrMt_BvcW-yMvhM3r9x2oDZ0I8ZgMdx9sqOF9jhOqbjagKYJ0JdiM66Fa"}, "content": "主播真优秀 活跃宝宝 比心 活跃宝宝 比心 活跃宝宝 比心 活跃宝宝 比心 活跃宝宝 比心 活跃宝宝", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#C8E0BC"], "width": "50"}, "eventTime": "1719115784", "individualChatPriority": 50}
2024-06-23 12:09:45,579 - INFO - [unPackWebcastMemberMessage] [直播间成员加入: 6129] [房间Id:7383530533722000165] | {"common": {"method": "WebcastMemberMessage", "msgId": "7383546072155557154", "roomId": "7383530533722000165", "isShowMsg": true, "foldType": "1", "anchorFoldType": "1", "priorityScore": "42000", "anchorFoldTypeV2": "3"}, "user": {"id": "109558915141", "shortId": "2837553544", "nickName": "凤儿", "gender": 2, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oUAOAtTZzADyfAEAsOhCwIEN5CNI6TGgNkesRA.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_9.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "9", "alternativeText": "荣誉等级9级勋章"}}], "FollowInfo": {"followingCount": "3919", "followerCount": "151", "followerCountStr": "151", "followingCountStr": "3919"}, "displayId": "15100005810Yan", "secUid": "MS4wLjABAAAAI70BVSXUAqgY4UvRIIzhOpmZp60-vHeR3FpA1mPeMlo"}, "memberCount": "6129", "action": "1", "anchorDisplayText": {"key": "live_room_enter_toast", "defaultPatter": "{0:user} 来了{1:string}", "defaultFormat": {"color": "#b8ffffff", "weight": 400}, "piecesList": [{"type": true, "format": {"color": "#8CE7FF", "weight": 400}}]}, "publicAreaCommon": {}}
2024-06-23 12:09:45,579 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息39] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546033497084982", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "2469937294611604", "shortId": "94016618081", "nickName": "英儿", "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_owlMAjfBDE4BelzAiccdBKELRCbAGijAiAAcIg.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "117", "followerCount": "431", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "94016618081", "secUid": "MS4wLjABAAAA24V-LF9mFvv23zQVxkhpudber7Xq7JgxTqM7R2-uhyOQ9MHqfZFdJH1Ag_angNUu"}, "content": "感谢‎  老朱助农送的小心心  x17[无语][无语][无语]", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#FAF0DC"], "width": "50"}, "eventTime": "1719115784", "individualChatPriority": 50}
2024-06-23 12:09:45,580 - INFO - [unPackWebcastLikeMessage] [直播间点赞统计202651] [房间Id:7383530533722000165] | {"common": {"method": "WebcastLikeMessage", "msgId": "7383546072934846491", "roomId": "7383530533722000165", "isShowMsg": true, "anchorFoldType": "1", "anchorFoldTypeV2": "1"}, "count": "7", "total": "202651", "user": {"id": "1472959857566699", "shortId": "2796158401", "nickName": "周姐好物", "gender": 2, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_okDzCoIAiTii8BbAQgFENOwAecOMBAA3AfcIjC.jpeg?from=3067671334", "https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_okDzCoIAiTii8BbAQgFENOwAecOMBAA3AfcIjC.jpeg?from=3067671334", "https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_okDzCoIAiTii8BbAQgFENOwAecOMBAA3AfcIjC.jpeg?from=3067671334"], "uri": "100x100/aweme-avatar/tos-cn-i-0813c001_okDzCoIAiTii8BbAQgFENOwAecOMBAA3AfcIjC"}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_21.png~tplv-obj.image", "http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_21.png~tplv-obj.image"], "uri": "webcast/new_user_grade_level_v1_21.png", "height": "16", "width": "32", "imageType": 1, "content": {"level": "21", "alternativeText": "荣誉等级21级勋章"}}, {"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/fansclub_level_v6_3.png~tplv-obj.image", "http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_3.png~tplv-obj.image"], "uri": "webcast/fansclub_level_v6_3.png", "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "3", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "3585", "followerCount": "3319", "followStatus": "1", "followerCountStr": "3319", "followingCountStr": "3585"}, "displayId": "lvseshenghuo90", "secUid": "MS4wLjABAAAA4QbS-8ydEkuZcjvUVTRTLhPy3hsl350i2v3yf5fJJaX3CbWsGXRseqhybTdC_Zj1"}, "displayControlInfo": {"showIcons": true}}
2024-06-23 12:09:45,580 - INFO - [unPackWebcastMemberMessage] [直播间成员加入: 6129] [房间Id:7383530533722000165] | {"common": {"method": "WebcastMemberMessage", "msgId": "7383546071765802018", "roomId": "7383530533722000165", "isShowMsg": true, "foldType": "1", "anchorFoldType": "1", "priorityScore": "42000", "anchorFoldTypeV2": "3"}, "user": {"id": "2841555502630494", "shortId": "36453368212", "nickName": "猪猪吖", "gender": 2, "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-avt-0015_4c50e8372b06431af775c265f49eab6d.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_19.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "19", "alternativeText": "荣誉等级19级勋章"}}], "FollowInfo": {"followingCount": "38", "followerCount": "45233", "followerCountStr": "4.5万", "followingCountStr": "38"}, "displayId": "36453368212", "secUid": "MS4wLjABAAAArhf5MIANMYm92rSCbEmIJha8eZklUsMhFOhDNeFBnmsC7Ds41ad0sk1hCI9Hh7uE"}, "memberCount": "6129", "action": "1", "anchorDisplayText": {"key": "live_room_enter_toast", "defaultPatter": "{0:user} 来了{1:string}", "defaultFormat": {"color": "#b8ffffff", "weight": 400}, "piecesList": [{"type": true, "format": {"color": "#8CE7FF", "weight": 400}}]}, "publicAreaCommon": {}}
2024-06-23 12:09:45,580 - INFO - [unPackWebcastMemberMessage] [直播间成员加入: 6135] [房间Id:7383530533722000165] | {"common": {"method": "WebcastMemberMessage", "msgId": "7383546072696427019", "roomId": "7383530533722000165", "isShowMsg": true, "foldType": "1", "anchorFoldType": "1", "priorityScore": "42000", "anchorFoldTypeV2": "3"}, "user": {"id": "104650341008", "shortId": "45687993171", "nickName": "我是惠子呀", "gender": 2, "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oIGdUnBiIACheGAAKA3DWexAEEA9gA8nlFCKZb.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "102", "followerCount": "266", "followStatus": "1", "followerCountStr": "266", "followingCountStr": "102"}, "displayId": "45687993171", "secUid": "MS4wLjABAAAAjSw0EsGoE9Ki_QpxGBA8E6zPx0kJIzVgZ3enHS-nRtc"}, "memberCount": "6135", "action": "1", "anchorDisplayText": {"key": "live_room_enter_toast", "defaultPatter": "{0:user} 来了{1:string}", "defaultFormat": {"color": "#b8ffffff", "weight": 400}, "piecesList": [{"type": true, "format": {"color": "#8CE7FF", "weight": 400}}]}, "publicAreaCommon": {}, "anchorEnterTipType": "3"}
2024-06-23 12:09:45,580 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息40] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546041524229132", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "104628982852", "shortId": "1506021518", "nickName": "~磊", "gender": 1, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oIgAQDgnggACqMj8bAm9AAAeEEGexBI5oXdAQD.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_18.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "18", "alternativeText": "荣誉等级18级勋章"}}], "FollowInfo": {"followingCount": "2667", "followerCount": "2566", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "1506021518", "secUid": "MS4wLjABAAAA0yn1YetOeKHKFstwUspWlOPF8Nw0nljW_VTDzuyc-Zg"}, "content": "感谢‎  老朱助农送的小心心  x17", "giftImage": {"urlListList": ["\nVhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#F0F0F0"], "width": "50"}, "eventTime": "1719115784", "individualChatPriority": 50}
2024-06-23 12:09:45,580 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息41] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546055495636008", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31065"}, "user": {"id": "104984731609", "shortId": "2038822169", "nickName": "喜姐1[首播]", "gender": 2, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_ogo0Q8viA6eYAIEEcCizA9BBggCkAAO6fnOAuw.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_16.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "16", "alternativeText": "荣誉等级16级勋章"}}, {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_1.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "1", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "136", "followerCount": "345", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "2038822169", "secUid": "MS4wLjABAAAAtRequt5rp8zhZrj09qQQ4DZw1yEJBKxSX4SFQVoYAOo"}, "content": "欢迎:‎ 欣妍瑾短剧 💕💕", "giftImage": {"urlListList": ["\nVhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_send_gift.png~tplv-obj.image*\u0007#E6FADC"], "height": "1", "width": "50"}, "eventTime": "1719115784", "individualChatPriority": 50}
2024-06-23 12:09:45,581 - INFO - [unPackWebcastLikeMessage] [直播间点赞统计202672] [房间Id:7383530533722000165] | {"common": {"method": "WebcastLikeMessage", "msgId": "7383546074411102772", "roomId": "7383530533722000165", "isShowMsg": true, "anchorFoldType": "1", "anchorFoldTypeV2": "1"}, "count": "10", "total": "202672", "user": {"id": "659358557166797", "shortId": "3724540777", "nickName": "邸姐旅途", "gender": 2, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_ocf8ClABbACbAfn0APsvjEIg489RwbyAHNDEAD.jpeg?from=3067671334", "https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_ocf8ClABbACbAfn0APsvjEIg489RwbyAHNDEAD.jpeg?from=3067671334", "https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_ocf8ClABbACbAfn0APsvjEIg489RwbyAHNDEAD.jpeg?from=3067671334"], "uri": "100x100/aweme-avatar/tos-cn-i-0813_ocf8ClABbACbAfn0APsvjEIg489RwbyAHNDEAD"}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_22.png~tplv-obj.image", "http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_22.png~tplv-obj.image"], "uri": "webcast/new_user_grade_level_v1_22.png", "height": "16", "width": "32", "imageType": 1, "content": {"level": "22", "alternativeText": "荣誉等级22级勋章"}}, {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_11.png~tplv-obj.image", "http://p11-webcast.douyinpic.com/img/webcast/fansclub_level_v6_11.png~tplv-obj.image"], "uri": "webcast/fansclub_level_v6_11.png", "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "11", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "51", "followerCount": "7387", "followStatus": "1", "followerCountStr": "7387", "followingCountStr": "51"}, "displayId": "dijiederensh", "secUid": "MS4wLjABAAAAr_lp0W7R5LNX_doe2ud_-3L1oOo_KEvcvzATZdOyFpI"}, "displayControlInfo": {"showIcons": true}}
2024-06-23 12:09:45,581 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息42] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546049460032564", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "3501300463698663", "shortId": "50998258246", "nickName": "小小艺", "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oQD5AEnAhQexFFXBOaUfDlYEPKACE7ANHMIfAB.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_3.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "3", "alternativeText": "荣誉等级3级勋章"}}], "FollowInfo": {"followingCount": "318", "followerCount": "447", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "50998258246", "secUid": "MS4wLjABAAAAMxky0O_tjsHh5HiFeTFkL8OJCa2JueXv2JixtadPug3phI6xq6KszMXUOer4PmqO"}, "content": "新人报道 请多关照 新人报道 请多关照 新人报道 请多关照 求关注 求关注[熊吉][熊吉][熊吉]", "giftImage": {"urlListList": ["\nVhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_send_gift.png~tplv-obj.image*\u0007#D8EBCE"], "width": "50"}, "eventTime": "1719115784", "individualChatPriority": 50}
2024-06-23 12:09:45,581 - INFO - [unPackWebcastLikeMessage] [直播间点赞统计202687] [房间Id:7383530533722000165] | {"common": {"method": "WebcastLikeMessage", "msgId": "7383546073858895909", "roomId": "7383530533722000165", "isShowMsg": true, "anchorFoldType": "1", "anchorFoldTypeV2": "1"}, "count": "8", "total": "202687", "user": {"id": "593327427425757", "shortId": "2317441201", "nickName": "拾忆 ( ^3^ )", "gender": 2, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_b190638a71474f8f851eca86fd33071c.jpeg?from=3067671334", "https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_b190638a71474f8f851eca86fd33071c.jpeg?from=3067671334", "https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_b190638a71474f8f851eca86fd33071c.jpeg?from=3067671334"], "uri": "100x100/aweme-avatar/tos-cn-i-0813_b190638a71474f8f851eca86fd33071c"}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_14.png~tplv-obj.image", "http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_14.png~tplv-obj.image"], "uri": "webcast/new_user_grade_level_v1_14.png", "height": "16", "width": "32", "imageType": 1, "content": {"level": "14", "alternativeText": "荣誉等级14级勋章"}}, {"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/fansclub_level_v6_1.png~tplv-obj.image", "http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_1.png~tplv-obj.image"], "uri": "webcast/fansclub_level_v6_1.png", "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "1", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "646", "followerCount": "213", "followStatus": "1", "followerCountStr": "213", "followingCountStr": "646"}, "displayId": "an353155678", "secUid": "MS4wLjABAAAAQ7Ohg8wONClNfB8eylaQQy-eQvA-iBSXn_HM6kfPEws"}, "displayControlInfo": {"showIcons": true}}
2024-06-23 12:09:46,199 - INFO - [sendAck] [🌟发送Ack] [房间Id:7383530533722000165] ====> 房间标题【首播破万,快来看看】
2024-06-23 12:09:46,200 - INFO - [onMessage] [待解析方法WebcastRoomStatsMessage等待解析~] [房间Id:7383530533722000165]
2024-06-23 12:09:46,200 - INFO - [onMessage] [待解析方法WebcastRoomStreamAdaptationMessage等待解析~] [房间Id:7383530533722000165]
2024-06-23 12:09:46,201 - INFO - [sendAck] [🌟发送Ack] [房间Id:7383530533722000165] ====> 房间标题【首播破万,快来看看】
2024-06-23 12:09:46,202 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息43] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546051325613082", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31011"}, "user": {"id": "4440263583340634", "shortId": "72839770450", "nickName": "似雾总会散", "gender": 2, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oc9zOABFEACiABwAfAAgI8AidSyv1kWKVzceCR.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_2.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "2", "alternativeText": "荣誉等级2级勋章"}}], "FollowInfo": {"followingCount": "251", "followerCount": "239", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "72839770450", "secUid": "MS4wLjABAAAAoFijUFWQrWGQknLGtYO3_1cWjx3nazRhhzT4swkiXuod__YklCBRyQPzQSS9ADJ6"}, "content": "帅哥美女交朋友  帅哥美女交朋友  帅哥美女交朋友  帅哥美女交朋友  帅哥美女 求抱抱  求抱抱", "giftImage": {"urlListList": ["\nQhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#3D3D3D"], "width": "50"}, "eventTime": "1719115785", "individualChatPriority": 50}
2024-06-23 12:09:46,202 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息44] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546054333109300", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31077"}, "user": {"id": "2065296259558266", "shortId": "56051881531", "nickName": "小太阳⁴¹³", "gender": 2, "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oAsVSLvhAWezAIREiCfzANAzgwNpAAl6NpCAcI.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_31.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "31", "alternativeText": "荣誉等级31级勋章"}}, {"urlListList": ["http://p11-webcast.douyinpic.com/img/webcast/fansclub_level_v6_8.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "8", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "285", "followerCount": "21907", "followStatus": "2", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "1413181687878AI", "secUid": "MS4wLjABAAAA2qKOYkuGWG2rwBAwZ2_oyO-2MYSqBXwPySpNGqBpg9Vrkt3HFWHfL7SGJ1e4gyjz"}, "content": "欢迎:‎ 欣妍瑾短剧 💕💕", "giftImage": {"urlListList": ["\nVhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#FFFFFF"], "width": "50"}, "eventTime": "1719115784", "individualChatPriority": 80}
2024-06-23 12:09:46,203 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息45] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546043524699190", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31007"}, "user": {"id": "1537557421365881", "shortId": "22584283817", "nickName": "好好爱自己", "gender": 2, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_ogeAqXE7EMMMz2B9fAAhAf3Zh8M9E2BQ05AA3A.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "130", "followerCount": "273", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "22584283817", "secUid": "MS4wLjABAAAAFYNAnc3m4tA6bg27_c81IjsO5XRuZgfjyuc-PGNdoLeLpe8vgmWYqAUjcmMrpZ6X"}, "content": "真城交友!互相帮助!真诚交友!互相帮助", "giftImage": {"urlListList": ["\nUhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#EBFBFF"], "width": "50"}, "eventTime": "1719115785", "individualChatPriority": 50}
2024-06-23 12:09:46,203 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息46] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546058649080872", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31009"}, "user": {"id": "63427764894", "shortId": "93436599", "nickName": "简单中哥", "gender": 1, "Level": 1, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oUCOeAzLEARtbAdJiaDONsthA0KfEAz7AIgAdJ.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_11.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "11", "alternativeText": "荣誉等级11级勋章"}}], "FollowInfo": {"followingCount": "681", "followerCount": "2750", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "93436599", "secUid": "MS4wLjABAAAA72XJeWiHAP_MDRSuSizako8PeiU9jr9XyX9qVBZ20Xc"}, "content": "交朋友交朋友的朋友的朋友呀一交朋友交朋友", "giftImage": {"urlListList": ["\nVhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_regular_chat.png~tplv-obj.image*\u0007#7C7CA3"], "width": "50"}, "eventTime": "1719115785", "individualChatPriority": 50}
2024-06-23 12:09:46,203 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息47] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546045868905498", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31024"}, "user": {"id": "3859728798068860", "shortId": "69235796300", "nickName": "♛卡夫卡的熊🐻", "gender": 1, "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o8iNZPgPrgKiyBIAjSKBAAzvAZ1IAJn8E4ypu.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "177", "followerCount": "270", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "69235796300", "secUid": "MS4wLjABAAAAzcdPSGiW60FGZRyzsJPI5dyOnCA11uxEJ0jc0T_z8PwzpQ4187I9-LIwROekuyYf"}, "content": "不错很喜欢不错很喜欢不错很喜欢不错很喜欢不错很喜欢不错很喜欢不错很喜欢不错很喜欢不错很喜欢不错很", "giftImage": {"urlListList": ["\nVhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_regular_watch.png~tplv-obj.image*\u0007#FAE6DC"], "width": "50"}, "eventTime": "1719115785", "individualChatPriority": 50}
2024-06-23 12:09:46,204 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息48] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546028191798322", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31033"}, "user": {"id": "3701393260033988", "shortId": "53205174613", "nickName": "唐唐🍬🍬", "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_okI7QABA7H6uAfGMXLCtenI2e2aBvIAAESxaEF.jpeg?from=3067671334"]}, "FollowInfo": {"followingCount": "92", "followerCount": "152", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "53205174613", "secUid": "MS4wLjABAAAAqUFLDGELiIcX6xDd5N0D_kKOn78UF5zGx16LYKV4wj6s7FUrddrkldpgSwCG6bRk"}, "content": "感谢‎   琴姐送的人气票  x1抱一抱抱一1抱抱一抱抱一抱抱一抱抱一抱[我想静静][我想静静][我想静静]", "giftImage": {"urlListList": ["\nQhttp://p3-webcast.douyinpic.com/img/webcast/userlabel_new_chat.png~tplv-obj.image*\u0007#607A53"], "width": "50"}, "eventTime": "1719115784", "individualChatPriority": 50}
2024-06-23 12:09:46,204 - INFO - [unPackWebcastMemberMessage] [直播间成员加入: 6129] [房间Id:7383530533722000165] | {"common": {"method": "WebcastMemberMessage", "msgId": "7383546076144118053", "roomId": "7383530533722000165", "isShowMsg": true, "foldType": "1", "anchorFoldType": "1", "priorityScore": "42000", "anchorFoldTypeV2": "3"}, "user": {"id": "77069731239", "shortId": "623293936", "nickName": "彩霞小姐姐", "gender": 2, "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_768ed2517bd44a8abe099898717721cd.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_8.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "8", "alternativeText": "荣誉等级8级勋章"}}], "FollowInfo": {"followingCount": "633", "followerCount": "218", "followerCountStr": "218", "followingCountStr": "633"}, "displayId": "623293936", "secUid": "MS4wLjABAAAATSiEflBOLYdB0Sv5V4JVBp3Mq6NBzCyOL4S4s-nRHus"}, "memberCount": "6129", "action": "1", "anchorDisplayText": {"key": "live_room_enter_toast", "defaultPatter": "{0:user} 来了{1:string}", "defaultFormat": {"color": "#b8ffffff", "weight": 400}, "piecesList": [{"type": true, "format": {"color": "#8CE7FF", "weight": 400}}]}, "publicAreaCommon": {}}
2024-06-23 12:09:46,204 - INFO - [unPackWebcastRoomUserSeqMessage] [] [房间Id:7383530533722000165] | {"common": {"method": "WebcastRoomUserSeqMessage", "msgId": "7383546077154738954", "roomId": "7383530533722000165", "createTime": "1719115785644"}, "ranksList": [{"user": {"id": "4493027451086906", "nickName": "农村哥117", "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oIgPIIAmDAzgqbIiDWtZ1gA7AwBBBBi2PAEzx.jpeg?from=3067671334", "https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oIgPIIAmDAzgqbIiDWtZ1gA7AwBBBBi2PAEzx.jpeg?from=3067671334", "https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_oIgPIIAmDAzgqbIiDWtZ1gA7AwBBBBi2PAEzx.jpeg?from=3067671334"], "uri": "100x100/aweme-avatar/tos-cn-i-0813_oIgPIIAmDAzgqbIiDWtZ1gA7AwBBBBi2PAEzx"}, "FollowInfo": {}, "idStr": "4493027451086906"}, "rank": "1"}, {"user": {"id": "2572503244090669", "nickName": "阿芳…….晚上7.30首播各位老铁", "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o4IlQABA73ZpABDMBFCOfDCuMfwBoEAAEQd9Ee.jpeg?from=3067671334", "https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o4IlQABA73ZpABDMBFCOfDCuMfwBoEAAEQd9Ee.jpeg?from=3067671334", "https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o4IlQABA73ZpABDMBFCOfDCuMfwBoEAAEQd9Ee.jpeg?from=3067671334"], "uri": "100x100/aweme-avatar/tos-cn-i-0813c001_o4IlQABA73ZpABDMBFCOfDCuMfwBoEAAEQd9Ee"}, "FollowInfo": {}, "idStr": "2572503244090669"}, "rank": "2"}, {"user": {"id": "4261331554276836", "nickName": "老朱助农", "AvatarThumb": {"urlListList": ["https://p11.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o8D9ePI0BDAOAHnTCgbzeaACArEyvAZ2AM9kyA.jpeg?from=3067671334", "https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o8D9ePI0BDAOAHnTCgbzeaACArEyvAZ2AM9kyA.jpeg?from=3067671334", "https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_o8D9ePI0BDAOAHnTCgbzeaACArEyvAZ2AM9kyA.jpeg?from=3067671334"], "uri": "100x100/aweme-avatar/tos-cn-i-0813c001_o8D9ePI0BDAOAHnTCgbzeaACArEyvAZ2AM9kyA"}, "FollowInfo": {}, "idStr": "4261331554276836"}, "rank": "3"}], "total": "6146", "totalUser": "177527", "totalUserStr": "10万+", "totalStr": "6146", "onlineUserForAnchor": "6146", "totalPvForAnchor": "17.8万"}
2024-06-23 12:09:46,205 - INFO - [unPackWebcastMemberMessage] [直播间成员加入: 6159] [房间Id:7383530533722000165] | {"common": {"method": "WebcastMemberMessage", "msgId": "7383546077276976933", "roomId": "7383530533722000165", "isShowMsg": true, "foldType": "1", "anchorFoldType": "1", "priorityScore": "42000", "anchorFoldTypeV2": "3"}, "user": {"id": "2740161016", "shortId": "3527395845", "nickName": "夏天夏", "gender": 2, "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_de4f64c0b6494f0b83f090bd03d439b8.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_6.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "6", "alternativeText": "荣誉等级6级勋章"}}], "FollowInfo": {"followingCount": "919", "followerCount": "36", "followerCountStr": "36", "followingCountStr": "919"}, "displayId": "AA17502", "secUid": "MS4wLjABAAAAwH4VaYtpy-hDXnwtLBTryYqfDudbGvUyn-X520sF4NI"}, "memberCount": "6159", "action": "1", "anchorDisplayText": {"key": "live_room_enter_toast", "defaultPatter": "{0:user} 来了{1:string}", "defaultFormat": {"color": "#b8ffffff", "weight": 400}, "piecesList": [{"type": true, "format": {"color": "#8CE7FF", "weight": 400}}]}, "publicAreaCommon": {}}
2024-06-23 12:09:46,205 - INFO - [unPackWebcastMemberMessage] [直播间成员加入: 6135] [房间Id:7383530533722000165] | {"common": {"method": "WebcastMemberMessage", "msgId": "7383546077464733194", "roomId": "7383530533722000165", "isShowMsg": true, "foldType": "1", "anchorFoldType": "1", "priorityScore": "42000", "anchorFoldTypeV2": "3"}, "user": {"id": "107914071854", "shortId": "2067340795", "nickName": "文惠", "gender": 2, "AvatarThumb": {"urlListList": ["https://p3.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813_e9a7ca5e8cb14d7d9f8a49a247821204.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_25.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "25", "alternativeText": "荣誉等级25级勋章"}}], "FollowInfo": {"followingCount": "7787", "followerCount": "13595", "followStatus": "1", "followerCountStr": "1.4万", "followingCountStr": "7787"}, "displayId": "2067340795", "secUid": "MS4wLjABAAAAWG4qXbJ_S_7kbhPuNg7_AVJ-eGeoTX1ZRV74g46Pu2Q"}, "memberCount": "6135", "action": "1", "anchorDisplayText": {"key": "live_room_enter_toast", "defaultPatter": "{0:user} 来了{1:string}", "defaultFormat": {"color": "#b8ffffff", "weight": 400}, "piecesList": [{"type": true, "format": {"color": "#8CE7FF", "weight": 400}}]}, "publicAreaCommon": {}}
2024-06-23 12:09:46,205 - INFO - [unPackWebcastChatMessage] [直播间弹幕消息49] [房间Id:7383530533722000165] | {"common": {"method": "WebcastChatMessage", "msgId": "7383546047828448297", "roomId": "7383530533722000165", "isShowMsg": true, "priorityScore": "31000"}, "user": {"id": "3512263026685165", "shortId": "37794895405", "nickName": "阿福首播", "gender": 2, "AvatarThumb": {"urlListList": ["https://p26.douyinpic.com/aweme/100x100/aweme-avatar/tos-cn-i-0813c001_oIA0AbllnADleAOA2iD9vAEH4CNIfnTgSY9QRA.jpeg?from=3067671334"]}, "BadgeImageList": [{"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/new_user_grade_level_v1_6.png~tplv-obj.image"], "height": "16", "width": "32", "imageType": 1, "content": {"level": "6", "alternativeText": "荣誉等级6级勋章"}}, {"urlListList": ["http://p3-webcast.douyinpic.com/img/webcast/fansclub_level_v6_2.png~tplv-obj.image"], "imageType": 7, "content": {"name": "只兔子", "fontColor": "#FFFFFF", "level": "2", "alternativeText": "只兔子粉丝团勋章"}}], "FollowInfo": {"followingCount": "13", "followerCount": "310", "followStatus": "1", "followerCountStr": "0", "followingCountStr": "0"}, "displayId": "37794895405", "secUid": "MS4wLjABAAAAFpZ_SA1_nlR7qVjwJdXQbsg_QSujU1VBlg1Lm9U_ANf1B-rBWtXODLf6ccSPRrSR"}, "content": "交朋友交朋友交朋友交朋友交朋友交朋友交朋友交朋友", "giftImage": {"urlListList": ["\nWhttp://p11-webcast.douyinpic.com/img/webcast/userlabel_new_send_gift.png~tplv-obj.image*\u0007#607A53"], "height": "1", "width": "50"}, "eventTime": "1719115785", "individualChatPriority": 50}
2024-06-23 12:09:46,546 - ERROR - [onError] [webSocket Error事件] [房间Id:7383530533722000165]

uuid记录

taskuuid:对应的是每个方法名称 gameuuid:一场比赛对应的uuid,在某个地方可以修改(页面上或者哪里),测试可以使用页面上的 teamuuid:每个队伍对应的uuid,查询队伍的时候会返回给我 uuid:应援的uuid,是添加应援的时候,返回给我

douyin-live's People

Contributors

akamemoe avatar hliang avatar sjj1024 avatar

Watchers

 avatar

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.