# PingEnglish **Repository Path**: pingWurth/ping-english ## Basic Information - **Project Name**: PingEnglish - **Description**: No description available - **Primary Language**: HTML - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-13 - **Last Updated**: 2025-11-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # React + TypeScript + Vite This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. Currently, two official plugins are available: - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) for Fast Refresh - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh ## Expanding the ESLint configuration If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules: ```js export default tseslint.config({ extends: [ // Remove ...tseslint.configs.recommended and replace with this ...tseslint.configs.recommendedTypeChecked, // Alternatively, use this for stricter rules ...tseslint.configs.strictTypeChecked, // Optionally, add this for stylistic rules ...tseslint.configs.stylisticTypeChecked, ], languageOptions: { // other options... parserOptions: { project: ['./tsconfig.node.json', './tsconfig.app.json'], tsconfigRootDir: import.meta.dirname, }, }, }) ``` You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules: ```js // eslint.config.js import reactX from 'eslint-plugin-react-x' import reactDom from 'eslint-plugin-react-dom' export default tseslint.config({ extends: [ // other configs... // Enable lint rules for React reactX.configs['recommended-typescript'], // Enable lint rules for React DOM reactDom.configs.recommended, ], languageOptions: { // other options... parserOptions: { project: ['./tsconfig.node.json', './tsconfig.app.json'], tsconfigRootDir: import.meta.dirname, }, }, }) ``` ## Montreal Forced Aligner > **GitHub** - https://github.com/MontrealCorpusTools/Montreal-Forced-Aligner ### Documentation https://montreal-forced-aligner.readthedocs.io/en/latest/index.html ### 下载 Anoconda 安装包 https://www.anaconda.com/docs/getting-started/anaconda/install #### Windows ```command curl https://repo.anaconda.com/archive/Anaconda3-2025.06-0-Windows-x86_64.exe --output D:\Users\59411\Downloads\Anaconda3-2025.06-0-Windows-x86_64.exe ``` #### Linux ```bash curl -O https://repo.anaconda.com/archive/Anaconda3-2025.06-0-Linux-x86_64.sh ``` #### MacOS ```bash curl -O https://repo.anaconda.com/archive/Anaconda3-2025.06-0-MacOSX-arm64.sh ``` ### 安装 MFA https://montreal-forced-aligner.readthedocs.io/en/latest/getting_started.html ```sh # 要先安装 anaconda 才能执行下面命令 conda config --add channels conda-forge conda create -n aligner montreal-forced-aligner conda activate aligner mfa --help # ========美式英语模型下载 ======== mfa model download acoustic english_us_arpa --path /app/models/ mfa model download dictionary english_us_arpa --path /app/models/ # ======== 英式英语模型下载 ======== mfa model download acoustic english_uk_arpa --path /app/models/ mfa model download dictionary english_uk_mfa --path /app/models/ # 如果下载失败,就手动下载: # https://mfa-models.readthedocs.io/en/latest/ # https://github.com/MontrealCorpusTools/mfa-models/releases # https://github.com/MontrealCorpusTools/mfa-models/releases/download/acoustic-english_mfa-v3.0.0/english_mfa.zip # https://github.com/MontrealCorpusTools/mfa-models/releases/download/language_model-english_mfa_lm-v2.0.0a/english_mfa_lm.zip # https://github.com/MontrealCorpusTools/mfa-models/releases/download/dictionary-english_uk_mfa-v3.1.0/english_uk_mfa.dict ```