├── .gitignore ├── README.md ├── Subtitle.py ├── align_script.py ├── logger.py ├── main.py ├── requirements.txt ├── static ├── running_error1.png ├── running_screenshot1.png └── running_screenshot2.png ├── test_case ├── JordanPeterson.mp4.cn.srt ├── JordanPeterson.mp4.srt ├── Lecture 1 - Introduction and Logistics.en.srt └── l1_export.srt └── translate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/README.md -------------------------------------------------------------------------------- /Subtitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/Subtitle.py -------------------------------------------------------------------------------- /align_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/align_script.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/logger.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/running_error1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/static/running_error1.png -------------------------------------------------------------------------------- /static/running_screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/static/running_screenshot1.png -------------------------------------------------------------------------------- /static/running_screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/static/running_screenshot2.png -------------------------------------------------------------------------------- /test_case/JordanPeterson.mp4.cn.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/test_case/JordanPeterson.mp4.cn.srt -------------------------------------------------------------------------------- /test_case/JordanPeterson.mp4.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/test_case/JordanPeterson.mp4.srt -------------------------------------------------------------------------------- /test_case/Lecture 1 - Introduction and Logistics.en.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/test_case/Lecture 1 - Introduction and Logistics.en.srt -------------------------------------------------------------------------------- /test_case/l1_export.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/test_case/l1_export.srt -------------------------------------------------------------------------------- /translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanxing333/subtitle-translator/HEAD/translate.py --------------------------------------------------------------------------------