# subTranslate **Repository Path**: lgySpace/sub-translate ## Basic Information - **Project Name**: subTranslate - **Description**: 字幕翻译-采用百度Api,快速使用机器翻译,把英文字幕翻译成中文 - **Primary Language**: Java - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-14 - **Last Updated**: 2022-05-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: 字幕 ## README # subTranslate #### 介绍 字幕翻译-采用百度Api,快速使用机器翻译,把英文字幕翻译成中文 根据[Java-](https://github.com/JackLiDi/Java-.git) 作了一些优化; 需要自己申请 [百度翻译Api](https://api.fanyi.baidu.com/product/113); 然后得到AppID和AppSecurityKey、添加到下面的类里 ```java public class FileTranslateOperation { /** * 百度AI app_id */ private static final String APP_ID = ""; /** * 百度AI SECURITY_KEY */ private static final String SECURITY_KEY = ""; } ```