├── .gitignore ├── README.md ├── Subtitles ├── 2017 │ ├── 2017.md │ ├── Ch4.The.Mega.Brothel.720p.HDTV.x264.AAC.MVGroup.org-cn.srt │ └── Ch4.The.Mega.Brothel.720p.HDTV.x264.AAC.MVGroup.org-中文-英文.srt ├── Movie │ └── Movie.md ├── Subtitles.md └── TV │ └── TV.md ├── TODO.md ├── src ├── .gitignore ├── Google_Translate_API.py ├── bing_Translate_api.py ├── combile_cn_eng_subtitle_to_one.py ├── subtitle_translate1.py ├── translate_api.py ├── youdao_translate_api.py └── 下载字幕 │ └── README.md └── 心得经验 └── 下载YouTube视频.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/README.md -------------------------------------------------------------------------------- /Subtitles/2017/2017.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Subtitles/2017/Ch4.The.Mega.Brothel.720p.HDTV.x264.AAC.MVGroup.org-cn.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/Subtitles/2017/Ch4.The.Mega.Brothel.720p.HDTV.x264.AAC.MVGroup.org-cn.srt -------------------------------------------------------------------------------- /Subtitles/2017/Ch4.The.Mega.Brothel.720p.HDTV.x264.AAC.MVGroup.org-中文-英文.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/Subtitles/2017/Ch4.The.Mega.Brothel.720p.HDTV.x264.AAC.MVGroup.org-中文-英文.srt -------------------------------------------------------------------------------- /Subtitles/Movie/Movie.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Subtitles/Subtitles.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Subtitles/TV/TV.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/TODO.md -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /config.py 3 | -------------------------------------------------------------------------------- /src/Google_Translate_API.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/src/Google_Translate_API.py -------------------------------------------------------------------------------- /src/bing_Translate_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/src/bing_Translate_api.py -------------------------------------------------------------------------------- /src/combile_cn_eng_subtitle_to_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/src/combile_cn_eng_subtitle_to_one.py -------------------------------------------------------------------------------- /src/subtitle_translate1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/src/subtitle_translate1.py -------------------------------------------------------------------------------- /src/translate_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/src/translate_api.py -------------------------------------------------------------------------------- /src/youdao_translate_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/src/youdao_translate_api.py -------------------------------------------------------------------------------- /src/下载字幕/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/src/下载字幕/README.md -------------------------------------------------------------------------------- /心得经验/下载YouTube视频.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Machine_Translation_Subtitles_Group/HEAD/心得经验/下载YouTube视频.md --------------------------------------------------------------------------------