├── .DS_Store ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── blivedm ├── __init__.py ├── client.py ├── handlers.py ├── models.py └── spanish.mp3 ├── chat.py ├── file ├── badwords_zh.txt └── message.txt ├── main.py ├── main3.py ├── requirements.txt ├── sample.py ├── test.py └── utils └── subtitle.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/README.md -------------------------------------------------------------------------------- /blivedm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/blivedm/__init__.py -------------------------------------------------------------------------------- /blivedm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/blivedm/client.py -------------------------------------------------------------------------------- /blivedm/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/blivedm/handlers.py -------------------------------------------------------------------------------- /blivedm/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/blivedm/models.py -------------------------------------------------------------------------------- /blivedm/spanish.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/blivedm/spanish.mp3 -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/chat.py -------------------------------------------------------------------------------- /file/badwords_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/file/badwords_zh.txt -------------------------------------------------------------------------------- /file/message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/file/message.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/main.py -------------------------------------------------------------------------------- /main3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/main3.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/sample.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/test.py -------------------------------------------------------------------------------- /utils/subtitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StoneChin/AIVtuber/HEAD/utils/subtitle.py --------------------------------------------------------------------------------