├── .gitattributes ├── .gitignore ├── BarrageGrab ├── App.config ├── AppConfig.json ├── AppRuntime.cs ├── AppSetting.cs ├── Configs │ └── nlog.config ├── FodyWeavers.xml ├── Forms │ ├── FormView.Designer.cs │ ├── FormView.cs │ ├── FormView.resx │ ├── Models │ │ └── RoomCacheItem.cs │ ├── RoomDetail.Designer.cs │ ├── RoomDetail.cs │ └── RoomDetail.resx ├── JsEngine.cs ├── Logger.cs ├── Modles │ ├── BusinessExecption.cs │ ├── JsonEntity │ │ ├── BarrageMessages.cs │ │ └── Command.cs │ ├── ProtoEntity │ │ ├── Messages.cs │ │ └── Wss.cs │ ├── RoomInfo.cs │ └── WebCastGift.cs ├── ObjectExtension.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ └── app.manifest ├── Proxy │ ├── ISystemProxy.cs │ ├── ProxyEventArgs │ │ ├── HttpResponseEventArgs.cs │ │ ├── SystemProxyChangeEventArgs.cs │ │ └── WsMessageEventArgs.cs │ ├── SystemProxy.cs │ └── TitaniumProxy.cs ├── Scripts │ ├── engine │ │ └── comPortFilter.js │ └── inject │ │ └── livePage.js ├── Server │ ├── ComPortServer.cs │ ├── WsBarrageServer.cs │ └── WssBarrageGrab.cs ├── Utility │ ├── DyApiHelper.cs │ ├── EmbResource.cs │ ├── LiveCompanHelper.cs │ └── WinApi.cs ├── WssBarrageService.csproj ├── logo.ico ├── packages.config └── proto │ ├── message.proto │ └── wss.proto ├── BarrageService.sln ├── Demos ├── NodeJS │ ├── entities.js │ ├── main.js │ ├── package-lock.json │ ├── package.json │ └── parsers.js └── Python │ ├── entities.py │ ├── main.py │ ├── parsers.py │ └── requirements.txt ├── LICENSE ├── README.md ├── imgs ├── logo.ico ├── proxy1.png ├── proxy2.png ├── proxy3.png ├── proxy4.png ├── 微信.png └── 控制台截图.png ├── 免责声明.txt └── 关闭代理.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/.gitignore -------------------------------------------------------------------------------- /BarrageGrab/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/App.config -------------------------------------------------------------------------------- /BarrageGrab/AppConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/AppConfig.json -------------------------------------------------------------------------------- /BarrageGrab/AppRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/AppRuntime.cs -------------------------------------------------------------------------------- /BarrageGrab/AppSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/AppSetting.cs -------------------------------------------------------------------------------- /BarrageGrab/Configs/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Configs/nlog.config -------------------------------------------------------------------------------- /BarrageGrab/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/FodyWeavers.xml -------------------------------------------------------------------------------- /BarrageGrab/Forms/FormView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Forms/FormView.Designer.cs -------------------------------------------------------------------------------- /BarrageGrab/Forms/FormView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Forms/FormView.cs -------------------------------------------------------------------------------- /BarrageGrab/Forms/FormView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Forms/FormView.resx -------------------------------------------------------------------------------- /BarrageGrab/Forms/Models/RoomCacheItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Forms/Models/RoomCacheItem.cs -------------------------------------------------------------------------------- /BarrageGrab/Forms/RoomDetail.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Forms/RoomDetail.Designer.cs -------------------------------------------------------------------------------- /BarrageGrab/Forms/RoomDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Forms/RoomDetail.cs -------------------------------------------------------------------------------- /BarrageGrab/Forms/RoomDetail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Forms/RoomDetail.resx -------------------------------------------------------------------------------- /BarrageGrab/JsEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/JsEngine.cs -------------------------------------------------------------------------------- /BarrageGrab/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Logger.cs -------------------------------------------------------------------------------- /BarrageGrab/Modles/BusinessExecption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Modles/BusinessExecption.cs -------------------------------------------------------------------------------- /BarrageGrab/Modles/JsonEntity/BarrageMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Modles/JsonEntity/BarrageMessages.cs -------------------------------------------------------------------------------- /BarrageGrab/Modles/JsonEntity/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Modles/JsonEntity/Command.cs -------------------------------------------------------------------------------- /BarrageGrab/Modles/ProtoEntity/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Modles/ProtoEntity/Messages.cs -------------------------------------------------------------------------------- /BarrageGrab/Modles/ProtoEntity/Wss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Modles/ProtoEntity/Wss.cs -------------------------------------------------------------------------------- /BarrageGrab/Modles/RoomInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Modles/RoomInfo.cs -------------------------------------------------------------------------------- /BarrageGrab/Modles/WebCastGift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Modles/WebCastGift.cs -------------------------------------------------------------------------------- /BarrageGrab/ObjectExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/ObjectExtension.cs -------------------------------------------------------------------------------- /BarrageGrab/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Program.cs -------------------------------------------------------------------------------- /BarrageGrab/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BarrageGrab/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Properties/app.manifest -------------------------------------------------------------------------------- /BarrageGrab/Proxy/ISystemProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Proxy/ISystemProxy.cs -------------------------------------------------------------------------------- /BarrageGrab/Proxy/ProxyEventArgs/HttpResponseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Proxy/ProxyEventArgs/HttpResponseEventArgs.cs -------------------------------------------------------------------------------- /BarrageGrab/Proxy/ProxyEventArgs/SystemProxyChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Proxy/ProxyEventArgs/SystemProxyChangeEventArgs.cs -------------------------------------------------------------------------------- /BarrageGrab/Proxy/ProxyEventArgs/WsMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Proxy/ProxyEventArgs/WsMessageEventArgs.cs -------------------------------------------------------------------------------- /BarrageGrab/Proxy/SystemProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Proxy/SystemProxy.cs -------------------------------------------------------------------------------- /BarrageGrab/Proxy/TitaniumProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Proxy/TitaniumProxy.cs -------------------------------------------------------------------------------- /BarrageGrab/Scripts/engine/comPortFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Scripts/engine/comPortFilter.js -------------------------------------------------------------------------------- /BarrageGrab/Scripts/inject/livePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Scripts/inject/livePage.js -------------------------------------------------------------------------------- /BarrageGrab/Server/ComPortServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Server/ComPortServer.cs -------------------------------------------------------------------------------- /BarrageGrab/Server/WsBarrageServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Server/WsBarrageServer.cs -------------------------------------------------------------------------------- /BarrageGrab/Server/WssBarrageGrab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Server/WssBarrageGrab.cs -------------------------------------------------------------------------------- /BarrageGrab/Utility/DyApiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Utility/DyApiHelper.cs -------------------------------------------------------------------------------- /BarrageGrab/Utility/EmbResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Utility/EmbResource.cs -------------------------------------------------------------------------------- /BarrageGrab/Utility/LiveCompanHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Utility/LiveCompanHelper.cs -------------------------------------------------------------------------------- /BarrageGrab/Utility/WinApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/Utility/WinApi.cs -------------------------------------------------------------------------------- /BarrageGrab/WssBarrageService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/WssBarrageService.csproj -------------------------------------------------------------------------------- /BarrageGrab/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/logo.ico -------------------------------------------------------------------------------- /BarrageGrab/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/packages.config -------------------------------------------------------------------------------- /BarrageGrab/proto/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/proto/message.proto -------------------------------------------------------------------------------- /BarrageGrab/proto/wss.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageGrab/proto/wss.proto -------------------------------------------------------------------------------- /BarrageService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/BarrageService.sln -------------------------------------------------------------------------------- /Demos/NodeJS/entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/Demos/NodeJS/entities.js -------------------------------------------------------------------------------- /Demos/NodeJS/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/Demos/NodeJS/main.js -------------------------------------------------------------------------------- /Demos/NodeJS/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/Demos/NodeJS/package-lock.json -------------------------------------------------------------------------------- /Demos/NodeJS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/Demos/NodeJS/package.json -------------------------------------------------------------------------------- /Demos/NodeJS/parsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/Demos/NodeJS/parsers.js -------------------------------------------------------------------------------- /Demos/Python/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/Demos/Python/entities.py -------------------------------------------------------------------------------- /Demos/Python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/Demos/Python/main.py -------------------------------------------------------------------------------- /Demos/Python/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/Demos/Python/parsers.py -------------------------------------------------------------------------------- /Demos/Python/requirements.txt: -------------------------------------------------------------------------------- 1 | websockets>=10.0 2 | colorama>=0.4.4 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/README.md -------------------------------------------------------------------------------- /imgs/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/imgs/logo.ico -------------------------------------------------------------------------------- /imgs/proxy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/imgs/proxy1.png -------------------------------------------------------------------------------- /imgs/proxy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/imgs/proxy2.png -------------------------------------------------------------------------------- /imgs/proxy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/imgs/proxy3.png -------------------------------------------------------------------------------- /imgs/proxy4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/imgs/proxy4.png -------------------------------------------------------------------------------- /imgs/微信.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/imgs/微信.png -------------------------------------------------------------------------------- /imgs/控制台截图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/imgs/控制台截图.png -------------------------------------------------------------------------------- /免责声明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/免责声明.txt -------------------------------------------------------------------------------- /关闭代理.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ape-byte/DouyinBarrageGrab/HEAD/关闭代理.bat --------------------------------------------------------------------------------