├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── README.md ├── config ├── config.ini ├── requirements.txt └── sensitive_words.txt ├── init.py ├── main.py ├── requirements.txt ├── resource └── subtitle.html ├── start.bat ├── start.sh ├── testing ├── blive.py ├── filter.py ├── gpt.py ├── my_old_thread_main.py ├── my_test_process.py ├── obsolete_danmu.py ├── process.py ├── pth2onnx.py ├── sensitive_words.txt ├── test1.py ├── test2.py ├── testPoolQueeu.py └── testQueue.py └── tts.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/README.md -------------------------------------------------------------------------------- /config/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/config/config.ini -------------------------------------------------------------------------------- /config/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/config/requirements.txt -------------------------------------------------------------------------------- /config/sensitive_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/config/sensitive_words.txt -------------------------------------------------------------------------------- /init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/init.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/requirements.txt -------------------------------------------------------------------------------- /resource/subtitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/resource/subtitle.html -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/start.bat -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/start.sh -------------------------------------------------------------------------------- /testing/blive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/testing/blive.py -------------------------------------------------------------------------------- /testing/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/testing/filter.py -------------------------------------------------------------------------------- /testing/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/testing/gpt.py -------------------------------------------------------------------------------- /testing/my_old_thread_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/testing/my_old_thread_main.py -------------------------------------------------------------------------------- /testing/my_test_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/testing/my_test_process.py -------------------------------------------------------------------------------- /testing/obsolete_danmu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/testing/obsolete_danmu.py -------------------------------------------------------------------------------- /testing/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/testing/process.py -------------------------------------------------------------------------------- /testing/pth2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/testing/pth2onnx.py -------------------------------------------------------------------------------- /testing/sensitive_words.txt: -------------------------------------------------------------------------------- 1 | 台湾 2 | 新疆 3 | 北京 4 | 中国 -------------------------------------------------------------------------------- /testing/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/testing/test1.py -------------------------------------------------------------------------------- /testing/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/testing/test2.py -------------------------------------------------------------------------------- /testing/testPoolQueeu.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/testQueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/testing/testQueue.py -------------------------------------------------------------------------------- /tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newreport/vtbai/HEAD/tts.py --------------------------------------------------------------------------------