├── .gitignore ├── ASRData.py ├── README.md ├── __pycache__ ├── ASRData.cpython-310.pyc └── split_by_llm.cpython-310.pyc ├── cache ├── 26c8efe1e60d3b4a061e8fca1bdff6bd.json ├── ce2c2d169b7bf83c81ce20cda61aa4c5.json ├── daeab3b766512e2473ba462dfd1032eb.json ├── e2e3164f03a2363c700d371847ca8879.json └── f320aa7cb9d98dabf02c3e694e94c371.json ├── main.py ├── split_by_llm.py └── test_data ├── java.srt ├── java_merged.srt ├── result_subtitle_gpt-4o-mini.srt ├── ted-dll.srt ├── ted-dll_merged.srt ├── ted-email.srt ├── ted-email_merged.srt ├── yidali.srt ├── yidali_merged.srt ├── 低视力音乐助人者.srt ├── 低视力音乐助人者_merged.srt ├── 李白.srt ├── 李白_merged.srt ├── 进制演示器.srt └── 进制演示器_merged.srt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/.gitignore -------------------------------------------------------------------------------- /ASRData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/ASRData.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/ASRData.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/__pycache__/ASRData.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/split_by_llm.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/__pycache__/split_by_llm.cpython-310.pyc -------------------------------------------------------------------------------- /cache/26c8efe1e60d3b4a061e8fca1bdff6bd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/cache/26c8efe1e60d3b4a061e8fca1bdff6bd.json -------------------------------------------------------------------------------- /cache/ce2c2d169b7bf83c81ce20cda61aa4c5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/cache/ce2c2d169b7bf83c81ce20cda61aa4c5.json -------------------------------------------------------------------------------- /cache/daeab3b766512e2473ba462dfd1032eb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/cache/daeab3b766512e2473ba462dfd1032eb.json -------------------------------------------------------------------------------- /cache/e2e3164f03a2363c700d371847ca8879.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/cache/e2e3164f03a2363c700d371847ca8879.json -------------------------------------------------------------------------------- /cache/f320aa7cb9d98dabf02c3e694e94c371.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/cache/f320aa7cb9d98dabf02c3e694e94c371.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/main.py -------------------------------------------------------------------------------- /split_by_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/split_by_llm.py -------------------------------------------------------------------------------- /test_data/java.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/java.srt -------------------------------------------------------------------------------- /test_data/java_merged.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/java_merged.srt -------------------------------------------------------------------------------- /test_data/result_subtitle_gpt-4o-mini.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/result_subtitle_gpt-4o-mini.srt -------------------------------------------------------------------------------- /test_data/ted-dll.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/ted-dll.srt -------------------------------------------------------------------------------- /test_data/ted-dll_merged.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/ted-dll_merged.srt -------------------------------------------------------------------------------- /test_data/ted-email.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/ted-email.srt -------------------------------------------------------------------------------- /test_data/ted-email_merged.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/ted-email_merged.srt -------------------------------------------------------------------------------- /test_data/yidali.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/yidali.srt -------------------------------------------------------------------------------- /test_data/yidali_merged.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/yidali_merged.srt -------------------------------------------------------------------------------- /test_data/低视力音乐助人者.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/低视力音乐助人者.srt -------------------------------------------------------------------------------- /test_data/低视力音乐助人者_merged.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/低视力音乐助人者_merged.srt -------------------------------------------------------------------------------- /test_data/李白.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/李白.srt -------------------------------------------------------------------------------- /test_data/李白_merged.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/李白_merged.srt -------------------------------------------------------------------------------- /test_data/进制演示器.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/进制演示器.srt -------------------------------------------------------------------------------- /test_data/进制演示器_merged.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WEIFENG2333/SubtitleSpliter/HEAD/test_data/进制演示器_merged.srt --------------------------------------------------------------------------------