├── .github └── workflows │ ├── PackageAssets.txt │ └── create-release.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── convert_to_opus_mka.ps1 ├── example.aegis-converted.ass ├── example.ass ├── example.converted.ass ├── example.srt ├── example.ssa ├── install_dependencies_once.bat ├── install_dependencies_once.sh ├── requirements.txt ├── start_sub_adjust_linux.sh ├── start_sub_adjust_windows.bat ├── start_sub_converter_linux.sh ├── start_sub_converter_windows.bat ├── start_timecode_converter_linux.sh ├── start_timecode_converter_windows.bat ├── sub_adjust.lua ├── sub_adjust.py ├── sub_converter.py ├── timecode_converter.py └── utils.py /.github/workflows/PackageAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/.github/workflows/PackageAssets.txt -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/README.md -------------------------------------------------------------------------------- /convert_to_opus_mka.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/convert_to_opus_mka.ps1 -------------------------------------------------------------------------------- /example.aegis-converted.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/example.aegis-converted.ass -------------------------------------------------------------------------------- /example.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/example.ass -------------------------------------------------------------------------------- /example.converted.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/example.converted.ass -------------------------------------------------------------------------------- /example.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/example.srt -------------------------------------------------------------------------------- /example.ssa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/example.ssa -------------------------------------------------------------------------------- /install_dependencies_once.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/install_dependencies_once.bat -------------------------------------------------------------------------------- /install_dependencies_once.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/install_dependencies_once.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/requirements.txt -------------------------------------------------------------------------------- /start_sub_adjust_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/start_sub_adjust_linux.sh -------------------------------------------------------------------------------- /start_sub_adjust_windows.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | :: 隐藏命令行窗口并运行 Python 脚本 4 | start "" /min cmd /c python sub_adjust.py 5 | -------------------------------------------------------------------------------- /start_sub_converter_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/start_sub_converter_linux.sh -------------------------------------------------------------------------------- /start_sub_converter_windows.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | :: 隐藏命令行窗口并运行 Python 脚本 4 | start "" /min cmd /c python sub_converter.py 5 | -------------------------------------------------------------------------------- /start_timecode_converter_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/start_timecode_converter_linux.sh -------------------------------------------------------------------------------- /start_timecode_converter_windows.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | :: 隐藏命令行窗口并运行 Python 脚本 4 | start "" /min cmd /c python timecode_converter.py 5 | -------------------------------------------------------------------------------- /sub_adjust.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/sub_adjust.lua -------------------------------------------------------------------------------- /sub_adjust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/sub_adjust.py -------------------------------------------------------------------------------- /sub_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/sub_converter.py -------------------------------------------------------------------------------- /timecode_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/timecode_converter.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelastfantasy/sub-adjust/HEAD/utils.py --------------------------------------------------------------------------------