forked from ape-byte/DouyinBarrageGrab
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,26 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<!--配置更改后重启才能生效--> | ||
<appSettings> | ||
|
||
<!--过滤Websocket数据源进程,可用','进行分隔,程序将会监听以下进程的弹幕信息--> | ||
<add key="processFilter" value="直播伴侣,chrome,msedge,douyin"/> | ||
|
||
<!--Websocket监听端口--> | ||
<add key="wsListenPort" value="8888"/> | ||
<!--在控制台输出弹幕--> | ||
<add key="printBarrage" value="true"/> | ||
<!--要在控制台打印的弹幕类型,可以用','隔开 all[全部],1[普通弹幕],2[点赞消息],3[进入直播间],4[关注消息],5[礼物消息],6[统计消息],7[粉丝团消息]--> | ||
<add key="printFilter" value="all"/> | ||
<!--系统代理端口--> | ||
<add key="proxyPort" value="8827"/> | ||
<!--开启内置的域名过滤,设置为false会解包所有https请求,cpu占用很高,建议在无法获取弹幕数据时调整 --> | ||
<add key="filterHostName" value="true"/> | ||
<!--已知的弹幕域名列表 ','分隔 用作过滤规则中,凡是webcast开头的域名程序都会自动列入白名单--> | ||
<add key="hostNameFilter" value=" | ||
webcast3-ws-web-hl.douyin.com, | ||
webcast3-ws-web-lf.douyin.com, | ||
webcast100-ws-web-lq.amemv.com, | ||
frontier-im.douyin.com, | ||
"/> | ||
<!--要进行过滤的房间ID,不填代表监听所有,多项使用','分隔,浏览器进入直播间 F12 控制台输入 'window.localStorage.playRoom' 即可快速看到房间ID(不是地址栏中的那个) --> | ||
<add key="roomIds" value=""/> | ||
</appSettings> | ||
<!--配置更改后重启才能生效--> | ||
<appSettings> | ||
<!--过滤Websocket数据源进程,可用','进行分隔,程序将会监听以下进程的弹幕信息--> | ||
<add key="processFilter" value="直播伴侣,chrome,msedge,douyin" /> | ||
<!--Websocket监听端口--> | ||
<add key="wsListenPort" value="8888" /> | ||
<!--true:监听在0.0.0.0,接受任意Ip连接,false:监听在127.0.0.1,仅接受本机连接--> | ||
<add key="listenAny" value="true" /> | ||
<!--系统代理端口--> | ||
<add key="proxyPort" value="8827" /> | ||
<!--在控制台输出弹幕--> | ||
<add key="printBarrage" value="true" /> | ||
<!--要在控制台打印的弹幕类型,可以用','隔开 all[全部],1[普通弹幕],2[点赞消息],3[进入直播间],4[关注消息],5[礼物消息],6[统计消息],7[粉丝团消息]--> | ||
<add key="printFilter" value="all" /> | ||
<!--是否启用系统代理,若设置为false 则需要在程序手动指定代理地址 --> | ||
<add key="usedProxy" value="true" /> | ||
<!--开启内置的域名过滤,设置为false会解包所有https请求,cpu占用很高,建议在无法获取弹幕数据时调整 --> | ||
<add key="filterHostName" value="true" /> | ||
<!--已知的弹幕域名列表 ','分隔 用作过滤规则中,凡是webcast开头的域名程序都会自动列入白名单--> | ||
<add key="hostNameFilter" value="" /> | ||
<!--要进行过滤的房间ID,不填代表监听所有,多项使用','分隔,浏览器进入直播间 F12 控制台输入 'window.localStorage.playRoom' 即可快速看到房间ID(不是地址栏中的那个) --> | ||
<add key="roomIds" value="" /> | ||
</appSettings> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters