Aitronssesin commited on
Commit
85d3b29
1 Parent(s): 7258836
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitignore +129 -0
  2. LICENSE +26 -0
  3. README.md +115 -7
  4. app.py +59 -0
  5. assets/Applio.ipynb +85 -0
  6. assets/ICON.ico +0 -0
  7. assets/audios/audio-others/.gitignore +0 -0
  8. assets/discord_presence.py +49 -0
  9. assets/i18n/i18n.py +39 -0
  10. assets/i18n/languages/ar_AR.json +113 -0
  11. assets/i18n/languages/bn_BN.json +113 -0
  12. assets/i18n/languages/de_DE.json +113 -0
  13. assets/i18n/languages/en_US.json +135 -0
  14. assets/i18n/languages/es_ES.json +118 -0
  15. assets/i18n/languages/fa_FA.json +113 -0
  16. assets/i18n/languages/fr_FR.json +113 -0
  17. assets/i18n/languages/gu_GU.json +113 -0
  18. assets/i18n/languages/hi_HI.json +113 -0
  19. assets/i18n/languages/hu_HU.json +113 -0
  20. assets/i18n/languages/it_IT.json +113 -0
  21. assets/i18n/languages/ja_JA.json +113 -0
  22. assets/i18n/languages/jv_JV.json +1 -0
  23. assets/i18n/languages/ko_KO.json +135 -0
  24. assets/i18n/languages/mr_MR.json +113 -0
  25. assets/i18n/languages/ms_MS.json +113 -0
  26. assets/i18n/languages/nl_NL.json +113 -0
  27. assets/i18n/languages/pa_PA.json +113 -0
  28. assets/i18n/languages/pl_PL.json +113 -0
  29. assets/i18n/languages/pt_BR.json +113 -0
  30. assets/i18n/languages/pt_PT.json +113 -0
  31. assets/i18n/languages/ro_RO.json +113 -0
  32. assets/i18n/languages/ru_RU.json +116 -0
  33. assets/i18n/languages/ta_TA.json +113 -0
  34. assets/i18n/languages/te_TE.json +113 -0
  35. assets/i18n/languages/th_TH.json +113 -0
  36. assets/i18n/languages/tr_TR.json +113 -0
  37. assets/i18n/languages/uk_UK.json +113 -0
  38. assets/i18n/languages/ur_UR.json +113 -0
  39. assets/i18n/languages/vi_VI.json +113 -0
  40. assets/i18n/languages/wu_WU.json +1 -0
  41. assets/i18n/languages/zh_CN.json +113 -0
  42. assets/i18n/scan.py +71 -0
  43. core.py +764 -0
  44. requirements.txt +36 -0
  45. rvc/configs/config.py +165 -0
  46. rvc/configs/v1/32000.json +46 -0
  47. rvc/configs/v1/40000.json +46 -0
  48. rvc/configs/v1/48000.json +46 -0
  49. rvc/configs/v2/32000.json +46 -0
  50. rvc/configs/v2/48000.json +46 -0
.gitignore ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Applio
2
+ logs
3
+ *.exe
4
+ *.pt
5
+ *.pth
6
+ *.index
7
+ *.wav
8
+
9
+ # Byte-compiled / optimized / DLL files
10
+ __pycache__/
11
+ *.py[cod]
12
+ *$py.class
13
+
14
+ # C extensions
15
+ *.so
16
+
17
+ # Distribution / packaging
18
+ .Python
19
+ build/
20
+ develop-eggs/
21
+ dist/
22
+ downloads/
23
+ eggs/
24
+ .eggs/
25
+ lib/
26
+ lib64/
27
+ parts/
28
+ sdist/
29
+ var/
30
+ wheels/
31
+ share/python-wheels/
32
+ *.egg-info/
33
+ .installed.cfg
34
+ *.egg
35
+ MANIFEST
36
+
37
+ # PyInstaller
38
+ *.manifest
39
+ *.spec
40
+
41
+ # Installer logs
42
+ pip-log.txt
43
+ pip-delete-this-directory.txt
44
+
45
+ # Unit test / coverage reports
46
+ htmlcov/
47
+ .tox/
48
+ .nox/
49
+ .coverage
50
+ .coverage.*
51
+ .cache
52
+ nosetests.xml
53
+ coverage.xml
54
+ *.cover
55
+ *.py,cover
56
+ .hypothesis/
57
+ .pytest_cache/
58
+ cover/
59
+
60
+ # Translations
61
+ *.mo
62
+ *.pot
63
+
64
+ # Django stuff:
65
+ *.log
66
+ local_settings.py
67
+ db.sqlite3
68
+ db.sqlite3-journal
69
+
70
+ # Flask stuff:
71
+ instance/
72
+ .webassets-cache
73
+
74
+ # Scrapy stuff:
75
+ .scrapy
76
+
77
+ # Sphinx documentation
78
+ docs/_build/
79
+
80
+ # PyBuilder
81
+ .pybuilder/
82
+ target/
83
+
84
+ # Jupyter Notebook
85
+ .ipynb_checkpoints
86
+
87
+ # IPython
88
+ profile_default/
89
+ ipython_config.py
90
+
91
+ .pdm.toml
92
+
93
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
94
+ __pypackages__/
95
+
96
+ # Celery stuff
97
+ celerybeat-schedule
98
+ celerybeat.pid
99
+
100
+ # SageMath parsed files
101
+ *.sage.py
102
+
103
+ # Environments
104
+ .env
105
+ .venv
106
+ env/
107
+ venv/
108
+ ENV/
109
+ env.bak/
110
+ venv.bak/
111
+
112
+ # Spyder project settings
113
+ .spyderproject
114
+ .spyproject
115
+
116
+ # Rope project settings
117
+ .ropeproject
118
+
119
+ # mkdocs documentation
120
+ /site
121
+
122
+ # Pyre type checker
123
+ .pyre/
124
+
125
+ # pytype static type analyzer
126
+ .pytype/
127
+
128
+ # Cython debug symbols
129
+ cython_debug/
LICENSE ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License (Non-Commercial)
2
+
3
+ Copyright (c) 2023 AI Hispano
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to use,
7
+ copy, modify, merge, publish and/or distribute Applio-RVC-Fork, subject to the following conditions:
8
+
9
+ 1. The software and its derivatives may only be used for non-commercial
10
+ purposes.
11
+
12
+ 2. Any commercial use, sale, or distribution of the software or its derivatives
13
+ is strictly prohibited.
14
+
15
+ 3. The above copyright notice and this permission notice shall be included in
16
+ all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS," WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ SOFTWARE.
25
+
26
+ Please note that under this license, the software and its derivatives can only be used for non-commercial purposes, and any commercial use, sale, or distribution is prohibited.
README.md CHANGED
@@ -1,12 +1,120 @@
1
  ---
 
2
  title: Applio V3 Hugginface Space
3
- emoji: 🐨
4
- colorFrom: pink
5
- colorTo: yellow
6
  sdk: gradio
7
- sdk_version: 4.16.0
8
- app_file: app.py
9
- pinned: false
10
  ---
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
  title: Applio V3 Hugginface Space
 
 
 
4
  sdk: gradio
5
+ colorFrom: indigo
6
+ colorTo: purple
7
+ pinned: true
8
  ---
9
 
10
+ # Applio
11
+
12
+ Welcome to **Applio**, the ultimate voice cloning tool meticulously optimized for unrivaled power, modularity, and a user-friendly experience.
13
+
14
+ [![Precompiled Versions](https://img.shields.io/badge/Precompiled%20Versions-ffffff?style=flat-square&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAALEsAACxLAaU9lqkAAAHzSURBVDhPrVFNaBNBFP5m9idJU9tE2srS5KSNlxT00AhSEEH01GMOIkpPBSmCehE99aIgVOrJgzdP6kE8qoQKEqmIV00PhRQ3jSbdTbRVm7rbnfHNJLV4lX7w3sx8733z3szDvkIIkQyCoEB2otls9vfof8B6q0a9Xu8b2V66bTSez7BguU+FhT3eQfb8Q549d4sxttVL3RNKKS3xaeEVX797GkOxHkuQZF4Ikb3zZjmcOJvP5wNFc+UUwrXFWd6Y1yK3YWlOadx12o9Y4O7cqZyDKzpA2BUy7j6bRprBWwsw/yTdLfTNwL3HaeBnB0gF4KtPp1WuEuwJ2cYYLAPDjokbF9rUOpA+IHDzYhtIUOsxCyxqjalcJdDCYrHIpLA7aPwAOiEW38dx+XoGM9cy+Lhiak7HWKKjcpVGu99+5ZL9buoR7BY9NkJE98nPo5AxCXP0C1USgGkAO8MIT76ctQ8efqAr8u+VY0ATMOg4EIcxYMMc92DlfLCkrTmYFBNfgY3Kca1RDiZdLah4PyWlEsAg2eZ219RecSomGZgRV//WbbVWq2UObb29b7RfT/FwxQZPIUoWlqQUkfHrwySTm0zauXBn6MyLVnLyquM4q0q3C14qlQY9z5uoVqtH6UyPovG57hHf9wvlcpnm8ncK/wvgD6Orstc1XrkKAAAAAElFTkSuQmCC&link=https://huggingface.co/IAHispano/applio/tree/main/Applio%20V3%20Precompiled)](https://huggingface.co/IAHispano/applio/tree/main/Applio%20V3%20Precompiled)
15
+ ![GitHub Release](https://img.shields.io/github/v/release/iahispano/applio-rvc-fork?style=flat-square)
16
+ ![GitHub Repo stars](https://img.shields.io/github/stars/iahispano/applio-rvc-fork?style=flat-square)
17
+ ![GitHub forks](https://img.shields.io/github/forks/iahispano/applio-rvc-fork?style=flat-square)
18
+ [![Support Discord](https://img.shields.io/discord/1096877223765606521?style=flat-square)](https://discord.gg/iahispano)
19
+ [![Issues](https://img.shields.io/github/issues/iahispano/applio-rvc-fork?style=flat-square)](https://github.com/IAHispano/Applio-RVC-Fork/issues)
20
+ [![Open In Collab](https://img.shields.io/badge/google_colab-F9AB00?style=flat-square&logo=googlecolab&logoColor=white)](https://colab.research.google.com/github/iahispano/applio/blob/master/assets/Applio.ipynb)
21
+
22
+ ## Content Table
23
+ - [**Installation**](#installation)
24
+ - [Windows](#windows)
25
+ - [Linux](#linux)
26
+ - [Using Makefile](#using-makefile-for-platforms-such-as-paperspace)
27
+ - [**Usage**](#usage)
28
+ - [Windows](#windows-1)
29
+ - [Linux](#linux-1)
30
+ - [Using Makefile](#using-makefile-for-platforms-such-as-paperspace-1)
31
+ - [**Repository Enhancements**](#repository-enhancements)
32
+ - [**Credits**](#credits)
33
+ - [Contributors](#contributors)
34
+
35
+ ## Installation
36
+ Download the latest version from [GitHub Releases](https://github.com/IAHispano/Applio-RVC-Fork/releases) or use [Precompiled Versions](https://huggingface.co/IAHispano/applio/tree/main/Applio%20V3%20Precompiled).
37
+
38
+ ### Windows
39
+ ```bash
40
+ ./run-install.bat
41
+ ```
42
+
43
+ ### Linux
44
+ ```bash
45
+ chmod +x run-install.sh
46
+ ./run-install.sh
47
+ ```
48
+
49
+ ### Using Makefile (for platforms such as [Paperspace](https://www.paperspace.com/))
50
+ ```
51
+ make run-install
52
+ ```
53
+
54
+ ## Usage
55
+ Visit [Applio Documentation](https://docs.applio.org/) for a detailed UI usage explanation.
56
+
57
+ ### Windows
58
+ ```bash
59
+ ./run-applio.bat
60
+ ```
61
+
62
+ ### Linux
63
+ ```bash
64
+ chmod +x run-applio.sh
65
+ ./run-applio.sh
66
+ ```
67
+
68
+ ### Using Makefile (for platforms such as [Paperspace](https://www.paperspace.com/))
69
+ ```
70
+ make run-applio
71
+ ```
72
+
73
+ ## Repository Enhancements
74
+
75
+ This repository has undergone significant improvements to enhance its functionality and maintainability:
76
+
77
+ - **Code Modularization:** The codebase has been restructured to follow a modular approach. This ensures better organization, readability, and ease of maintenance.
78
+ - **Hop Length Implementation:** Special thanks to [@Mangio621](https://github.com/Mangio621/Mangio-RVC-Fork) for introducing hop length implementation. This enhancement enhances the efficiency and performance on Crepe (previously known as Mangio-Crepe).
79
+ - **Translations to +30 Languages:** The repository now supports translations in over 30 languages, making it more accessible to a global audience.
80
+ - **Cross-Platform Compatibility:** With multiplatform compatibility, this repository can seamlessly operate across various platforms, providing a consistent experience to users.
81
+ - **Optimized Requirements:** The project's requirements have been fine-tuned for improved performance and resource utilization.
82
+ - **Simple Installation:** The installation process has been streamlined, ensuring a straightforward and user-friendly experience for setup.
83
+
84
+ These enhancements contribute to a more robust and scalable codebase, making the repository more accessible for contributors and users alike.
85
+
86
+ ## Contributions
87
+ - **Backend Contributions:** If you want to contribute to the backend, make your pull requests [here](https://github.com/blaise-tk/RVC_CLI).
88
+ - **Frontend Contributions:** For interface or script-related contributions, feel free to contribute to this repository.
89
+
90
+ We appreciate all contributions ❤️
91
+
92
+ ## Planned Features
93
+ - Implement: Support for Apple Devices ([Issue Link](https://github.com/pytorch/pytorch/issues/77764))
94
+ - Implement: rmvpe_gpu
95
+ - Implement: Theme selector, RPC toggle & version checker
96
+ - Implement: Overtraining detector
97
+ - Implement: Autotune
98
+ - Implement: Training stop
99
+ - Fix: Model fusion
100
+
101
+ ## Credits
102
+ - [VITS](https://github.com/jaywalnut310/vits) by jaywalnut310
103
+ - [Retrieval-based-Voice-Conversion-WebUI](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI) by RVC-Project
104
+ - [Mangio-RVC-Fork](https://github.com/Mangio621/Mangio-RVC-Fork) by Mangio621
105
+ - [Mangio-RVC-Tweaks](https://github.com/alexlnkp/Mangio-RVC-Tweaks) by alexlnkp
106
+ - [RVG_tts](https://github.com/Foxify52/RVG_tts) by Foxify52
107
+ - [RMVPE](https://github.com/Dream-High/RMVPE) by Dream-High
108
+ - [ContentVec](https://github.com/auspicious3000/contentvec/) by auspicious3000
109
+ - [HIFIGAN](https://github.com/jik876/hifi-gan) by jik876
110
+ - [Gradio](https://github.com/gradio-app/gradio) by gradio-app
111
+ - [FFmpeg](https://github.com/FFmpeg/FFmpeg) by FFmpeg
112
+ - [audio-slicer](https://github.com/openvpi/audio-slicer) by openvpi
113
+ - [Ilaria-Audio-Analyzer](https://github.com/TheStingerX/Ilaria-Audio-Analyzer) by TheStingerX
114
+ - [gradio-screen-recorder](https://huggingface.co/spaces/gstaff/gradio-screen-recorder) by gstaff
115
+ - [RVC_CLI](https://github.com/blaise-tk/RVC_CLI) by blaise-tk
116
+
117
+ ### Contributors
118
+ <a href="https://github.com/IAHispano/Applio/graphs/contributors" target="_blank">
119
+ <img src="https://contrib.rocks/image?repo=IAHispano/Applio" />
120
+ </a>
app.py ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import sys
3
+ import os
4
+
5
+ now_dir = os.getcwd()
6
+ sys.path.append(now_dir)
7
+
8
+ from tabs.inference.inference import inference_tab
9
+ from tabs.train.train import train_tab
10
+ from tabs.extra.extra import extra_tab
11
+ from tabs.report.report import report_tab
12
+ from tabs.download.download import download_tab
13
+ from tabs.tts.tts import tts_tab
14
+ from tabs.settings.presence import presence_tab
15
+
16
+ from assets.i18n.i18n import I18nAuto
17
+
18
+ i18n = I18nAuto()
19
+
20
+ from assets.discord_presence import RPCManager
21
+
22
+ RPCManager.start_presence()
23
+
24
+ with gr.Blocks(theme="ParityError/Interstellar", title="Applio") as Applio:
25
+ gr.Markdown("# Applio")
26
+ gr.Markdown(
27
+ i18n(
28
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience."
29
+ )
30
+ )
31
+ gr.Markdown(
32
+ i18n(
33
+ "[Support](https://discord.gg/IAHispano) — [Discord Bot](https://discord.com/oauth2/authorize?client_id=1144714449563955302&permissions=1376674695271&scope=bot%20applications.commands) — [Find Voices](https://applio.org/models) — [GitHub](https://github.com/IAHispano/Applio)"
34
+ )
35
+ )
36
+ with gr.Tab(i18n("Inference")):
37
+ inference_tab()
38
+
39
+ with gr.Tab(i18n("Train")):
40
+ train_tab()
41
+
42
+ with gr.Tab(i18n("TTS")):
43
+ tts_tab()
44
+
45
+ with gr.Tab(i18n("Extra")):
46
+ extra_tab()
47
+
48
+ with gr.Tab(i18n("Download")):
49
+ download_tab()
50
+
51
+ with gr.Tab(i18n("Report a Bug")):
52
+ report_tab()
53
+
54
+ with gr.Tab(i18n("Settings")):
55
+ presence_tab()
56
+
57
+
58
+ if __name__ == "__main__":
59
+ Applio.launch()
assets/Applio.ipynb ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "code",
5
+ "execution_count": null,
6
+ "metadata": {
7
+ "cellView": "form",
8
+ "id": "vtON700qokuQ"
9
+ },
10
+ "outputs": [],
11
+ "source": [
12
+ "# @title **Install Applio**\n",
13
+ "\n",
14
+ "import codecs\n",
15
+ "import time\n",
16
+ "\n",
17
+ "orig_name_of_program = codecs.decode(\"Nccyvb\", \"rot_13\")\n",
18
+ "new_name_of_program = codecs.decode(\"cebtenz\", \"rot_13\")\n",
19
+ "uioawhd = codecs.decode(\"uggcf://tvguho.pbz/VNUvfcnab/Nccyvb.tvg\", \"rot_13\")\n",
20
+ "uyadwa = codecs.decode(\"ncc.cl\", \"rot_13\")\n",
21
+ "\n",
22
+ "from IPython.display import clear_output, Javascript\n",
23
+ "\n",
24
+ "!git clone --depth 1 $uioawhd\n",
25
+ "!mv $orig_name_of_program $new_name_of_program\n",
26
+ "%cd $new_name_of_program/\n",
27
+ "\n",
28
+ "clear_output()\n",
29
+ "file_path = \"requirements.txt\"\n",
30
+ "!pip install -r \"requirements.txt\" --quiet\n",
31
+ "\n",
32
+ "clear_output()\n",
33
+ "print(\"Finished installing requirements!\")"
34
+ ]
35
+ },
36
+ {
37
+ "cell_type": "code",
38
+ "execution_count": null,
39
+ "metadata": {
40
+ "cellView": "form",
41
+ "id": "-7cQtXouqpQi"
42
+ },
43
+ "outputs": [],
44
+ "source": [
45
+ "# @title **Start Applio**\n",
46
+ "import codecs\n",
47
+ "\n",
48
+ "uyadwa = codecs.decode(\"ncc.cl\", \"rot_13\")\n",
49
+ "\n",
50
+ "%load_ext tensorboard\n",
51
+ "%reload_ext tensorboard\n",
52
+ "%tensorboard --logdir logs --bind_all\n",
53
+ "\n",
54
+ "!python $uyadwa --share"
55
+ ]
56
+ },
57
+ {
58
+ "cell_type": "markdown",
59
+ "metadata": {
60
+ "id": "ymhGfgFSR17k"
61
+ },
62
+ "source": [
63
+ "## **Credits**\n",
64
+ "- Special thanks to [Hina](https://github.com/hinabl) 💗\n",
65
+ "- [Blaise](https://github.com/blaise-tk) and [Applio Team](https://github.com/IAHispano)"
66
+ ]
67
+ }
68
+ ],
69
+ "metadata": {
70
+ "accelerator": "GPU",
71
+ "colab": {
72
+ "gpuType": "T4",
73
+ "provenance": []
74
+ },
75
+ "kernelspec": {
76
+ "display_name": "Python 3",
77
+ "name": "python3"
78
+ },
79
+ "language_info": {
80
+ "name": "python"
81
+ }
82
+ },
83
+ "nbformat": 4,
84
+ "nbformat_minor": 0
85
+ }
assets/ICON.ico ADDED
assets/audios/audio-others/.gitignore ADDED
File without changes
assets/discord_presence.py ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from pypresence import Presence
2
+ import datetime as dt
3
+ import time
4
+
5
+
6
+ class RichPresenceManager:
7
+ def __init__(self):
8
+ self.client_id = "1144714449563955302"
9
+ self.rpc = None
10
+ self.running = False
11
+
12
+ def start_presence(self):
13
+ if not self.running:
14
+ self.running = True
15
+ self.rpc = Presence(self.client_id)
16
+ try:
17
+ self.rpc.connect()
18
+ self.update_presence()
19
+ except KeyboardInterrupt as error:
20
+ print(error)
21
+ self.rpc = None
22
+ self.running = False
23
+ except Exception as e:
24
+ print(f"Error: Unable to connect to Rich Presence. {e}")
25
+ self.rpc = None
26
+ self.running = False
27
+
28
+ def update_presence(self):
29
+ if self.rpc:
30
+ self.rpc.update(
31
+ state="applio.org",
32
+ details="Ultimate voice cloning tool.",
33
+ buttons=[
34
+ {"label": "Home", "url": "https://applio.org"},
35
+ {"label": "Download", "url": "https://applio.org/download"},
36
+ ],
37
+ large_image="logo",
38
+ large_text="Experimenting with applio",
39
+ start=dt.datetime.now().timestamp(),
40
+ )
41
+
42
+ def stop_presence(self):
43
+ self.running = False
44
+ if self.rpc:
45
+ self.rpc.close()
46
+ self.rpc = None
47
+
48
+
49
+ RPCManager = RichPresenceManager()
assets/i18n/i18n.py ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ from pathlib import Path
3
+ from locale import getdefaultlocale
4
+
5
+
6
+ class I18nAuto:
7
+ LANGUAGE_PATH = "./assets/i18n/languages/"
8
+
9
+ def __init__(self, language=None):
10
+ language = language or getdefaultlocale()[0]
11
+
12
+ lang_prefix = language[:2] if language is not None else "en"
13
+ available_languages = self._get_available_languages()
14
+ matching_languages = [
15
+ lang for lang in available_languages if lang.startswith(lang_prefix)
16
+ ]
17
+
18
+ self.language = matching_languages[0] if matching_languages else "en_US"
19
+ self.language_map = self._load_language_list()
20
+
21
+ def _load_language_list(self):
22
+ try:
23
+ file_path = Path(self.LANGUAGE_PATH) / f"{self.language}.json"
24
+ with open(file_path, "r", encoding="utf-8") as f:
25
+ return json.load(f)
26
+ except FileNotFoundError:
27
+ raise FileNotFoundError(
28
+ f"Failed to load language file for {self.language}. Check if the correct .json file exists."
29
+ )
30
+
31
+ def _get_available_languages(self):
32
+ language_files = [path.stem for path in Path(self.LANGUAGE_PATH).glob("*.json")]
33
+ return language_files
34
+
35
+ def _language_exists(self, language):
36
+ return (Path(self.LANGUAGE_PATH) / f"{language}.json").exists()
37
+
38
+ def __call__(self, key):
39
+ return self.language_map.get(key, key)
assets/i18n/languages/ar_AR.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "أداة استنساخ الصوت النهائية ، محسنة بدقة للحصول على قوة لا مثيل لها ، ونمطية ، وتجربة سهلة الاستخدام.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "يحتوي هذا القسم على بعض الأدوات المساعدة الإضافية التي قد تكون غالبا في المراحل التجريبية.",
4
+ "Output Information": "معلومات الإخراج",
5
+ "Inference": "استدلال",
6
+ "Train": "قطار",
7
+ "Extra": "اضافيه",
8
+ "Merge Audios": "دمج الصوتيات",
9
+ "Processing": "تجهيز",
10
+ "Audio Analyzer": "محلل الصوت",
11
+ "Model Information": "معلومات النموذج",
12
+ "Download": "تحميل",
13
+ "Report a Bug": "الإبلاغ عن خطأ",
14
+ "Preprocess": "المعالجة المسبقة",
15
+ "Model Name": "اسم الموديل",
16
+ "Enter model name": "أدخل اسم الطراز",
17
+ "Dataset Path": "مسار مجموعة البيانات",
18
+ "Enter dataset path": "إدخال مسار مجموعة البيانات",
19
+ "Sampling Rate": "معدل أخذ العينات",
20
+ "RVC Version": "نسخة RVC",
21
+ "Preprocess Dataset": "مجموعة بيانات ما قبل المعالجة",
22
+ "Extract": "استخرج",
23
+ "Hop Length": "طول القفزة",
24
+ "Batch Size": "حجم الدفعة",
25
+ "Save Every Epoch": "حفظ كل حقبة",
26
+ "Total Epoch": "إجمالي العصر",
27
+ "Pretrained": "التدريب المسبق",
28
+ "Save Only Latest": "حفظ الأحدث فقط",
29
+ "Save Every Weights": "حفظ كل الأوزان",
30
+ "Custom Pretrained": "تدريب مسبق مخصص",
31
+ "Upload Pretrained Model": "تحميل نموذج تم تدريبه مسبقا",
32
+ "Pretrained Custom Settings": "الإعدادات المخصصة المدربة مسبقا",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "الملف الذي أسقطته ليس ملفا صالحا تم تدريبه مسبقا. يرجى المحاولة مرة أخرى.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "انقر فوق زر التحديث لرؤية الملف الذي تم اختباره مسبقا في القائمة المنسدلة.",
35
+ "Pretrained G Path": "مخصص مسبقا G",
36
+ "Pretrained D Path": "مخصص مسبق التدريب D",
37
+ "GPU Settings": "إعدادات وحدة معالجة الرسومات",
38
+ "GPU Custom Settings": "الإعدادات المخصصة لوحدة معالجة الرسومات",
39
+ "GPU Number": "رقم وحدة معالجة الرسومات",
40
+ "0 to ∞ separated by -": "0 إلى ∞ مفصولة ب -",
41
+ "GPU Information": "معلومات وحدة معالجة الرسومات",
42
+ "Pitch Guidance": "توجيه الملعب",
43
+ "Extract Features": "استخراج الميزات",
44
+ "Start Training": "ابدأ التدريب",
45
+ "Generate Index": "إنشاء فهرس",
46
+ "Voice Model": "نموذج الصوت",
47
+ "Index File": "ملف الفهرس",
48
+ "Refresh": "تحديث",
49
+ "Unload Voice": "تفريغ الصوت",
50
+ "Single": "واحد",
51
+ "Upload Audio": "تحميل الصوت",
52
+ "Select Audio": "حدد الصوت",
53
+ "Advanced Settings": "الإعدادات المتقدمة",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "مخرجات واضحة (يحذف جميع الصوتيات في الأصول / الصوتيات)",
55
+ "Custom Output Path": "مسار الإخراج المخصص",
56
+ "Output Path": "مسار الإخراج",
57
+ "Pitch": "زفت",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "إذا كان > = 3: تطبيق التصفية المتوسطة على نتائج الملعب المحصودة. تمثل القيمة نصف قطر المرشح ويمكن أن تقلل من التنفس",
59
+ "Search Feature Ratio": "نسبة ميزة البحث",
60
+ "Pitch extraction algorithm": "خوارزمية استخراج الملعب",
61
+ "Convert": "حول",
62
+ "Export Audio": "تصدير الصوت",
63
+ "Batch": "الدفعه",
64
+ "Input Folder": "مجلد الإدخال",
65
+ "Enter input path": "أدخل مسار الإدخال",
66
+ "Output Folder": "مجلد الإخراج",
67
+ "Enter output path": "أدخل مسار الإخراج",
68
+ "Get information about the audio": "الحصول على معلومات حول الصوت",
69
+ "Information about the audio file": "معلومات حول الملف الصوتي",
70
+ "Waiting for information...": "في انتظار المعلومات...",
71
+ "Model fusion": "نموذج الانصهار",
72
+ "Weight for Model A": "وزن الموديل أ",
73
+ "Whether the model has pitch guidance": "ما إذا كان النموذج يحتوي على إرشادات الملعب",
74
+ "Model architecture version": "إصدار بنية النموذج",
75
+ "Path to Model A": "الطريق إلى النموذج أ",
76
+ "Path to Model B": "الطريق إلى النموذج ب",
77
+ "Path to model": "الطريق إلى النموذج",
78
+ "Model information to be placed": "معلومات النموذج المراد وضعها",
79
+ "Fusion": "اندماج",
80
+ "Modify model information": "تعديل معلومات النموذج",
81
+ "Path to Model": "الطريق إلى النموذج",
82
+ "Model information to be modified": "معلومات النموذج المراد تعديلها",
83
+ "Save file name": "حفظ اسم الملف",
84
+ "Modify": "حور",
85
+ "View model information": "عرض معلومات النموذج",
86
+ "View": "منظر",
87
+ "Model extraction": "استخراج النموذج",
88
+ "Model conversion": "تحويل النموذج",
89
+ "Pth file": "ملف Pth",
90
+ "Output of the pth file": "إخراج ملف pth",
91
+ "# How to Report an Issue on GitHub": "# كيفية الإبلاغ عن مشكلة على GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. انقر فوق الزر \"شاشة التسجيل\" أدناه لبدء تسجيل المشكلة التي تواجهها.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. بمجرد الانتهاء من تسجيل المشكلة ، انقر فوق الزر \"إيقاف التسجيل\" (نفس الزر ، لكن التسمية تتغير اعتمادا على ما إذا كنت تقوم بالتسجيل بنشاط أم لا).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. انتقل إلى [مشكلات GitHub] (https://github.com/IAHispano/Applio/issues) وانقر على زر \"إصدار جديد\".",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. أكمل نموذج المشكلة المقدم ، مع التأكد من تضمين التفاصيل حسب الحاجة ، واستخدم قسم الأصول لتحميل الملف المسجل من الخطوة السابقة.",
96
+ "Record Screen": "شاشة التسجيل",
97
+ "Record": "سجل",
98
+ "Stop Recording": "إيقاف التسجيل",
99
+ "Introduce the model .pth path": "تقديم نموذج مسار .pth",
100
+ "See Model Information": "انظر معلومات النموذج",
101
+ "## Download Model": "## تحميل الموديل",
102
+ "Model Link": "رابط النموذج",
103
+ "Introduce the model link": "تقديم رابط النموذج",
104
+ "Download Model": "ديسكارغار موديلو",
105
+ "## Drop files": "## إسقاط الملفات",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "اسحب ملف .pth وملف .index إلى هذه المساحة. اسحب أحدهما ثم الآخر.",
107
+ "TTS Voices": "أصوات تحويل النص إلى كلام",
108
+ "Text to Synthesize": "النص المراد توليفه",
109
+ "Enter text to synthesize": "أدخل نصا لتوليفه",
110
+ "Output Path for TTS Audio": "مسار الإخراج لصوت TTS",
111
+ "Output Path for RVC Audio": "مسار الإخراج لصوت RVC",
112
+ "Enable Applio integration with Discord presence": "وجود Applio"
113
+ }
assets/i18n/languages/bn_BN.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "আলটিমেট ভয়েস ক্লোনিং টুল, অতুলনীয় শক্তি, মডুলারিটি এবং ব্যবহারকারী-বান্ধব অভিজ্ঞতার জন্য নিখুঁতভাবে অপ্টিমাইজ করা।",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "এই বিভাগে কিছু অতিরিক্ত ইউটিলিটি রয়েছে যা প্রায়শই পরীক্ষামূলক পর্যায়ে থাকতে পারে।",
4
+ "Output Information": "আউটপুট তথ্য",
5
+ "Inference": "অনুমান",
6
+ "Train": "ট্রেন",
7
+ "Extra": "অতিরিক্ত",
8
+ "Merge Audios": "অডিওগুলি মার্জ করুন",
9
+ "Processing": "প্রক্রিয়াকরণ",
10
+ "Audio Analyzer": "অডিও বিশ্লেষক",
11
+ "Model Information": "মডেল তথ্য",
12
+ "Download": "ডাউনলোড",
13
+ "Report a Bug": "একটি বাগ রিপোর্ট করুন",
14
+ "Preprocess": "প্রিপ্রসেস",
15
+ "Model Name": "মডেলের নাম",
16
+ "Enter model name": "মডেলের নাম লিখুন",
17
+ "Dataset Path": "ডেটাসেট পাথ",
18
+ "Enter dataset path": "ডেটাসেটের পথ লিখুন",
19
+ "Sampling Rate": "নমুনা হার",
20
+ "RVC Version": "আরভিসি সংস্করণ",
21
+ "Preprocess Dataset": "প্রিপ্রসেস ডেটাসেট",
22
+ "Extract": "নিষ্কাশন",
23
+ "Hop Length": "হপ দৈর্ঘ্য",
24
+ "Batch Size": "ব্যাচের আকার",
25
+ "Save Every Epoch": "প্রতিটি যুগ সংরক্ষণ করুন",
26
+ "Total Epoch": "মোট যুগ",
27
+ "Pretrained": "পূর্বনির্ধারিত",
28
+ "Save Only Latest": "শুধুমাত্র সর্বশেষ সংরক্ষণ করুন",
29
+ "Save Every Weights": "প্রতিটি ওজন সংরক্ষণ করুন",
30
+ "Custom Pretrained": "কাস্টম প্রিট্রেইনড",
31
+ "Upload Pretrained Model": "প্রিট্রেনড মডেল আপলোড করুন",
32
+ "Pretrained Custom Settings": "পূর্বনির্ধারিত কাস্টম সেটিংস",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "আপনার ফেলে দেওয়া ফাইলটি একটি বৈধ পূর্বপ্রশিক্ষিত ফাইল নয়. অনুগ্রহ করে আবার চেষ্টা করুন।",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "ড্রপডাউন মেনুতে প্রিট্রেনড ফাইলটি দেখতে রিফ্রেশ বোতামটি ক্লিক করুন।",
35
+ "Pretrained G Path": "কাস্টম প্রিট্রেনড জি",
36
+ "Pretrained D Path": "কাস্টম প্রিট্রেনড ডি",
37
+ "GPU Settings": "জিপিইউ সেটিংস",
38
+ "GPU Custom Settings": "GPU কাস্টম সেটিংস",
39
+ "GPU Number": "জিপিইউ নম্বর",
40
+ "0 to ∞ separated by -": "0 থেকে ∞ দ্বারা পৃথক করা হয় -",
41
+ "GPU Information": "জিপিইউ তথ্য",
42
+ "Pitch Guidance": "পিচ গাইডেন্স",
43
+ "Extract Features": "এক্সট্রাক্ট বৈশিষ্ট্য",
44
+ "Start Training": "প্রশিক্ষণ শুরু করুন",
45
+ "Generate Index": "সূচী তৈরি করুন",
46
+ "Voice Model": "ভয়েস মডেল",
47
+ "Index File": "সূচী ফাইল",
48
+ "Refresh": "সতেজ",
49
+ "Unload Voice": "ভয়েস আনলোড করুন",
50
+ "Single": "একক",
51
+ "Upload Audio": "অডিও আপলোড করুন",
52
+ "Select Audio": "অডিও নির্বাচন করুন",
53
+ "Advanced Settings": "উন্নত সেটিংস",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "আউটপুট সাফ করুন (সম্পদ / অডিওতে সমস্ত অডিও মুছে ফেলে)",
55
+ "Custom Output Path": "কাস্টম আউটপুট পাথ",
56
+ "Output Path": "আউটপুট পাথ",
57
+ "Pitch": "পিচ",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "যদি > = 3: ফসল কাটা পিচ ফলাফলগুলিতে মধ্যমা ফিল্টারিং প্রয়োগ করুন। মানটি ফিল্টার ব্যাসার্ধের প্রতিনিধিত্ব করে এবং শ্বাসকষ্ট হ্রাস করতে পারে",
59
+ "Search Feature Ratio": "অনুসন্ধান বৈশিষ্ট্য অনুপাত",
60
+ "Pitch extraction algorithm": "পিচ নিষ্কাশন অ্যালগরিদম",
61
+ "Convert": "রূপান্তর",
62
+ "Export Audio": "অডিও রপ্তানি করুন",
63
+ "Batch": "ব্যাচ",
64
+ "Input Folder": "ইনপুট ফোল্ডার",
65
+ "Enter input path": "ইনপুট পথ লিখুন",
66
+ "Output Folder": "আউটপুট ফোল্ডার",
67
+ "Enter output path": "আউটপুট পথ লিখুন",
68
+ "Get information about the audio": "অডিও সম্পর্কে তথ্য পান",
69
+ "Information about the audio file": "অডিও ফাইল সম্পর্কে তথ্য",
70
+ "Waiting for information...": "তথ্যের অপেক্ষায়...",
71
+ "Model fusion": "মডেল ফিউশন",
72
+ "Weight for Model A": "মডেল এ জন্য ওজন",
73
+ "Whether the model has pitch guidance": "মডেলের পিচ গাইডেন্স আছে কিনা",
74
+ "Model architecture version": "মডেল আর্কিটেকচার সংস্করণ",
75
+ "Path to Model A": "মডেল এ পাথ",
76
+ "Path to Model B": "মডেল বি এর পথ",
77
+ "Path to model": "মডেলের পথ",
78
+ "Model information to be placed": "মডেল তথ্য স্থাপন করা হবে",
79
+ "Fusion": "ফিউশন",
80
+ "Modify model information": "মডেল তথ্য পরিবর্তন করুন",
81
+ "Path to Model": "মডেলের পথ",
82
+ "Model information to be modified": "মডেল তথ্য পরিবর্তন করা হবে",
83
+ "Save file name": "ফাইল নাম সংরক্ষণ করুন",
84
+ "Modify": "পরিবর্তন",
85
+ "View model information": "মডেল তথ্য দেখুন",
86
+ "View": "দর্শন",
87
+ "Model extraction": "মডেল নিষ্কাশন",
88
+ "Model conversion": "মডেল রূপান্তর",
89
+ "Pth file": "Pth ফাইল",
90
+ "Output of the pth file": "পিটিএইচ ফাইলের আউটপুট",
91
+ "# How to Report an Issue on GitHub": "# গিটহাবে একটি সমস্যা কিভাবে রিপোর্ট করবেন",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. আপনি যে সমস্যার সম্মুখীন হচ্ছেন তা রেকর্ড করা শুরু করতে নীচের 'রেকর্ড স্ক্রিন' বোতামে ক্লিক করুন।",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. একবার আপনি সমস্যাটি রেকর্ড করা শেষ করার পরে, 'রেকর্ডিং বন্ধ করুন' বোতামে ক্লিক করুন (একই বোতাম, তবে আপনি সক্রিয়ভাবে রেকর্ড করছেন কিনা তার উপর নির্ভর করে লেবেলটি পরিবর্তিত হয়)।",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "৩. [GitHub Issues](https://github.com/IAHispano/Applio/issues) এ যান এবং 'New Issue' বাটনে ক্লিক করুন।",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. প্রদত্ত ইস্যু টেমপ্লেটটি সম্পূর্ণ করুন, প্রয়োজন অনুসারে বিশদ অন্তর্ভুক্ত করা নিশ্চিত করুন এবং পূর্ববর্তী পদক্ষেপ থেকে রেকর্ড করা ফাইলটি আপলোড করতে সম্পদ বিভাগটি ব্যবহার করুন।",
96
+ "Record Screen": "রেকর্ড স্ক্রিন",
97
+ "Record": "রেকর্ড",
98
+ "Stop Recording": "রেকর্ডিং বন্ধ করুন",
99
+ "Introduce the model .pth path": "মডেল .pth পাথ পরিচয় করিয়ে দিন",
100
+ "See Model Information": "মডেল তথ্য দেখুন",
101
+ "## Download Model": "## মডেল ডাউনলোড করুন",
102
+ "Model Link": "মডেল লিংক",
103
+ "Introduce the model link": "মডেল লিঙ্কটি পরিচয় করিয়ে দিন",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## ফাইল ড্রপ করুন",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "আপনার .pth ফাইল এবং .index ফাইলটি এই স্পেসে টেনে আনুন। একটা টেনে আনুন, তারপর অন্যটা।",
107
+ "TTS Voices": "টিটিএস ভয়েসেস",
108
+ "Text to Synthesize": "সংশ্লেষণ করার জন্য পাঠ্য",
109
+ "Enter text to synthesize": "সংশ্লেষ করতে পাঠ্য লিখুন",
110
+ "Output Path for TTS Audio": "TTS অডিওর জন্য আউটপুট পাথ",
111
+ "Output Path for RVC Audio": "আরভিসি অডিওর জন্য আউটপুট পাথ",
112
+ "Enable Applio integration with Discord presence": "Applio উপস্থিতি"
113
+ }
assets/i18n/languages/de_DE.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Ultimatives Tool zum Klonen von Stimmen, das sorgfältig für unübertroffene Leistung, Modularität und Benutzerfreundlichkeit optimiert wurde.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Dieser Abschnitt enthält einige zusätzliche Dienstprogramme, die sich häufig in experimentellen Phasen befinden.",
4
+ "Output Information": "Informationen zur Ausgabe",
5
+ "Inference": "Schlussfolgerung",
6
+ "Train": "Zug",
7
+ "Extra": "Extra",
8
+ "Merge Audios": "Audios zusammenführen",
9
+ "Processing": "Verarbeitung",
10
+ "Audio Analyzer": "Audio-Analysator",
11
+ "Model Information": "Modell-Informationen",
12
+ "Download": "Herunterladen",
13
+ "Report a Bug": "Einen Fehler melden",
14
+ "Preprocess": "Vorverarbeiten",
15
+ "Model Name": "Modellbezeichnung",
16
+ "Enter model name": "Modellnamen eingeben",
17
+ "Dataset Path": "Datensatz-Pfad",
18
+ "Enter dataset path": "Datensatzpfad eingeben",
19
+ "Sampling Rate": "Samplingrate",
20
+ "RVC Version": "RVC-Ausführung",
21
+ "Preprocess Dataset": "Datensatz vorverarbeiten",
22
+ "Extract": "Auszug",
23
+ "Hop Length": "Hopfen-Länge",
24
+ "Batch Size": "Losgröße",
25
+ "Save Every Epoch": "Rette jede Epoche",
26
+ "Total Epoch": "Epoche insgesamt",
27
+ "Pretrained": "Vortrainiert",
28
+ "Save Only Latest": "Nur die neuesten speichern",
29
+ "Save Every Weights": "Speichern Sie alle Gewichte",
30
+ "Custom Pretrained": "Benutzerdefiniert vortrainiert",
31
+ "Upload Pretrained Model": "Vortrainiertes Modell hochladen",
32
+ "Pretrained Custom Settings": "Vortrainierte benutzerdefinierte Einstellungen",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "Die Datei, die Sie abgelegt haben, ist keine gültige vortrainierte Datei. Bitte versuchen Sie es erneut.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Klicken Sie auf die Schaltfläche \"Aktualisieren\", um die vortrainierte Datei im Dropdown-Menü anzuzeigen.",
35
+ "Pretrained G Path": "Benutzerdefiniertes vortrainiertes G",
36
+ "Pretrained D Path": "Benutzerdefiniertes vortrainiertes D",
37
+ "GPU Settings": "GPU-Einstellungen",
38
+ "GPU Custom Settings": "Benutzerdefinierte GPU-Einstellungen",
39
+ "GPU Number": "GPU-Nummer",
40
+ "0 to ∞ separated by -": "0 bis ∞ getrennt durch -",
41
+ "GPU Information": "GPU-Informationen",
42
+ "Pitch Guidance": "Pitch-Führung",
43
+ "Extract Features": "Extrahieren von Features",
44
+ "Start Training": "Training starten",
45
+ "Generate Index": "Index generieren",
46
+ "Voice Model": "Voice-Modell",
47
+ "Index File": "Index-Datei",
48
+ "Refresh": "Auffrischen",
49
+ "Unload Voice": "Sprache entladen",
50
+ "Single": "Ledig",
51
+ "Upload Audio": "Audio hochladen",
52
+ "Select Audio": "Wählen Sie Audio",
53
+ "Advanced Settings": "Erweiterte Einstellungen",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Ausgänge löschen (Löscht alle Audios in Assets/Audios)",
55
+ "Custom Output Path": "Benutzerdefinierter Ausgabepfad",
56
+ "Output Path": "Ausgabepfad",
57
+ "Pitch": "Pech",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Wenn >=3: Wenden Sie die Medianfilterung auf die geernteten Tonhöhenergebnisse an. Der Wert stellt den Filterradius dar und kann die Atmung reduzieren",
59
+ "Search Feature Ratio": "Such-Feature-Verhältnis",
60
+ "Pitch extraction algorithm": "Algorithmus zur Tonhöhenextraktion",
61
+ "Convert": "Umwandeln",
62
+ "Export Audio": "Audio exportieren",
63
+ "Batch": "Stapel",
64
+ "Input Folder": "Eingabe-Ordner",
65
+ "Enter input path": "Eingabepfad eingeben",
66
+ "Output Folder": "Ausgabe-Ordner",
67
+ "Enter output path": "Ausgabepfad eingeben",
68
+ "Get information about the audio": "Abrufen von Informationen zum Audio",
69
+ "Information about the audio file": "Informationen zur Audiodatei",
70
+ "Waiting for information...": "Warten auf Informationen...",
71
+ "Model fusion": "Modell-Fusion",
72
+ "Weight for Model A": "Gewicht für Modell A",
73
+ "Whether the model has pitch guidance": "Ob das Modell über eine Tonhöhenführung verfügt",
74
+ "Model architecture version": "Version der Modellarchitektur",
75
+ "Path to Model A": "Pfad zu Modell A",
76
+ "Path to Model B": "Pfad zu Modell B",
77
+ "Path to model": "Pfad zum Modell",
78
+ "Model information to be placed": "Zu platzierende Modellinformationen",
79
+ "Fusion": "Verschmelzung",
80
+ "Modify model information": "Ändern von Modellinformationen",
81
+ "Path to Model": "Pfad zum Modell",
82
+ "Model information to be modified": "Zu ändernde Modellinformationen",
83
+ "Save file name": "Dateinamen speichern",
84
+ "Modify": "Modifizieren",
85
+ "View model information": "Anzeigen von Modellinformationen",
86
+ "View": "Ansehen",
87
+ "Model extraction": "Modell-Extraktion",
88
+ "Model conversion": "Modell-Konvertierung",
89
+ "Pth file": "Pth-Datei",
90
+ "Output of the pth file": "Ausgabe der pth-Datei",
91
+ "# How to Report an Issue on GitHub": "# So melden Sie ein Problem auf GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Klicken Sie unten auf die Schaltfläche \"Bildschirm aufzeichnen\", um mit der Aufzeichnung des aufgetretenen Problems zu beginnen.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Wenn Sie mit der Aufnahme des Problems fertig sind, klicken Sie auf die Schaltfläche \"Aufnahme beenden\" (dieselbe Schaltfläche, aber die Beschriftung ändert sich, je nachdem, ob Sie aktiv aufnehmen oder nicht).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Gehen Sie zu [GitHub Issues](https://github.com/IAHispano/Applio/issues) und klicken Sie auf die Schaltfläche \"New Issue\".",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Füllen Sie die bereitgestellte Problemvorlage aus, stellen Sie sicher, dass Sie die erforderlichen Details angeben, und verwenden Sie den Abschnitt \"Assets\", um die aufgezeichnete Datei aus dem vorherigen Schritt hochzuladen.",
96
+ "Record Screen": "Bildschirm aufzeichnen",
97
+ "Record": "Aufzeichnung",
98
+ "Stop Recording": "Aufzeichnung beenden",
99
+ "Introduce the model .pth path": "Einführung in den PTH-Pfad des Modells",
100
+ "See Model Information": "Siehe Modellinformationen",
101
+ "## Download Model": "## Modell herunterladen",
102
+ "Model Link": "Modell-Link",
103
+ "Introduce the model link": "Einführung in die Modellverknüpfung",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## Dateien ablegen",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Ziehen Sie Ihre PTH- und INDEX-Datei in diesen Bereich. Ziehen Sie das eine und dann das andere.",
107
+ "TTS Voices": "TTS-Stimmen",
108
+ "Text to Synthesize": "Zu synthetisierender Text",
109
+ "Enter text to synthesize": "Geben Sie den zu synthetisierenden Text ein",
110
+ "Output Path for TTS Audio": "Ausgabepfad für TTS-Audio",
111
+ "Output Path for RVC Audio": "Ausgabepfad für RVC-Audio",
112
+ "Enable Applio integration with Discord presence": "Applio Präsenz"
113
+ }
assets/i18n/languages/en_US.json ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "This section contains some extra utilities that often may be in experimental phases.",
4
+ "Output Information": "Output Information",
5
+
6
+ "Inference": "Inference",
7
+ "Train": "Train",
8
+ "Extra": "Extra",
9
+ "Merge Audios": "Merge Audios",
10
+ "Processing": "Processing",
11
+ "Audio Analyzer": "Audio Analyzer",
12
+ "Model Information": "Model Information",
13
+ "Download": "Download",
14
+ "Report a Bug": "Report a Bug",
15
+
16
+ "Preprocess": "Preprocess",
17
+ "Model Name": "Model Name",
18
+ "Enter model name": "Enter model name",
19
+ "Dataset Path": "Dataset Path",
20
+ "Dataset Creator": "Dataset Creator",
21
+ "Dataset Name": "Dataset Name",
22
+ "Enter dataset name": "Enter dataset name",
23
+ "Upload Audio Dataset": "Upload Audio Dataset",
24
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "The audio file has been successfully added to the dataset. Please click the preprocess button.",
25
+ "Enter dataset path": "Enter dataset path",
26
+ "Sampling Rate": "Sampling Rate",
27
+ "RVC Version": "RVC Version",
28
+ "Preprocess Dataset": "Preprocess Dataset",
29
+
30
+ "Extract": "Extract",
31
+ "Hop Length": "Hop Length",
32
+ "Batch Size": "Batch Size",
33
+ "Save Every Epoch": "Save Every Epoch",
34
+ "Total Epoch": "Total Epoch",
35
+ "Pretrained": "Pretrained",
36
+ "Save Only Latest": "Save Only Latest",
37
+ "Save Every Weights": "Save Every Weights",
38
+ "Custom Pretrained": "Custom Pretrained",
39
+ "Upload Pretrained Model": "Upload Pretrained Model",
40
+ "Pretrained Custom Settings": "Pretrained Custom Settings",
41
+ "The file you dropped is not a valid pretrained file. Please try again.": "The file you dropped is not a valid pretrained file. Please try again.",
42
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Click the refresh button to see the pretrained file in the dropdown menu.",
43
+ "Pretrained G Path": "Custom Pretrained G",
44
+ "Pretrained D Path": "Custom Pretrained D",
45
+ "GPU Settings": "GPU Settings",
46
+ "GPU Custom Settings": "GPU Custom Settings",
47
+ "GPU Number": "GPU Number",
48
+ "0 to ∞ separated by -": "0 to ∞ separated by -",
49
+ "GPU Information": "GPU Information",
50
+ "Pitch Guidance": "Pitch Guidance",
51
+ "Extract Features": "Extract Features",
52
+
53
+ "Start Training": "Start Training",
54
+ "Generate Index": "Generate Index",
55
+
56
+ "Voice Model": "Voice Model",
57
+ "Index File": "Index File",
58
+ "Refresh": "Refresh",
59
+ "Unload Voice": "Unload Voice",
60
+
61
+ "Single": "Single",
62
+ "Upload Audio": "Upload Audio",
63
+ "Select Audio": "Select Audio",
64
+ "Advanced Settings": "Advanced Settings",
65
+ "Clear Outputs (Deletes all audios in assets/audios)": "Clear Outputs (Deletes all audios in assets/audios)",
66
+ "Custom Output Path": "Custom Output Path",
67
+ "Output Path": "Output Path",
68
+ "Split Audio": "Split Audio",
69
+ "Pitch": "Pitch",
70
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness",
71
+ "Search Feature Ratio": "Search Feature Ratio",
72
+ "Pitch extraction algorithm": "Pitch extraction algorithm",
73
+ "Convert": "Convert",
74
+ "Export Audio": "Export Audio",
75
+
76
+ "Batch": "Batch",
77
+ "Input Folder": "Input Folder",
78
+ "Enter input path": "Enter input path",
79
+ "Output Folder": "Output Folder",
80
+ "Enter output path": "Enter output path",
81
+
82
+ "Get information about the audio": "Get information about the audio",
83
+ "Information about the audio file": "Information about the audio file",
84
+ "Waiting for information...": "Waiting for information...",
85
+
86
+ "Model fusion": "Model fusion",
87
+ "Weight for Model A": "Weight for Model A",
88
+ "Whether the model has pitch guidance": "Whether the model has pitch guidance",
89
+ "Model architecture version": "Model architecture version",
90
+ "Path to Model A": "Path to Model A",
91
+ "Path to Model B": "Path to Model B",
92
+ "Path to model": "Path to model",
93
+ "Model information to be placed": "Model information to be placed",
94
+ "Fusion": "Fusion",
95
+
96
+ "Modify model information": "Modify model information",
97
+ "Path to Model": "Path to Model",
98
+ "Model information to be modified": "Model information to be modified",
99
+ "Save file name": "Save file name",
100
+ "Modify": "Modify",
101
+
102
+ "View model information": "View model information",
103
+ "View": "View",
104
+ "Model extraction": "Model extraction",
105
+ "Model conversion": "Model conversion",
106
+ "Pth file": "Pth file",
107
+ "Output of the pth file": "Output of the pth file",
108
+
109
+ "# How to Report an Issue on GitHub": "# How to Report an Issue on GitHub",
110
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.",
111
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).",
112
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.",
113
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.",
114
+
115
+ "Record Screen": "Record Screen",
116
+ "Record": "Record",
117
+ "Stop Recording": "Stop Recording",
118
+
119
+ "Introduce the model .pth path": "Introduce the model .pth path",
120
+ "See Model Information": "See Model Information",
121
+
122
+ "## Download Model": "## Download Model",
123
+ "Model Link": "Model Link",
124
+ "Introduce the model link": "Introduce the model link",
125
+ "Download Model": "Descargar Modelo",
126
+ "## Drop files": "## Drop files",
127
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Drag your .pth file and .index file into this space. Drag one and then the other.",
128
+
129
+ "TTS Voices": "TTS Voices",
130
+ "Text to Synthesize": "Text to Synthesize",
131
+ "Enter text to synthesize": "Enter text to synthesize",
132
+ "Output Path for TTS Audio": "Output Path for TTS Audio",
133
+ "Output Path for RVC Audio": "Output Path for RVC Audio",
134
+ "Enable Applio integration with Discord presence": "Enable Applio integration with Discord presence"
135
+ }
assets/i18n/languages/es_ES.json ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "La herramienta de clonación de voz definitiva, meticulosamente optimizada para tener potencia, modularidad y experiencia de uso inigualable.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Esta sección contiene algunas utilidades adicionales que a menudo pueden estar en fases experimentales.",
4
+ "Output Information": "Información",
5
+ "Inference": "Inferencia",
6
+ "Train": "Entrenamiento",
7
+ "Extra": "Extra",
8
+ "Merge Audios": "Fusionar audios",
9
+ "Processing": "Procesamiento",
10
+ "Audio Analyzer": "Analizador de audio",
11
+ "Model Information": "Información del modelo",
12
+ "Download": "Descargar",
13
+ "Report a Bug": "Reportar un fallo",
14
+ "Preprocess": "Preprocesar",
15
+ "Model Name": "Nombre del modelo",
16
+ "Enter model name": "Introduzca el nombre del modelo",
17
+ "Dataset Path": "Ruta del dataset",
18
+ "Dataset Creator": "Creador de datasets",
19
+ "Dataset Name": "Nombre del dataset",
20
+ "Enter dataset name": "Introduce el nombre de tu dataset",
21
+ "Upload Audio Dataset": "Sube el audio del dataset",
22
+ "Enter dataset path": "Introduzca la ruta del dataset",
23
+ "Sampling Rate": "Frecuencia de muestreo",
24
+ "RVC Version": "Versión RVC",
25
+ "Preprocess Dataset": "Procesar dataset",
26
+ "Extract": "Extraer",
27
+ "Hop Length": "Longitud del salto",
28
+ "Batch Size": "Batch Size",
29
+ "Save Every Epoch": "Frecuencia de guardado",
30
+ "Total Epoch": "Epochs totales",
31
+ "Pretrained": "Preentrenado",
32
+ "Save Only Latest": "Guardar solo lo último",
33
+ "Save Every Weights": "Guardar en cada punto de guardado",
34
+ "Custom Pretrained": "Preentrenado personalizado",
35
+ "Upload Pretrained Model": "Cargar modelo previamente entrenado",
36
+ "Pretrained Custom Settings": "Configuración personalizada previamente entrenada",
37
+ "The file you dropped is not a valid pretrained file. Please try again.": "El archivo que ha eliminado no es un archivo preentrenado válido. Por favor, inténtelo de nuevo.",
38
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Haga clic en el botón de actualización para ver el archivo previamente entrenado en el menú desplegable.",
39
+ "Pretrained G Path": "G preentrenado personalizado",
40
+ "Pretrained D Path": "D preentrenado personalizado",
41
+ "GPU Settings": "Configuración de GPU",
42
+ "GPU Custom Settings": "Configuración personalizada de la GPU",
43
+ "GPU Number": "Número de GPU",
44
+ "0 to ∞ separated by -": "0 a ∞ separados por -",
45
+ "GPU Information": "Información de GPU",
46
+ "Pitch Guidance": "Guía de tono",
47
+ "Extract Features": "Extraer características",
48
+ "Start Training": "Empezar a entrenar",
49
+ "Generate Index": "Generar índice",
50
+ "Voice Model": "Modelo de voz",
51
+ "Index File": "Archivo de índice",
52
+ "Refresh": "Actualizar",
53
+ "Unload Voice": "Eliminar voz",
54
+ "Single": "Individual",
55
+ "Upload Audio": "Subir audio",
56
+ "Select Audio": "Seleccionar audio",
57
+ "Advanced Settings": "Ajustes avanzados",
58
+ "Clear Outputs (Deletes all audios in assets/audios)": "Borrar resultados (elimina todos los audios de los assets/audios)",
59
+ "Custom Output Path": "Ruta de salida personalizada",
60
+ "Output Path": "Ruta de salida",
61
+ "Split Audio": "Audio dividido",
62
+ "Pitch": "Tono",
63
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Si >=3: aplique el filtrado de la mediana a los resultados de la parcela cosechada. El valor representa el radio del filtro y puede reducir la respiración",
64
+ "Search Feature Ratio": "Relación de características de búsqueda",
65
+ "Pitch extraction algorithm": "Algoritmo de extracción de tono",
66
+ "Convert": "Convertir",
67
+ "Export Audio": "Exportar audio",
68
+ "Batch": "Lote",
69
+ "Input Folder": "Carpeta de entrada",
70
+ "Enter input path": "Introduzca la ruta de entrada",
71
+ "Output Folder": "Carpeta de salida",
72
+ "Enter output path": "Introduzca la ruta de salida",
73
+ "Get information about the audio": "Obtener información sobre el audio",
74
+ "Information about the audio file": "Información sobre el archivo de audio",
75
+ "Waiting for information...": "A la espera de la información...",
76
+ "Model fusion": "Fusión de modelos",
77
+ "Weight for Model A": "Peso del modelo A",
78
+ "Whether the model has pitch guidance": "Si el modelo tiene un guía de tono",
79
+ "Model architecture version": "Versión de la arquitectura del modelo",
80
+ "Path to Model A": "Ruta al modelo A",
81
+ "Path to Model B": "Ruta al modelo B",
82
+ "Path to model": "Ruta de acceso al modelo",
83
+ "Model information to be placed": "Información del modelo que se va a colocar",
84
+ "Fusion": "Fusión",
85
+ "Modify model information": "Modificar la información del modelo",
86
+ "Path to Model": "Ruta al modelo",
87
+ "Model information to be modified": "Información del modelo que se va a modificar",
88
+ "Save file name": "Guardar el nombre del archivo",
89
+ "Modify": "Modificar",
90
+ "View model information": "Ver información del modelo",
91
+ "View": "Ver",
92
+ "Model extraction": "Extracción de modelos",
93
+ "Model conversion": "Conversión de modelos",
94
+ "Pth file": "Archivo pth",
95
+ "Output of the pth file": "Salida del archivo pth",
96
+ "# How to Report an Issue on GitHub": "# Como reportar un fallo en GitHub",
97
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Haga clic en el botón 'Grabar pantalla' a continuación para comenzar a grabar el problema que está experimentando.",
98
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Una vez que haya terminado de grabar el problema, haga clic en el botón 'Detener grabación' (el mismo botón, pero la etiqueta cambia dependiendo de si está grabando activamente o no).",
99
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Vaya a [Problemas de GitHub](https://github.com/IAHispano/Applio/issues) y haga clic en el botón 'Nuevo problema'.",
100
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Complete la plantilla de problema proporcionada, asegurándose de incluir los detalles según sea necesario, y utilice la sección de activos para cargar el archivo grabado del paso anterior.",
101
+ "Record Screen": "Grabar pantalla",
102
+ "Record": "Grabar",
103
+ "Stop Recording": "Detener la grabación",
104
+ "Introduce the model .pth path": "Introduce de la ruta del .pth del modelo",
105
+ "See Model Information": "Ver información del modelo",
106
+ "## Download Model": "## Descargar modelo",
107
+ "Model Link": "Enlace de modelo",
108
+ "Introduce the model link": "Introducir el enlace del modelo",
109
+ "Download Model": "Download Model",
110
+ "## Drop files": "## Soltar archivos",
111
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Arrastre el archivo .pth y el archivo .index a este espacio. Arrastre uno y luego el otro.",
112
+ "TTS Voices": "Voces TTS",
113
+ "Text to Synthesize": "Texto a sintetizar",
114
+ "Enter text to synthesize": "Introduzca el texto a sintetizar",
115
+ "Output Path for TTS Audio": "Ruta de salida para el audio TTS",
116
+ "Output Path for RVC Audio": "Ruta de salida para el audio RVC",
117
+ "Enable Applio integration with Discord presence": "Habilita la integración de Applio con la presencia de Discord"
118
+ }
assets/i18n/languages/fa_FA.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "ابزار شبیه سازی صدا نهایی، با دقت برای قدرت بی نظیر، مدولار بودن و تجربه کاربر پسند بهینه شده است.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "این بخش شامل برخی از ابزارهای اضافی است که اغلب ممکن است در مراحل ازمایشی باشد.",
4
+ "Output Information": "اطلاعات خروجی",
5
+ "Inference": "استنباط",
6
+ "Train": "قطار",
7
+ "Extra": "اضافی",
8
+ "Merge Audios": "ادغام Audios",
9
+ "Processing": "پردازش",
10
+ "Audio Analyzer": "انالایزر صوتی",
11
+ "Model Information": "اطلاعات مدل",
12
+ "Download": "دانلود",
13
+ "Report a Bug": "گزارش یک باگ",
14
+ "Preprocess": "پیش پردازش",
15
+ "Model Name": "نام مدل",
16
+ "Enter model name": "نام مدل را وارد کنید",
17
+ "Dataset Path": "مسیر مجموعه داده",
18
+ "Enter dataset path": "وارد کردن مسیر مجموعه داده ها",
19
+ "Sampling Rate": "نرخ نمونه برداری",
20
+ "RVC Version": "نسخه RVC",
21
+ "Preprocess Dataset": "مجموعه داده پیش پردازش",
22
+ "Extract": "عصاره",
23
+ "Hop Length": "طول هاپ",
24
+ "Batch Size": "اندازه دسته",
25
+ "Save Every Epoch": "ذخیره هر عصر",
26
+ "Total Epoch": "کل اپک",
27
+ "Pretrained": "پیش اموزش دیده",
28
+ "Save Only Latest": "ذخیره فقط اخرین",
29
+ "Save Every Weights": "صرفه جویی در هر وزن",
30
+ "Custom Pretrained": "سفارشی پیش اموزش دیده",
31
+ "Upload Pretrained Model": "اپلود مدل از پیش اموزش دیده",
32
+ "Pretrained Custom Settings": "تنظیمات سفارشی از پیش اموزش داده شده",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "پرونده ای که حذف کرده اید یک پرونده از پیش اموزش داده شده معتبر نیست. لطفا دوباره تلاش کنید.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "با کلیک بر روی دکمه تازه کردن برای دیدن فایل از پیش اموزش دیده در منوی کشویی.",
35
+ "Pretrained G Path": "سفارشی پیش اموزش G",
36
+ "Pretrained D Path": "سفارشی از پیش اموزش دیده D",
37
+ "GPU Settings": "تنظیمات GPU",
38
+ "GPU Custom Settings": "تنظیمات سفارشی GPU",
39
+ "GPU Number": "شماره GPU",
40
+ "0 to ∞ separated by -": "0 به ∞ جدا شده توسط -",
41
+ "GPU Information": "اطلاعات GPU",
42
+ "Pitch Guidance": "راهنمای زمین",
43
+ "Extract Features": "استخراج ویژگی ها",
44
+ "Start Training": "شروع اموزش",
45
+ "Generate Index": "ایجاد نمایه",
46
+ "Voice Model": "مدل صوتی",
47
+ "Index File": "پروندۀ نمایه",
48
+ "Refresh": "نوسازی",
49
+ "Unload Voice": "بارگیری صدا",
50
+ "Single": "تک",
51
+ "Upload Audio": "بارگذاری صدا",
52
+ "Select Audio": "انتخاب صدا",
53
+ "Advanced Settings": "تنظیمات پیشرفته",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "پاک کردن خروجی ها (حذف تمام فایل های صوتی در دارایی ها / audios)",
55
+ "Custom Output Path": "مسیر خروجی سفارشی",
56
+ "Output Path": "مسیر خروجی",
57
+ "Pitch": "زمین",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "اگر > = 3: اعمال فیلتر متوسط به نتایج زمین برداشت. مقدار نشان دهنده شعاع فیلتر است و می تواند تنفس را کاهش دهد",
59
+ "Search Feature Ratio": "نسبت ویژگی جستجو",
60
+ "Pitch extraction algorithm": "الگوریتم استخراج زمین",
61
+ "Convert": "تبدیل",
62
+ "Export Audio": "صادرات صدا",
63
+ "Batch": "دسته",
64
+ "Input Folder": "پوشه ورودی",
65
+ "Enter input path": "وارد کردن مسیر ورودی",
66
+ "Output Folder": "پوشۀ خروجی",
67
+ "Enter output path": "وارد کردن مسیر خروجی",
68
+ "Get information about the audio": "دریافت اطلاعات در مورد صدا",
69
+ "Information about the audio file": "اطلاعات مربوط به فایل صوتی",
70
+ "Waiting for information...": "در انتظار اطلاعات...",
71
+ "Model fusion": "فیوژن مدل",
72
+ "Weight for Model A": "وزن مدل A",
73
+ "Whether the model has pitch guidance": "اگر مدل دارای راهنمایی است",
74
+ "Model architecture version": "نسخه معماری مدل",
75
+ "Path to Model A": "مسیر مدل A",
76
+ "Path to Model B": "مسیر مدل B",
77
+ "Path to model": "مسیر مدل",
78
+ "Model information to be placed": "اطلاعات مدل قرار داده می شود",
79
+ "Fusion": "همجوشی",
80
+ "Modify model information": "تغییر اطلاعات مدل",
81
+ "Path to Model": "مسیر به مدل",
82
+ "Model information to be modified": "اطلاعات مدل باید اصلاح شود",
83
+ "Save file name": "ذخیرۀ نام پرونده",
84
+ "Modify": "تغییر",
85
+ "View model information": "مشاهده اطلاعات مدل",
86
+ "View": "مشاهده",
87
+ "Model extraction": "استخراج مدل",
88
+ "Model conversion": "تبدیل مدل",
89
+ "Pth file": "پرونده Pth",
90
+ "Output of the pth file": "خروجی پروندۀ pth",
91
+ "# How to Report an Issue on GitHub": "# چگونه یک مشکل را در GitHub گزارش دهیم",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. با کلیک بر روی 'ضبط صفحه نمایش' دکمه زیر برای شروع ضبط مسئله شما در حال تجربه.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. هنگامی که ضبط مسئله را به پایان رساندید، بر روی دکمه \"توقف ضبط\" کلیک کنید (همان دکمه، اما برچسب بسته به اینکه ایا شما به طور فعال ضبط می کنید یا نه تغییر می کند).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. به [GitHub Issues] (https://github.com/IAHispano/Applio/issues) بروید و بر روی دکمه \"New Issue\" کلیک کنید.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. تکمیل قالب موضوع ارائه شده، اطمینان حاصل شود که شامل جزئیات در صورت نیاز، و استفاده از بخش دارایی برای اپلود فایل ضبط شده از مرحله قبلی.",
96
+ "Record Screen": "صفحه ضبط",
97
+ "Record": "رکورد",
98
+ "Stop Recording": "توقف ضبط",
99
+ "Introduce the model .pth path": "معرفی مسیر .pth مدل",
100
+ "See Model Information": "مشاهده اطلاعات مدل",
101
+ "## Download Model": "## دانلود مدل",
102
+ "Model Link": "پیوند مدل",
103
+ "Introduce the model link": "معرفی لینک مدل",
104
+ "Download Model": "دکارگار مدلو",
105
+ "## Drop files": "## رها کردن پروندهها",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "فایل .pth و .index خود را به این فضا بکشید. یکی را بکشید و سپس دیگری را بکشید.",
107
+ "TTS Voices": "TTS صداها",
108
+ "Text to Synthesize": "متن برای سنتز",
109
+ "Enter text to synthesize": "متن را برای سنتز وارد کنید",
110
+ "Output Path for TTS Audio": "مسیر خروجی برای صدای TTS",
111
+ "Output Path for RVC Audio": "مسیر خروجی برای RVC Audio",
112
+ "Enable Applio integration with Discord presence": "حضور Applio"
113
+ }
assets/i18n/languages/fr_FR.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Outil ultime de clonage vocal, méticuleusement optimisé pour une puissance, une modularité et une expérience utilisateur inégalées.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Cette section contient des utilitaires supplémentaires qui sont souvent en phase expérimentale.",
4
+ "Output Information": "Informations de sortie",
5
+ "Inference": "Inférence",
6
+ "Train": "Entraîner",
7
+ "Extra": "Extras",
8
+ "Merge Audios": "Fusionner les audios",
9
+ "Processing": "Traitement",
10
+ "Audio Analyzer": "Analyseur audio",
11
+ "Model Information": "Informations sur le modèle",
12
+ "Download": "Télécharger",
13
+ "Report a Bug": "Signaler un bug",
14
+ "Preprocess": "Prétraitement",
15
+ "Model Name": "Nom du modèle",
16
+ "Enter model name": "Entrez le nom du modèle",
17
+ "Dataset Path": "Chemin du jeu de données",
18
+ "Enter dataset path": "Entrez le chemin du jeu de données",
19
+ "Sampling Rate": "Fréquence d'échantillonnage",
20
+ "RVC Version": "Version RVC",
21
+ "Preprocess Dataset": "Prétraiter le jeu de données",
22
+ "Extract": "Extraire",
23
+ "Hop Length": "Longueur de saut (hop)",
24
+ "Batch Size": "Taille du lot (batch)",
25
+ "Save Every Epoch": "Sauvegarder à chaque epoch",
26
+ "Total Epoch": "Nombre total d'epochs",
27
+ "Pretrained": "Pré-entraîné",
28
+ "Save Only Latest": "Sauvegarder uniquement le dernier",
29
+ "Save Every Weights": "Sauvegarder tous les poids",
30
+ "Custom Pretrained": "Pré-entraîné personnalisé",
31
+ "Upload Pretrained Model": "Télécharger un modèle pré-entraîné",
32
+ "Pretrained Custom Settings": "Paramètres personnalisés de pré-entraînement",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "Le fichier que vous avez déposé n'est pas un fichier pré-entraîné valide. Veuillez réessayer.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Cliquez sur le bouton d'actualisation pour voir le fichier pré-entraîné dans le menu déroulant.",
35
+ "Pretrained G Path": "Chemin G pré-entraîné",
36
+ "Pretrained D Path": "Chemin D pré-entraîné",
37
+ "GPU Settings": "Paramètres du GPU",
38
+ "GPU Custom Settings": "Paramètres personnalisés du GPU",
39
+ "GPU Number": "Numéro de GPU",
40
+ "0 to ∞ separated by -": "De 0 à ∞ séparés par -",
41
+ "GPU Information": "Informations GPU",
42
+ "Pitch Guidance": "Guidage de hauteur",
43
+ "Extract Features": "Extraire les caractéristiques",
44
+ "Start Training": "Démarrer l'entraînement",
45
+ "Generate Index": "Générer un index",
46
+ "Voice Model": "Modèle vocal",
47
+ "Index File": "Fichier d'index",
48
+ "Refresh": "Rafraîchir",
49
+ "Unload Voice": "Décharger la voix",
50
+ "Single": "Fichier individuel",
51
+ "Upload Audio": "Télécharger l'audio",
52
+ "Select Audio": "Sélectionner l'audio",
53
+ "Advanced Settings": "Paramètres avancés",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Effacer les sorties (supprime tous les audios dans assets/audios)",
55
+ "Custom Output Path": "Chemin de sortie personnalisé",
56
+ "Output Path": "Chemin de sortie",
57
+ "Pitch": "Hauteur",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Si >=3 : appliquer un filtrage médian aux résultats de hauteur récoltés. La valeur représente le rayon du filtre et peut réduire le souffle",
59
+ "Search Feature Ratio": "Rapport de Caractéristiques de Recherche",
60
+ "Pitch extraction algorithm": "Algorithme d'extraction de hauteur",
61
+ "Convert": "Convertir",
62
+ "Export Audio": "Exporter l'audio",
63
+ "Batch": "Traitement par lots (batch)",
64
+ "Input Folder": "Dossier d'entrée",
65
+ "Enter input path": "Entrez le chemin d'entrée",
66
+ "Output Folder": "Dossier de sortie",
67
+ "Enter output path": "Entrez le chemin de sortie",
68
+ "Get information about the audio": "Obtenir des informations sur l'audio",
69
+ "Information about the audio file": "Informations sur le fichier audio",
70
+ "Waiting for information...": "En attente d'informations...",
71
+ "Model fusion": "Fusion de modèles",
72
+ "Weight for Model A": "Poids pour le modèle A",
73
+ "Whether the model has pitch guidance": "Si le modèle a un guidage de hauteur",
74
+ "Model architecture version": "Version de l'architecture du modèle",
75
+ "Path to Model A": "Chemin vers le modèle A",
76
+ "Path to Model B": "Chemin vers le modèle B",
77
+ "Path to model": "Chemin vers le modèle",
78
+ "Model information to be placed": "Informations sur le modèle à placer",
79
+ "Fusion": "Fusion",
80
+ "Modify model information": "Modifier les informations du modèle",
81
+ "Path to Model": "Chemin vers le modèle",
82
+ "Model information to be modified": "Informations sur le modèle à modifier",
83
+ "Save file name": "Nom de fichier à sauvegarder",
84
+ "Modify": "Modifier",
85
+ "View model information": "Voir les informations du modèle",
86
+ "View": "Voir",
87
+ "Model extraction": "Extraction de modèle",
88
+ "Model conversion": "Conversion de modèle",
89
+ "Pth file": "Fichier Pth",
90
+ "Output of the pth file": "Sortie du fichier Pth",
91
+ "# How to Report an Issue on GitHub": "# Comment signaler un problème sur GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Cliquez sur le bouton 'Enregistrer l'écran' ci-dessous pour commencer à enregistrer le problème rencontré.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Une fois l'enregistrement du problème terminé, cliquez sur le bouton 'Arrêter l'enregistrement'.",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Rendez-vous sur [GitHub Issues](https://github.com/IAHispano/Applio/issues) et cliquez sur le bouton 'New Issue'.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Remplissez le modèle de problème fourni, en veillant à inclure les détails nécessaires et utilisez la section des ressources pour télécharger le fichier enregistré à l'étape précédente.",
96
+ "Record Screen": "Enregistrer l'écran",
97
+ "Record": "Enregistrer",
98
+ "Stop Recording": "Arrêter l'enregistrement",
99
+ "Introduce the model .pth path": "Saisissez le chemin du fichier .pth du modèle",
100
+ "See Model Information": "Voir les informations du modèle",
101
+ "## Download Model": "## Télécharger le modèle",
102
+ "Model Link": "Lien du modèle",
103
+ "Introduce the model link": "Saisissez le lien du modèle",
104
+ "Download Model": "Télécharger le modèle",
105
+ "## Drop files": "## Déposer des fichiers",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Glissez votre fichier .pth et votre fichier .index dans cet espace. Glissez l'un puis l'autre.",
107
+ "TTS Voices": "Voix TTS",
108
+ "Text to Synthesize": "Texte à synthétiser",
109
+ "Enter text to synthesize": "Saisissez le texte à synthétiser",
110
+ "Output Path for TTS Audio": "Chemin de sortie pour l'audio TTS",
111
+ "Output Path for RVC Audio": "Chemin de sortie pour l'audio RVC",
112
+ "Enable Applio integration with Discord presence": "Présence d'Applio"
113
+ }
assets/i18n/languages/gu_GU.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "અંતિમ વોઇસ ક્લોનિંગ ટૂલ, જે અજોડ શક્તિ, મોડ્યુલારિટી અને વપરાશકર્તા-મૈત્રીપૂર્ણ અનુભવ માટે સાવચેતીપૂર્વક ઓપ્ટિમાઇઝ કરવામાં આવ્યું છે.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "આ વિભાગમાં કેટલીક વધારાની ઉપયોગિતાઓ છે જે ઘણીવાર પ્રાયોગિક તબક્કામાં હોઈ શકે છે.",
4
+ "Output Information": "આઉટપુટ જાણકારી",
5
+ "Inference": "અનુમાન",
6
+ "Train": "રેલગાડી",
7
+ "Extra": "વધારાનું",
8
+ "Merge Audios": "ઓડિયો ભેગા કરો",
9
+ "Processing": "પ્રક્રિયા કરી રહ્યા છીએ",
10
+ "Audio Analyzer": "ઓડિયો વિશ્લેષક",
11
+ "Model Information": "મોડેલ જાણકારી",
12
+ "Download": "ડાઉનલોડ",
13
+ "Report a Bug": "ભૂલનો અહેવાલ આપો",
14
+ "Preprocess": "પ્રીપ્રોસેસ",
15
+ "Model Name": "મોડેલ નામ",
16
+ "Enter model name": "મોડેલ નામ દાખલ કરો",
17
+ "Dataset Path": "ડેટાસેટ પાથ",
18
+ "Enter dataset path": "ડેટાસેટ પાથને દાખલ કરો",
19
+ "Sampling Rate": "નમૂનાનો દર",
20
+ "RVC Version": "RVC આવૃત્તિ",
21
+ "Preprocess Dataset": "પ્રીપ્રોસેસ ડેટાસેટ",
22
+ "Extract": "અર્ક કાઢો",
23
+ "Hop Length": "હોપ લંબાઈ",
24
+ "Batch Size": "બેચ માપ",
25
+ "Save Every Epoch": "દરેક ઈપોકનો સંગ્રહ કરો",
26
+ "Total Epoch": "કુલ ઈપોક",
27
+ "Pretrained": "પૂર્વપ્રશિક્ષિત",
28
+ "Save Only Latest": "ફક્ત તાજેતરનાં ને સંગ્રહો",
29
+ "Save Every Weights": "દરેક વજનોને બચાવો",
30
+ "Custom Pretrained": "વૈવિધ્યપૂર્ણ પૂર્વટ્રેઈન થયેલ",
31
+ "Upload Pretrained Model": "પહેલેથી પ્રશિક્ષિત મોડેલ અપલોડ કરો",
32
+ "Pretrained Custom Settings": "પહેલેથી પ્રશિક્ષિત વૈવિધ્યપૂર્ણ સુયોજનો",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "તમે મૂકેલી ફાઇલ એ યોગ્ય પૂર્વતાલીમવાળી ફાઇલ નથી. કૃપા કરીને ફરી પ્રયાસ કરો.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "ડ્રોપડાઉન મેનુમાં પહેલેથી તાલીમ લીધેલ ફાઈલ જોવા માટે રિફ્રેશ બટન પર ક્લિક કરો.",
35
+ "Pretrained G Path": "વૈવિધ્યપૂર્ણ પૂર્વપ્રશિક્ષિત G",
36
+ "Pretrained D Path": "વૈવિધ્યપૂર્ણ પૂર્વપ્રશિક્ષિત D",
37
+ "GPU Settings": "GPU સુયોજનો",
38
+ "GPU Custom Settings": "GPU કસ્ટમ સુયોજનો",
39
+ "GPU Number": "GPU નંબર",
40
+ "0 to ∞ separated by -": "0 થી ∞ આના દ્વારા અલગ પાડવામાં આવે છે -",
41
+ "GPU Information": "GPU જાણકારી",
42
+ "Pitch Guidance": "પિચ માર્ગદર્શન",
43
+ "Extract Features": "લક્ષણોનો અર્ક કાઢો",
44
+ "Start Training": "તાલીમ શરૂ કરો",
45
+ "Generate Index": "અનુક્રમણિકા બનાવો",
46
+ "Voice Model": "અવાજ મોડેલ",
47
+ "Index File": "અનુક્રમણિકા ફાઇલ",
48
+ "Refresh": "પુનઃતાજું કરો",
49
+ "Unload Voice": "અવાજ અનલોડ કરો",
50
+ "Single": "એકલું",
51
+ "Upload Audio": "ઓડિયો અપલોડ કરો",
52
+ "Select Audio": "ઓડિયો પસંદ કરો",
53
+ "Advanced Settings": "અદ્યતન સુયોજનો",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "આઉટપુટ સાફ કરો (સંપત્તિઓ/ઓડિયોમાં બધા ઓડિયો કાઢી નાંખે છે)",
55
+ "Custom Output Path": "કસ્ટમ આઉટપુટ પાથ",
56
+ "Output Path": "આઉટપુટ પાથ",
57
+ "Pitch": "પિચ",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "જા >=૩ હોય તોઃ કાપણી કરેલી પિચના પરિણામો પર મધ્યક ફિલ્ટરિંગ લગાવો. મૂલ્ય ફિલ્ટર ત્રિજ્યાને રજૂ કરે છે અને શ્વાસ રુંધાઇ શકે છે",
59
+ "Search Feature Ratio": "શોધ લક્ષણ ગુણોત્તર",
60
+ "Pitch extraction algorithm": "પિચ નિષ્કર્ષણ અલગોરિધમ",
61
+ "Convert": "રૂપાંતર કરો",
62
+ "Export Audio": "ઓડિયો નિકાસ કરો",
63
+ "Batch": "બેચ",
64
+ "Input Folder": "ઇનપુટ ફોલ્ડર",
65
+ "Enter input path": "ઇનપુટ પાથને દાખલ કરો",
66
+ "Output Folder": "આઉટપુટ ફોલ્ડર",
67
+ "Enter output path": "આઉટપુટ પાથ દાખલ કરો",
68
+ "Get information about the audio": "ઓડિયો વિશે જાણકારી મેળવો",
69
+ "Information about the audio file": "ઓડિયો ફાઈલ વિશેની માહિતી",
70
+ "Waiting for information...": "જાણકારી માટે રાહ જોઇ રહ્યા છીએ...",
71
+ "Model fusion": "મોડેલ ફ્યુઝન",
72
+ "Weight for Model A": "મોડેલ A માટે વજન",
73
+ "Whether the model has pitch guidance": "શું મોડેલને પિચ માર્ગદર્શન છે",
74
+ "Model architecture version": "મોડેલ આર્કિટેક્ચર આવૃત્તિ",
75
+ "Path to Model A": "મોડેલ A નો પાથ",
76
+ "Path to Model B": "પાથ ટુ મોડેલ B",
77
+ "Path to model": "મોડેલનો પાથ",
78
+ "Model information to be placed": "મૂકવાની મોડેલ માહિતી",
79
+ "Fusion": "ફ્યુઝન",
80
+ "Modify model information": "મોડેલ જાણકારીમાં ફેરફાર કરો",
81
+ "Path to Model": "મોડેલનો પાથ",
82
+ "Model information to be modified": "બદલવા માટેના મોડેલ જાણકારી",
83
+ "Save file name": "ફાઇલ નામને સંગ્રહો",
84
+ "Modify": "બદલો",
85
+ "View model information": "મોડેલ જાણકારી જુઓ",
86
+ "View": "જુઓ",
87
+ "Model extraction": "મોડેલ નિષ્કર્ષણ",
88
+ "Model conversion": "મોડેલ રૂપાંતરણ",
89
+ "Pth file": "Pth ફાઈલ",
90
+ "Output of the pth file": "pth ફાઇલનું આઉટપુટ",
91
+ "# How to Report an Issue on GitHub": "# GitHub પર કોઈ સમસ્યાની જાણ કેવી રીતે કરવી",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. તમે જે સમસ્યાનો સામનો કરી રહ્યા છો તેને રેકોર્ડ કરવાનું શરૂ કરવા માટે નીચે આપેલા 'રેકોર્ડ સ્ક્રીન' બટન પર ક્લિક કરો.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. એક વખત તમે સમસ્યાનું રેકોર્ડિંગ પૂરું કરી લો એટલે 'સ્ટોપ રેકોર્ડિંગ' બટન પર ક્લિક કરો (આ જ બટન, પરંતુ તમે સક્રિયપણે રેકોર્ડિંગ કરી રહ્યા છો કે નહીં તેના આધારે લેબલ બદલાય છે).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub issues] (https://github.com/IAHispano/Applio/issues) પર જાઓ અને 'ન્યૂ ઇશ્યૂ' બટન પર ક્લિક કરો.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. પૂરી પાડવામાં આવેલ ઇશ્યૂ ટેમ્પલેટ પૂર્ણ કરો, જરૂરિયાત મુજબ વિગતોનો સમાવેશ કરવાની ખાતરી કરો અને અગાઉના પગલામાંથી રેકોર્ડ કરેલી ફાઇલને અપલોડ કરવા માટે અસ્કયામતોના વિભાગનો ઉપયોગ કરો.",
96
+ "Record Screen": "રેકોર્ડ સ્ક્રીન",
97
+ "Record": "રેકોર્ડ",
98
+ "Stop Recording": "રેકોર્ડ કરવાનું બંધ કરો",
99
+ "Introduce the model .pth path": "મોડલ .pth પાથને રજૂ કરો",
100
+ "See Model Information": "મોડેલ જાણકારી જુઓ",
101
+ "## Download Model": "## ડાઉનલોડ મોડેલ",
102
+ "Model Link": "મોડેલ કડી",
103
+ "Introduce the model link": "મોડેલ કડીનો પરિચય આપો",
104
+ "Download Model": "ડેસ્કારગર મોડેલો",
105
+ "## Drop files": "## ફાઇલો મૂકો",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "આ જગ્યામાં તમારી .pth ફાઇલ અને .index ફાઇલને ખેંચો. એકને ખેંચો અને પછી બીજું.",
107
+ "TTS Voices": "TTS અવાજો",
108
+ "Text to Synthesize": "સંશ્લેષણ કરવા માટેનું લખાણ",
109
+ "Enter text to synthesize": "સંશ્લેષણ કરવા માટે લખાણ દાખલ કરો",
110
+ "Output Path for TTS Audio": "TTS ઓડિયો માટે આઉટપુટ પાથ",
111
+ "Output Path for RVC Audio": "RVC ઓડિયો માટે આઉટપુટ પાથ",
112
+ "Enable Applio integration with Discord presence": "એપ્લિયો પ્રસેન્સ"
113
+ }
assets/i18n/languages/hi_HI.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "अंतिम आवाज क्लोनिंग उपकरण, बेजोड़ शक्ति, प्रतिरूपकता और उपयोगकर्ता के अनुकूल अनुभव के लिए सावधानीपूर्वक अनुकूलित।",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "इस खंड में कुछ अतिरिक्त उपयोगिताओं हैं जो अक्सर प्रयोगात्मक चरणों में हो सकती हैं।",
4
+ "Output Information": "आउटपुट जानकारी",
5
+ "Inference": "अनुमान",
6
+ "Train": "रेलगाड़ी",
7
+ "Extra": "अति",
8
+ "Merge Audios": "ऑडियो मर्ज करें",
9
+ "Processing": "संसाधन",
10
+ "Audio Analyzer": "ऑडियो विश्लेषक",
11
+ "Model Information": "मॉडल जानकारी",
12
+ "Download": "डाउनलोड",
13
+ "Report a Bug": "बग की रिपोर्ट करें",
14
+ "Preprocess": "प्रीप्रोसेस",
15
+ "Model Name": "मॉडल का नाम",
16
+ "Enter model name": "मॉडल का नाम दर्ज करें",
17
+ "Dataset Path": "डेटासेट पथ",
18
+ "Enter dataset path": "डेटासेट पथ दर्ज करें",
19
+ "Sampling Rate": "नमूनाकरण दर",
20
+ "RVC Version": "RVC संस्करण",
21
+ "Preprocess Dataset": "प्रीप्रोसेस डेटासेट",
22
+ "Extract": "निकालना",
23
+ "Hop Length": "हॉप लंबाई",
24
+ "Batch Size": "बैच का आकार",
25
+ "Save Every Epoch": "हर युग को बचाओ",
26
+ "Total Epoch": "कुल युग",
27
+ "Pretrained": "पूर्व-प्रशिक्षित",
28
+ "Save Only Latest": "केवल नवीनतम सहेजें",
29
+ "Save Every Weights": "हर वजन बचाओ",
30
+ "Custom Pretrained": "कस्टम पूर्व-प्रशिक्षित",
31
+ "Upload Pretrained Model": "पूर्व-प्रशिक्षित मॉडल अपलोड करें",
32
+ "Pretrained Custom Settings": "पूर्व-प्रशिक्षित कस्टम सेटिंग्स",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "आपके द्वारा छोड़ी गई फ़ाइल कोई मान्य पूर्व-प्रशिक्षित फ़ाइल नहीं है. कृपया पुनः प्रयास करें.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "ड्रॉपडाउन मेनू में पूर्व-प्रशिक्षित फ़ाइल देखने के लिए ताज़ा करें बटन पर क्लिक करें।",
35
+ "Pretrained G Path": "कस्टम पूर्व-प्रशिक्षित जी",
36
+ "Pretrained D Path": "कस्टम पूर्वप्रशिक्षित डी",
37
+ "GPU Settings": "GPU सेटिंग्स",
38
+ "GPU Custom Settings": "GPU कस्टम सेटिंग्स",
39
+ "GPU Number": "GPU नंबर",
40
+ "0 to ∞ separated by -": "0 से ∞ द्वारा अलग किया गया -",
41
+ "GPU Information": "GPU सूचना",
42
+ "Pitch Guidance": "पिच मार्गदर्शन",
43
+ "Extract Features": "एक्सट्रैक्ट फीचर्स",
44
+ "Start Training": "प्रशिक्षण शुरू करें",
45
+ "Generate Index": "इंडेक्स जनरेट करें",
46
+ "Voice Model": "आवाज मॉडल",
47
+ "Index File": "अनुक्रमणिका फ़ाइल",
48
+ "Refresh": "आराम देना",
49
+ "Unload Voice": "आवाज उतारना",
50
+ "Single": "अकेला",
51
+ "Upload Audio": "ऑडियो अपलोड करें",
52
+ "Select Audio": "ऑडियो का चयन करें",
53
+ "Advanced Settings": "उन्नत सेटिंग्स",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "आउटपुट साफ़ करें (संपत्ति/ऑडियो में सभी ऑडियो हटाता है)",
55
+ "Custom Output Path": "कस्टम आउटपुट पथ",
56
+ "Output Path": "आउटपुट पथ",
57
+ "Pitch": "फेंकना",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "यदि > = 3: कटाई पिच परिणामों के लिए माध्यिका फ़िल्टरिंग लागू करें। मान फिल्��र त्रिज्या का प्रतिनिधित्व करता है और सांस लेने को कम कर सकता है",
59
+ "Search Feature Ratio": "खोज सुविधा अनुपात",
60
+ "Pitch extraction algorithm": "पिच निष्कर्षण एल्गोरिथ्म",
61
+ "Convert": "बदलना",
62
+ "Export Audio": "ऑडियो निर्यात करें",
63
+ "Batch": "जत्था",
64
+ "Input Folder": "इनपुट फ़ोल्डर",
65
+ "Enter input path": "इनपुट पथ दर्ज करें",
66
+ "Output Folder": "आउटपुट फ़ोल्डर",
67
+ "Enter output path": "आउटपुट पथ दर्ज करें",
68
+ "Get information about the audio": "ऑडियो के बारे में जानकारी प्राप्त करें",
69
+ "Information about the audio file": "ऑडियो फ़ाइल के बारे में जानकारी",
70
+ "Waiting for information...": "जानकारी का इंतजार...",
71
+ "Model fusion": "मॉडल फ्यूजन",
72
+ "Weight for Model A": "मॉडल ए के लिए वजन",
73
+ "Whether the model has pitch guidance": "क्या मॉडल में पिच मार्गदर्शन है",
74
+ "Model architecture version": "मॉडल वास्तुकला संस्करण",
75
+ "Path to Model A": "मॉडल ए के लिए पथ",
76
+ "Path to Model B": "मॉडल बी का रास्ता",
77
+ "Path to model": "मॉडल का मार्ग",
78
+ "Model information to be placed": "मॉडल जानकारी रखी जाएगी",
79
+ "Fusion": "परमाणु-संलयन",
80
+ "Modify model information": "मॉडल जानकारी संशोधित करें",
81
+ "Path to Model": "मॉडल का मार्ग",
82
+ "Model information to be modified": "संशोधित की जाने वाली मॉडल जानकारी",
83
+ "Save file name": "फ़ाइल नाम सहेजें",
84
+ "Modify": "सुधारना",
85
+ "View model information": "मॉडल की जानकारी देखें",
86
+ "View": "देखना",
87
+ "Model extraction": "मॉडल निष्कर्षण",
88
+ "Model conversion": "मॉडल रूपांतरण",
89
+ "Pth file": "Pth फ़ाइल",
90
+ "Output of the pth file": "pth फ़ाइल का आउटपुट",
91
+ "# How to Report an Issue on GitHub": "# GitHub पर किसी समस्या की रिपोर्ट कैसे करें",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. आप जिस समस्या का अनुभव कर रहे हैं उसे रिकॉर्ड करना शुरू करने के लिए नीचे दिए गए 'रिकॉर्ड स्क्रीन' बटन पर क्लिक करें।",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. एक बार जब आप समस्या को रिकॉर्ड करना समाप्त कर लेते हैं, तो 'स्टॉप रिकॉर्डिंग' बटन पर क्लिक करें (वही बटन, लेकिन लेबल इस बात पर निर्भर करता है कि आप सक्रिय रूप से रिकॉर्डिंग कर रहे हैं या नहीं)।",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub Issues](https://github.com/IAHispano/Applio/issues) पर जाएं और 'नया मुद्दा' बटन पर क्लिक करें।",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. प्रदान किए गए मुद्दे टेम्पलेट को पूरा करें, आवश्यकतानुसार विवरण शामिल करना सुनिश्चित करें, और पिछले चरण से रिकॉर्ड की गई फ़ाइल को अपलोड करने के लिए संपत्ति अनुभाग का उपयोग करें।",
96
+ "Record Screen": "रिकॉर्ड स्क्रीन",
97
+ "Record": "रिकॉर्ड",
98
+ "Stop Recording": "रिकॉर्डिंग बंद करो",
99
+ "Introduce the model .pth path": "मॉडल .pth पथ का परिचय दें",
100
+ "See Model Information": "मॉडल जानकारी देखें",
101
+ "## Download Model": "## मॉडल डाउनलोड करें",
102
+ "Model Link": "मॉडल लिंक",
103
+ "Introduce the model link": "मॉडल लिंक का परिचय दें",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## फ़ाइलें ड्रॉप करें",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "अपनी .pth फ़ाइल और .index फ़ाइल को इस स्थान में खींचें. एक को खींचें और फिर दूसरे को।",
107
+ "TTS Voices": "टीटीएस आवाज़ें",
108
+ "Text to Synthesize": "संश्लेषित करने के लिए पाठ",
109
+ "Enter text to synthesize": "संश्लेषित करने के लिए पाठ दर्ज करें",
110
+ "Output Path for TTS Audio": "TTS ऑडियो के लिए आउटपुट पथ",
111
+ "Output Path for RVC Audio": "RVC ऑडियो के लिए आउटपुट पथ",
112
+ "Enable Applio integration with Discord presence": "Applio प्रसेन्स"
113
+ }
assets/i18n/languages/hu_HU.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "A legjobb hangklónozó eszköz, aprólékosan optimalizálva a páratlan teljesítmény, a modularitás és a felhasználóbarát élmény érdekében.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Ez a szakasz néhány további segédprogramot tartalmaz, amelyek gyakran kísérleti fázisban vannak.",
4
+ "Output Information": "Kimeneti információk",
5
+ "Inference": "Következtetés",
6
+ "Train": "Vonat",
7
+ "Extra": "Többlet",
8
+ "Merge Audios": "Hangok egyesítése",
9
+ "Processing": "Feldolgozás",
10
+ "Audio Analyzer": "Hangelemző",
11
+ "Model Information": "Modell információk",
12
+ "Download": "Letöltés",
13
+ "Report a Bug": "Hiba jelentése",
14
+ "Preprocess": "Előfeldolgozás",
15
+ "Model Name": "Modell neve",
16
+ "Enter model name": "Adja meg a modell nevét",
17
+ "Dataset Path": "Adatkészlet elérési útja",
18
+ "Enter dataset path": "Adja meg az adatkészlet elérési útját",
19
+ "Sampling Rate": "Mintavételi arány",
20
+ "RVC Version": "RVC verzió",
21
+ "Preprocess Dataset": "Adatkészlet előfeldolgozása",
22
+ "Extract": "Kivonat",
23
+ "Hop Length": "Komló hossza",
24
+ "Batch Size": "Tétel mérete",
25
+ "Save Every Epoch": "Mentsd meg minden korszakot",
26
+ "Total Epoch": "Teljes korszak",
27
+ "Pretrained": "Előre betanított",
28
+ "Save Only Latest": "Csak a legújabbak mentése",
29
+ "Save Every Weights": "Takarítson meg minden súlyt",
30
+ "Custom Pretrained": "Egyéni előképzett",
31
+ "Upload Pretrained Model": "Előre betanított modell feltöltése",
32
+ "Pretrained Custom Settings": "Előre betanított egyéni beállítások",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "Az eldobott fájl nem érvényes előre betanított fájl. Kérjük, próbálja újra.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Kattintson a frissítés gombra az előre betanított fájl megjelenítéséhez a legördülő menüben.",
35
+ "Pretrained G Path": "Egyéni előképzett G",
36
+ "Pretrained D Path": "Egyéni előképzett D",
37
+ "GPU Settings": "GPU-beállítások",
38
+ "GPU Custom Settings": "GPU egyéni beállítások",
39
+ "GPU Number": "GPU-szám",
40
+ "0 to ∞ separated by -": "0-tól ∞-ig - választja el",
41
+ "GPU Information": "GPU-információk",
42
+ "Pitch Guidance": "Pitch útmutatás",
43
+ "Extract Features": "Jellemzők kivonása",
44
+ "Start Training": "Kezdje el az edzést",
45
+ "Generate Index": "Index létrehozása",
46
+ "Voice Model": "Hangmodell",
47
+ "Index File": "Index fájl",
48
+ "Refresh": "Felfrissít",
49
+ "Unload Voice": "Hang eltávolítása",
50
+ "Single": "Nőtlen",
51
+ "Upload Audio": "Hang feltöltése",
52
+ "Select Audio": "Válassza az Audio lehetőséget",
53
+ "Advanced Settings": "Speciális beállítások",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Kimenetek törlése (Törli az összes hangot az eszközökből/hangokból)",
55
+ "Custom Output Path": "Egyéni kimeneti útvonal",
56
+ "Output Path": "Kimeneti útvonal",
57
+ "Pitch": "Hangmagasság",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Ha >=3: alkalmazzon medián szűrést a betakarított hangmagasság eredményeire. Az érték a szűrő sugarát jelöli, és csökkentheti a légszomjat",
59
+ "Search Feature Ratio": "Keresési funkciók aránya",
60
+ "Pitch extraction algorithm": "Pitch extrakciós algoritmus",
61
+ "Convert": "Megtérít",
62
+ "Export Audio": "Hang exportálása",
63
+ "Batch": "Halom",
64
+ "Input Folder": "Bemeneti mappa",
65
+ "Enter input path": "Adja meg a bemeneti útvonalat",
66
+ "Output Folder": "Kimeneti mappa",
67
+ "Enter output path": "Adja meg a kimeneti útvonalat",
68
+ "Get information about the audio": "Információk lekérése a hangról",
69
+ "Information about the audio file": "Információ a hangfájlról",
70
+ "Waiting for information...": "Információra várva...",
71
+ "Model fusion": "Modellfúzió",
72
+ "Weight for Model A": "Az A modell súlya",
73
+ "Whether the model has pitch guidance": "A modell rendelkezik-e hangmagasság-útmutatással",
74
+ "Model architecture version": "Modellarchitektúra verziója",
75
+ "Path to Model A": "Az A modell elérési útja",
76
+ "Path to Model B": "A B modell elérési útja",
77
+ "Path to model": "A modellhez vezető út",
78
+ "Model information to be placed": "Az elhelyezendő modellinformációk",
79
+ "Fusion": "Fúzió",
80
+ "Modify model information": "Modelladatok módosítása",
81
+ "Path to Model": "A modell elérési útja",
82
+ "Model information to be modified": "Módosítandó modellinformációk",
83
+ "Save file name": "Fájlnév mentése",
84
+ "Modify": "Módosít",
85
+ "View model information": "Modellinformációk megtekintése",
86
+ "View": "Nézet",
87
+ "Model extraction": "Modell kinyerése",
88
+ "Model conversion": "Modell átalakítás",
89
+ "Pth file": "Pth fájl",
90
+ "Output of the pth file": "A pth fájl kimenete",
91
+ "# How to Report an Issue on GitHub": "# Hogyan jelenthet problémát a GitHubon",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Kattintson az alábbi \"Felvétel képernyő\" gombra a tapasztalt probléma rögzítésének megkezdéséhez.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Miután befejezte a probléma rögzítését, kattintson a \"Felvétel leállítása\" gombra (ugyanaz a gomb, de a címke attól függően változik, hogy aktívan rögzít-e vagy sem).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Lépjen a [GitHub-problémák](https://github.com/IAHispano/Applio/issues) oldalra, és kattintson az \"Új probléma\" gombra.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Töltse ki a megadott problémasablont, ügyelve arra, hogy szükség szerint tartalmazza a részleteket, és használja az eszközök szakaszt az előző lépésből rögzített fájl feltöltéséhez.",
96
+ "Record Screen": "Felvétel képernyő",
97
+ "Record": "Rekord",
98
+ "Stop Recording": "Felvétel leállítása",
99
+ "Introduce the model .pth path": "A modell .pth elérési útjának bemutatása",
100
+ "See Model Information": "Modellinformációk megtekintése",
101
+ "## Download Model": "## Modell letöltése",
102
+ "Model Link": "Modell link",
103
+ "Introduce the model link": "A modellhivatkozás bemutatása",
104
+ "Download Model": "Töltse le a Modelo alkalmazást",
105
+ "## Drop files": "## Dobja el a fájlokat",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Húzza a .pth és .index fájlt erre a helyre. Húzza az egyiket, majd a másikat.",
107
+ "TTS Voices": "TTS-hangok",
108
+ "Text to Synthesize": "Szintetizálandó szöveg",
109
+ "Enter text to synthesize": "Írja be a szintetizálni kívánt szöveget",
110
+ "Output Path for TTS Audio": "A TTS Audio kimeneti útvonala",
111
+ "Output Path for RVC Audio": "Az RVC Audio kimeneti útvonala",
112
+ "Enable Applio integration with Discord presence": "Applio Jelenlét"
113
+ }
assets/i18n/languages/it_IT.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Strumento di clonazione vocale definitivo, meticolosamente ottimizzato per una potenza, una modularità e un'esperienza user-friendly senza rivali. /n Tradotto in italiano da Ilaria.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Questa sezione contiene alcune utilità aggiuntive che spesso possono essere in fase sperimentale.",
4
+ "Output Information": "Informazioni sull'output",
5
+ "Inference": "Inferenza",
6
+ "Train": "Allena",
7
+ "Extra": "Altro",
8
+ "Merge Audios": "Unisci audio",
9
+ "Processing": "Elaborazione",
10
+ "Audio Analyzer": "Analizzatore audio",
11
+ "Model Information": "Informazioni sul modello",
12
+ "Download": "Scaricare",
13
+ "Report a Bug": "Segnala un bug",
14
+ "Preprocess": "Pre-processa",
15
+ "Model Name": "Nome del modello",
16
+ "Enter model name": "Inserisci il nome del modello",
17
+ "Dataset Path": "Percorso del dataset",
18
+ "Enter dataset path": "Inserisci il percorso del dataset",
19
+ "Sampling Rate": "Frequenza di campionamento",
20
+ "RVC Version": "Versione RVC",
21
+ "Preprocess Dataset": "Set di dati di pre-elaborazione",
22
+ "Extract": "Estrarre",
23
+ "Hop Length": "Hop Lenght",
24
+ "Batch Size": "Batch Size",
25
+ "Save Every Epoch": "Salva a ogni epoch",
26
+ "Total Epoch": "Epochs totali",
27
+ "Pretrained": "Pre-allenato",
28
+ "Save Only Latest": "Salva solo gli ultimi file",
29
+ "Save Every Weights": "Salva ogni Weight",
30
+ "Custom Pretrained": "Pre-allenamento personalizzato",
31
+ "Upload Pretrained Model": "Carica modello pre-allenato",
32
+ "Pretrained Custom Settings": "Impostazioni personalizzate modelli pre-allenati",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "Il file inseri non è un file pre-allenato valido. Si prega di riprovare.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Fare clic sul pulsante Aggiorna per visualizzare il file pre-allenato nel menù a discesa.",
35
+ "Pretrained G Path": "G pre-allenato personalizzato",
36
+ "Pretrained D Path": "D pre-allenato personalizzato",
37
+ "GPU Settings": "Impostazioni GPU",
38
+ "GPU Custom Settings": "Impostazioni personalizzate GPU",
39
+ "GPU Number": "Numero GPU",
40
+ "0 to ∞ separated by -": "Da 0 a ∞ separati da -",
41
+ "GPU Information": "Informazioni sulla GPU",
42
+ "Pitch Guidance": "Guida al pitch",
43
+ "Extract Features": "Estrai feature",
44
+ "Start Training": "Inizia l'allenamento",
45
+ "Generate Index": "Genera index",
46
+ "Voice Model": "Modello vocale",
47
+ "Index File": "File index",
48
+ "Refresh": "Aggiorna",
49
+ "Unload Voice": "Rimuovi modelli vocali",
50
+ "Single": "Singolo",
51
+ "Upload Audio": "Carica audio",
52
+ "Select Audio": "Seleziona Audio",
53
+ "Advanced Settings": "Impostazioni avanzate",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Cancella output (elimina tutti gli audio in assets/audios)",
55
+ "Custom Output Path": "Percorso output personalizzato",
56
+ "Output Path": "Percorso output",
57
+ "Pitch": "Pitch",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Se >=3: applicare il filtro mediano ai risultati dell'altezza raccolta. Il valore rappresenta il raggio del filtro e può ridurre la respirazione",
59
+ "Search Feature Ratio": "Rapporto di ricerca feature nell'index",
60
+ "Pitch extraction algorithm": "Algoritmo di estrazione del pitch",
61
+ "Convert": "Converti",
62
+ "Export Audio": "Esporta audio",
63
+ "Batch": "Batch",
64
+ "Input Folder": "Cartella degli input",
65
+ "Enter input path": "Immettere il percorso dell'input",
66
+ "Output Folder": "Cartella per gli output",
67
+ "Enter output path": "Immettere il percorso di output",
68
+ "Get information about the audio": "Ottieni informazioni sull'audio",
69
+ "Information about the audio file": "Informazioni sul file audio",
70
+ "Waiting for information...": "In attesa di informazioni...",
71
+ "Model fusion": "Fusione di modelli",
72
+ "Weight for Model A": "Peso per il modello A",
73
+ "Whether the model has pitch guidance": "Se il modello dispone di una guida per l'intonazione",
74
+ "Model architecture version": "Versione dell'architettura del modello",
75
+ "Path to Model A": "Percorso verso il modello A",
76
+ "Path to Model B": "Percorso verso il modello B",
77
+ "Path to model": "Percorso verso il modello",
78
+ "Model information to be placed": "Informazioni sul modello da posizionare",
79
+ "Fusion": "Fusione",
80
+ "Modify model information": "Modificare le informazioni sul modello",
81
+ "Path to Model": "Percorso verso il modello",
82
+ "Model information to be modified": "Informazioni sul modello da modificare",
83
+ "Save file name": "Salva nome file",
84
+ "Modify": "Modificare",
85
+ "View model information": "Visualizzare le informazioni sul modello",
86
+ "View": "Vista",
87
+ "Model extraction": "Estrazione del modello",
88
+ "Model conversion": "Conversione del modello",
89
+ "Pth file": "File Pth",
90
+ "Output of the pth file": "Output del file pth",
91
+ "# How to Report an Issue on GitHub": "# Come segnalare un problema su GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Fare click sul pulsante \"Registra schermo\" in basso per avviare la registrazione del problema riscontrato.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Una volta terminata la registrazione del problema, fai clic sul pulsante \"Interrompi registrazione\" (lo stesso pulsante, ma l'etichetta cambia a seconda che tu stia registrando attivamente o meno).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Vai su [GitHub Issues](https://github.com/IAHispano/Applio/issues) e fai clic sul pulsante \"Nuovo problema\".",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Completa il modello di problema fornito, assicurandoti di includere i dettagli necessari e utilizza la sezione delle risorse per caricare il file registrato dal passaggio precedente.",
96
+ "Record Screen": "Registra schermo",
97
+ "Record": "Registrazione",
98
+ "Stop Recording": "Interrompi registrazione",
99
+ "Introduce the model .pth path": "Inserusci il percorso .pth del modello",
100
+ "See Model Information": "Controlla le informazioni sul modello",
101
+ "## Download Model": "## Scarica il modello",
102
+ "Model Link": "Link del modello",
103
+ "Introduce the model link": "Inserisci il link modello",
104
+ "Download Model": "Scarica Modello",
105
+ "## Drop files": "## Trascina i file",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Trascina il file .pth e il file .index in questo spazio. Trascina uno e poi l'altro.",
107
+ "TTS Voices": "Voci TTS",
108
+ "Text to Synthesize": "Testo da sintetizzare",
109
+ "Enter text to synthesize": "Inserisci il testo da sintetizzare",
110
+ "Output Path for TTS Audio": "Percorso di uscita per l'audio TTS",
111
+ "Output Path for RVC Audio": "Percorso di uscita per l'audio RVC",
112
+ "Enable Applio integration with Discord presence": "Presenza di Applio"
113
+ }
assets/i18n/languages/ja_JA.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "比類のないパワー、モジュール性、ユーザーフレンドリーなエクスペリエンスのために細心の注意を払って最適化された究極の音声クローニングツール。",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "このセクションには、多くの場合、実験段階にある可能性のあるいくつかの追加のユーティリティが含まれています。",
4
+ "Output Information": "出力情報",
5
+ "Inference": "推論",
6
+ "Train": "列車",
7
+ "Extra": "余分",
8
+ "Merge Audios": "オーディオをマージ (Merge Audios)",
9
+ "Processing": "加工",
10
+ "Audio Analyzer": "オーディオアナライザ",
11
+ "Model Information": "モデル情報",
12
+ "Download": "ダウンロード",
13
+ "Report a Bug": "バグを報告する",
14
+ "Preprocess": "前処理",
15
+ "Model Name": "モデル名",
16
+ "Enter model name": "モデル名を入力",
17
+ "Dataset Path": "データセット パス",
18
+ "Enter dataset path": "データセットのパスを入力",
19
+ "Sampling Rate": "サンプリングレート",
20
+ "RVC Version": "RVC バージョン",
21
+ "Preprocess Dataset": "データセットの前処理",
22
+ "Extract": "抜く",
23
+ "Hop Length": "ホップ長(Hop Length)",
24
+ "Batch Size": "バッチサイズ",
25
+ "Save Every Epoch": "すべてのエポックを保存",
26
+ "Total Epoch": "トータルエポック",
27
+ "Pretrained": "事前トレーニング済み",
28
+ "Save Only Latest": "最新のみ保存",
29
+ "Save Every Weights": "すべてのウェイトを保存(Save Every Weights)",
30
+ "Custom Pretrained": "カスタム事前トレーニング済み",
31
+ "Upload Pretrained Model": "事前トレーニング済みモデルのアップロード",
32
+ "Pretrained Custom Settings": "事前トレーニング済みのカスタム設定",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "ドロップしたファイルは有効な事前学習済みファイルではありません。もう一度やり直してください。",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "更新ボタンをクリックすると、ドロップダウンメニューに事前トレーニング済みファイルが表示されます。",
35
+ "Pretrained G Path": "カスタム事前学習済み G",
36
+ "Pretrained D Path": "カスタム事前学習済み D",
37
+ "GPU Settings": "GPU 設定",
38
+ "GPU Custom Settings": "GPU カスタム設定",
39
+ "GPU Number": "GPU番号",
40
+ "0 to ∞ separated by -": "0 から ∞ で区切られます。",
41
+ "GPU Information": "GPU 情報",
42
+ "Pitch Guidance": "ピッチガイダンス",
43
+ "Extract Features": "フィーチャの抽出",
44
+ "Start Training": "トレーニングを開始",
45
+ "Generate Index": "インデックスの生成",
46
+ "Voice Model": "音声モデル",
47
+ "Index File": "インデックス ファイル",
48
+ "Refresh": "リフレッシュ",
49
+ "Unload Voice": "音声のアンロード",
50
+ "Single": "単",
51
+ "Upload Audio": "オーディオのアップロード",
52
+ "Select Audio": "オーディオを選択",
53
+ "Advanced Settings": "詳細設定",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Clear Outputs (アセット/オーディオ内のすべてのオーディオを削除します)",
55
+ "Custom Output Path": "カスタム出力パス",
56
+ "Output Path": "出力パス",
57
+ "Pitch": "ピッチ",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": ">=3の場合:収集したピッチ結果に中央値フィルタリングを適用します。この値はフィルターの半径を表し、息苦しさを軽減することができます",
59
+ "Search Feature Ratio": "検索機能比率",
60
+ "Pitch extraction algorithm": "ピッチ抽出アルゴリズム",
61
+ "Convert": "コンバート",
62
+ "Export Audio": "オーディオのエクスポート",
63
+ "Batch": "バッチ",
64
+ "Input Folder": "入力フォルダ",
65
+ "Enter input path": "入力パスを入力",
66
+ "Output Folder": "出力フォルダ",
67
+ "Enter output path": "出力パスを入力",
68
+ "Get information about the audio": "オーディオに関する情報を取得する",
69
+ "Information about the audio file": "オーディオファイルに関する情報",
70
+ "Waiting for information...": "情報を待っています...",
71
+ "Model fusion": "モデル融合",
72
+ "Weight for Model A": "モデルAの重量",
73
+ "Whether the model has pitch guidance": "モデルにピッチガイダンスがあるかどうか",
74
+ "Model architecture version": "モデル アーキテクチャのバージョン",
75
+ "Path to Model A": "モデルAへのパス",
76
+ "Path to Model B": "モデルBへのパス",
77
+ "Path to model": "モデルへのパス",
78
+ "Model information to be placed": "配置するモデル情報",
79
+ "Fusion": "融合",
80
+ "Modify model information": "モデル情報の変更",
81
+ "Path to Model": "モデルへのパス",
82
+ "Model information to be modified": "修正するモデル情報",
83
+ "Save file name": "保存ファイル名",
84
+ "Modify": "修飾する",
85
+ "View model information": "モデル情報の表示",
86
+ "View": "眺める",
87
+ "Model extraction": "モデルの抽出",
88
+ "Model conversion": "モデル変換",
89
+ "Pth file": "Pth ファイル",
90
+ "Output of the pth file": "p番目のファイルの出力",
91
+ "# How to Report an Issue on GitHub": "# GitHub で問題を報告する方法",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1.下の[画面の記録]ボタンをクリックして、発生している問題の記録を開始します。",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2.問題の記録が終了したら、[記録の停止]ボタンをクリックします(同じボタンですが、アクティブに記録しているかどうかによってラベルが変わります)。",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub Issues](https://github.com/IAHispano/Applio/issues)に移動し、[New Issue]ボタンをクリックします。",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. 提供された課題テンプレートに記入し、必要に応じて詳細を含め、アセット セクションを使用して前の手順で記録したファイルをアップロードします。",
96
+ "Record Screen": "録画画面",
97
+ "Record": "記録",
98
+ "Stop Recording": "記録の停止",
99
+ "Introduce the model .pth path": "モデルの .pth パスを導入する",
100
+ "See Model Information": "「モデル情報」を参照",
101
+ "## Download Model": "## モデルのダウンロード",
102
+ "Model Link": "モデルリンク",
103
+ "Introduce the model link": "モデルリンクの紹介",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## ファイルのドロップ",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": ".pth ファイルと .index ファイルをこのスペースにドラッグします。一方をドラッグしてから、もう一方をドラッグします。",
107
+ "TTS Voices": "TTS ボイス",
108
+ "Text to Synthesize": "合成するテキスト",
109
+ "Enter text to synthesize": "合成するテキストを入力する",
110
+ "Output Path for TTS Audio": "TTSオーディオの出力パス",
111
+ "Output Path for RVC Audio": "RVCオーディオの出力パス",
112
+ "Enable Applio integration with Discord presence": "Applio プレゼンス"
113
+ }
assets/i18n/languages/jv_JV.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
assets/i18n/languages/ko_KO.json ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "독보적인 성능, 모듈성, 사용자 친화적인 경험을 위해 세심하게 최적화된 최고의 음성 복제 툴입니다.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "이 섹션에는 종종 실험 단계에 있는 몇 가지 추가 유틸리티가 포함되어 있습니다.",
4
+ "Output Information": "출력 정보",
5
+
6
+ "Inference": "추론",
7
+ "Train": "학습",
8
+ "Extra": "Extra",
9
+ "Merge Audios": "오디오 병합",
10
+ "Processing": "프로세싱",
11
+ "Audio Analyzer": "오디오 분석기",
12
+ "Model Information": "모델 정보",
13
+ "Download": "다운로드",
14
+ "Report a Bug": "버그 신고",
15
+
16
+ "Preprocess": "전처리",
17
+ "Model Name": "모델명",
18
+ "Enter model name": "모델명 입력",
19
+ "Dataset Path": "데이터셋 위치",
20
+ "Dataset Creator": "데이터셋 작성자",
21
+ "Dataset Name": "데이터셋 이름",
22
+ "Enter dataset name": "데이터셋 이름 입력",
23
+ "Upload Audio Dataset": "오디오 데이터셋 업로드",
24
+ "The audio file has been successfully added to the dataset. Please click the preprocess button.": "오디오 파일을 데이터셋에 성공적으로 추가하였습니다. 전처리 버튼을 클릭해주세요.",
25
+ "Enter dataset path": "데이터셋 위치 입력",
26
+ "Sampling Rate": "샘플링 레이트",
27
+ "RVC Version": "RVC 버전",
28
+ "Preprocess Dataset": "데이터셋 전처리",
29
+
30
+ "Extract": "추출물",
31
+ "Hop Length": "홉 길이(Hop Length)",
32
+ "Batch Size": "배치 사이즈",
33
+ "Save Every Epoch": "에포크마다 저장(Save Every Epoch)",
34
+ "Total Epoch": "총 에포크(Total Epoch)",
35
+ "Pretrained": "사전 학습된(Pretrained)",
36
+ "Save Only Latest": "최신 정보만 저장(Save Only Latest)",
37
+ "Save Every Weights": "모든 가중치 저장(Save Every Weights)",
38
+ "Custom Pretrained": "사용자 정의 사전 학습(Custom Pretrained)",
39
+ "Upload Pretrained Model": "사전 학습된 모델 업로드",
40
+ "Pretrained Custom Settings": "사전 학습된 사용자 정의 설정",
41
+ "The file you dropped is not a valid pretrained file. Please try again.": "드롭한 파일이 올바른 사전 학습 파일이 아닙니다. 다시 시도하십시오.",
42
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "새로 고침 버튼을 클릭하면 드롭다운 메뉴에서 사전 학습된 파일을 볼 수 있습니다.",
43
+ "Pretrained G Path": "사용자 정의 사전 훈련된 G(Custom Pretrained G)",
44
+ "Pretrained D Path": "사용자 정의 사전 훈련된 D(Custom Pretrained D)",
45
+ "GPU Settings": "GPU 설정",
46
+ "GPU Custom Settings": "GPU 사용자 정의 설정",
47
+ "GPU Number": "GPU 번호",
48
+ "0 to ∞ separated by -": "0 ~ ∞는 -로 구분",
49
+ "GPU Information": "GPU 정보",
50
+ "Pitch Guidance": "피치 안내",
51
+ "Extract Features": "특징 추출(Extract Features)",
52
+
53
+ "Start Training": "학습 시작하기",
54
+ "Generate Index": "인덱스 생성하기",
55
+
56
+ "Voice Model": "음성 모델",
57
+ "Index File": "인덱스 파일",
58
+ "Refresh": "새로고침",
59
+ "Unload Voice": "음성 모델 언로드",
60
+
61
+ "Single": "싱글",
62
+ "Upload Audio": "오디오 업로드",
63
+ "Select Audio": "오디오 선택",
64
+ "Advanced Settings": "고급 설정",
65
+ "Clear Outputs (Deletes all audios in assets/audios)": "출력 지우기(에셋/오디오의 모든 오디오 삭제)",
66
+ "Custom Output Path": "사용자 정의 출력 경로",
67
+ "Output Path": "출력 경로",
68
+ "Split Audio": "오디오 분할",
69
+ "Pitch": "피치",
70
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": ">=3인 경우: median filtering을 Harved pitch 결과에 적용합니다. 값은 필터 반경을 나타내며 숨소리를 감소시킬 수 있습니다",
71
+ "Search Feature Ratio": "검색 특징 비율(Search Feature Ratio)",
72
+ "Pitch extraction algorithm": "피치 추출 알고리즘",
73
+ "Convert": "변환",
74
+ "Export Audio": "오디오 내보내기",
75
+
76
+ "Batch": "일괄",
77
+ "Input Folder": "입력 폴더",
78
+ "Enter input path": "입력 경로 입력",
79
+ "Output Folder": "출력 폴더",
80
+ "Enter output path": "출력 폴더 입력",
81
+
82
+ "Get information about the audio": "오디오에 대한 정보 가져오기",
83
+ "Information about the audio file": "오디오 파일에 대한 정보",
84
+ "Waiting for information...": "정보를 기다리는 중...",
85
+
86
+ "Model fusion": "모델 병합",
87
+ "Weight for Model A": "모델 A의 가충치",
88
+ "Whether the model has pitch guidance": "모델에 피치 안내가 있는지 여부",
89
+ "Model architecture version": "모델 아키텍처 버전",
90
+ "Path to Model A": "모델 A의 경로",
91
+ "Path to Model B": "모델 B의 경로",
92
+ "Path to model": "모델 경로",
93
+ "Model information to be placed": "배치할 모델 정보",
94
+ "Fusion": "병합",
95
+
96
+ "Modify model information": "모델 정보 수정",
97
+ "Path to Model": "모델 경로",
98
+ "Model information to be modified": "수정할 모델 정보",
99
+ "Save file name": "파일명 저장",
100
+ "Modify": "수정",
101
+
102
+ "View model information": "모델 정보 보기",
103
+ "View": "보기",
104
+ "Model extraction": "모델 추출",
105
+ "Model conversion": "모델 변환",
106
+ "Pth file": "Pth 파일",
107
+ "Output of the pth file": "pth 파일 출력",
108
+
109
+ "# How to Report an Issue on GitHub": "# GitHub에서 문제를 보고하는 방법",
110
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. 발생한 문제를 기록하려면 아래의 'Record Screen' 버튼을 클릭합니다.",
111
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. 문제를 기록한 후에는 'Stop Recording' 버튼을 클릭합니다(같은 버튼이지만, 레이블은 사용자가 능동적으로 녹화하는지 여부에 따라 변경됩니다).",
112
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub Issue](https://github.com/IAHispano/Applio/issues) 로 이동하여 'New Issue' 버튼을 클릭합니다.",
113
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "제공된 이슈 템플릿을 완료하여 필요에 따라 세부 정보를 포함하고 에셋 섹션을 활용하여 이전 단계에서 기록된 파일을 업로드합니다.",
114
+
115
+ "Record Screen": "화면 녹화",
116
+ "Record": "녹화",
117
+ "Stop Recording": "녹화 중지",
118
+
119
+ "Introduce the model .pth path": "모델 .pth 경로 소개",
120
+ "See Model Information": "모델 정보 보기",
121
+
122
+ "## Download Model": "## 모델 다운로드",
123
+ "Model Link": "모델 링크",
124
+ "Introduce the model link": "모델 소개 링크",
125
+ "Download Model": "Descargar Modelo",
126
+ "## Drop files": "## 파일 드롭",
127
+ "Drag your .pth file and .index file into this space. Drag one and then the ot드her.": ".pth 파일과 .index 파일을 이 공간으로 드래그하세요. 하나를 드래그한 다음 다른 하나를 드래그하세요.",
128
+
129
+ "TTS Voices": "TTS 보이스",
130
+ "Text to Synthesize": "합성할 텍스트(Text to Synthesize)",
131
+ "Enter text to synthesize": "합성할 텍스트 입력",
132
+ "Output Path for TTS Audio": "TTS 오디오의 출력 경로",
133
+ "Output Path for RVC Audio": "RVC 오디오의 출력 경로",
134
+ "Enable Applio integration with Discord presence": "Applio와 Discord presence의 통합 활성화"
135
+ }
assets/i18n/languages/mr_MR.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "अल्टिमेट व्हॉइस क्लोनिंग टूल, अप्रतिम शक्ती, मॉड्युलरिटी आणि वापरकर्ता-अनुकूल अनुभवासाठी काळजीपूर्वक ऑप्टिमाइझ केलेले.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "या विभागात काही अतिरिक्त उपयोगिता आहेत ज्या बर्याचदा प्रायोगिक टप्प्यात असू शकतात.",
4
+ "Output Information": "आउटपुट माहिती",
5
+ "Inference": "निष्कर्ष",
6
+ "Train": "आगगाडी",
7
+ "Extra": "अतिरिक्त",
8
+ "Merge Audios": "Merges Tऑडिओ",
9
+ "Processing": "प्रोसेसिंग",
10
+ "Audio Analyzer": "ऑडिओ विश्लेषक",
11
+ "Model Information": "मॉडेल माहिती",
12
+ "Download": "डाउनलोड करा",
13
+ "Report a Bug": "बग ची नोंद करा",
14
+ "Preprocess": "पूर्वप्रक्रिया",
15
+ "Model Name": "मॉडेलचे नाव",
16
+ "Enter model name": "मॉडेल नाव प्रविष्ट करा",
17
+ "Dataset Path": "डेटासेट पथ",
18
+ "Enter dataset path": "डेटासेट मार्ग प्रविष्ट करा",
19
+ "Sampling Rate": "नमुना दर",
20
+ "RVC Version": "आरव्हीसी आवृत्ती",
21
+ "Preprocess Dataset": "Preprocess Dataset",
22
+ "Extract": "अर्क",
23
+ "Hop Length": "हॉप लांबी",
24
+ "Batch Size": "बॅच आकार",
25
+ "Save Every Epoch": "प्रत्येक युग वाचवा",
26
+ "Total Epoch": "एकूण युग",
27
+ "Pretrained": "पूर्वप्रशिक्षित",
28
+ "Save Only Latest": "फक्त लेटेस्ट सेव्ह करा",
29
+ "Save Every Weights": "प्रत्येक वजन वाचवा",
30
+ "Custom Pretrained": "सानुकूल पूर्वप्रशिक्षित",
31
+ "Upload Pretrained Model": "पूर्वप्रशिक्षित मॉडेल अपलोड करा",
32
+ "Pretrained Custom Settings": "पूर्वप्रशिक्षित सानुकूल सेटिंग्ज",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "आपण टाकलेली फाईल वैध पूर्वप्रशिक्षित फाइल नाही. कृपया पुन्हा प्रयत्न करा.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "ड्रॉपडाउन मेनूमध्ये पूर्वप्रशिक्षित फाइल पाहण्यासाठी रिफ्रेश बटणावर क्लिक करा.",
35
+ "Pretrained G Path": "सानुकूल पूर्वप्रशिक्षित जी",
36
+ "Pretrained D Path": "सानुकूल पूर्वप्रशिक्षित डी",
37
+ "GPU Settings": "जीपीयू सेटिंग्स",
38
+ "GPU Custom Settings": "जीपीयू सानुकूल सेटिंग्स",
39
+ "GPU Number": "जीपीयू नंबर",
40
+ "0 to ∞ separated by -": "0 ते ∞ वेगळे केले जातात -",
41
+ "GPU Information": "जीपीयू माहिती",
42
+ "Pitch Guidance": "खेळपट्टी मार्गदर्शन",
43
+ "Extract Features": "अर्क वैशिष्ट्ये",
44
+ "Start Training": "प्रशिक्षण सुरू करा",
45
+ "Generate Index": "इंडेक्स तयार करा",
46
+ "Voice Model": "व्हॉइस मॉडेल",
47
+ "Index File": "अनुक्रमणिका फाइल",
48
+ "Refresh": "टवटवी आणणे",
49
+ "Unload Voice": "आवाज अनलोड करा",
50
+ "Single": "अविवाहित",
51
+ "Upload Audio": "ऑडिओ अपलोड करा",
52
+ "Select Audio": "ऑडिओ निवडा",
53
+ "Advanced Settings": "प्रगत सेटिंग्ज",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "स्पष्ट आउटपुट (मालमत्ता / ऑडिओमधील सर्व ऑडिओ हटवतात)",
55
+ "Custom Output Path": "सानुकूल आउटपुट पथ",
56
+ "Output Path": "आउटपुट पथ",
57
+ "Pitch": "खेळपट्टी",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "जर >= 3: कापणी केलेल्या खेळपट्टीच्या परि���ामांवर मध्यम फिल्टरिंग लागू करा. मूल्य फिल्टर त्रिज्याचे प्रतिनिधित्व करते आणि श्वासोच्छवास कमी करू शकते",
59
+ "Search Feature Ratio": "शोध वैशिष्ट्य गुणोत्तर",
60
+ "Pitch extraction algorithm": "पिच निष्कर्षण अल्गोरिदम",
61
+ "Convert": "धर्मांतर करा",
62
+ "Export Audio": "निर्यात ऑडिओ",
63
+ "Batch": "तुकडी",
64
+ "Input Folder": "इनपुट फोल्डर",
65
+ "Enter input path": "इनपुट पथ प्रविष्ट करा",
66
+ "Output Folder": "आउटपुट फोल्डर",
67
+ "Enter output path": "आउटपुट पथ प्रविष्ट करा",
68
+ "Get information about the audio": "ऑडिओबद्दल माहिती मिळवा",
69
+ "Information about the audio file": "ऑडिओ फाईलची माहिती",
70
+ "Waiting for information...": "माहितीच्या प्रतीक्षेत...",
71
+ "Model fusion": "मॉडेल फ्यूजन",
72
+ "Weight for Model A": "मॉडेल ए साठी वजन",
73
+ "Whether the model has pitch guidance": "मॉडेलमध्ये खेळपट्टीमार्गदर्शन आहे की नाही",
74
+ "Model architecture version": "मॉडेल आर्किटेक्चर आवृत्ती",
75
+ "Path to Model A": "मॉडेल ए चा मार्ग",
76
+ "Path to Model B": "मॉडेल बी चा मार्ग",
77
+ "Path to model": "मॉडेलचा मार्ग",
78
+ "Model information to be placed": "मॉडेल माहिती ठेवली जाईल",
79
+ "Fusion": "फ्यूजन",
80
+ "Modify model information": "मॉडेल माहिती सुधारित करा",
81
+ "Path to Model": "मॉडेल चा मार्ग",
82
+ "Model information to be modified": "मॉडेल माहिती मध्ये बदल होणार",
83
+ "Save file name": "फाईलचे नाव सेव्ह करा",
84
+ "Modify": "सुधारित करा",
85
+ "View model information": "मॉडेल माहिती पहा",
86
+ "View": "पहा",
87
+ "Model extraction": "मॉडेल निष्कर्षण",
88
+ "Model conversion": "मॉडेल रूपांतरण",
89
+ "Pth file": "पीटीएच फाईल",
90
+ "Output of the pth file": "पीटीएच फाईलचे आउटपुट",
91
+ "# How to Report an Issue on GitHub": "# गिटहबवर एखाद्या समस्येची नोंद कशी करावी",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. आपण अनुभवत असलेल्या समस्येचे रेकॉर्डिंग सुरू करण्यासाठी खालील 'रेकॉर्ड स्क्रीन' बटणावर क्लिक करा.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "२. अंक रेकॉर्ड िंग पूर्ण झाल्यावर 'स्टॉप रेकॉर्डिंग' बटणावर क्लिक करा (तेच बटण, पण तुम्ही सक्रियपणे रेकॉर्डिंग करत आहात की नाही यावर अवलंबून लेबल बदलते).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [गिटहब इश्यूज] (https://github.com/IAHispano/Applio/issues) वर जा आणि 'न्यू इश्यू' बटणावर क्लिक करा.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. प्रदान केलेले इश्यू टेम्पलेट पूर्ण करा, आवश्यकतेनुसार तपशील समाविष्ट करण्याची खात्री करा आणि मागील चरणातून रेकॉर्ड केलेली फाइल अपलोड करण्यासाठी मालमत्ता विभागाचा वापर करा.",
96
+ "Record Screen": "रेकॉर्ड स्क्रीन",
97
+ "Record": "नोंदणे",
98
+ "Stop Recording": "रेकॉर्डिंग थांबवा",
99
+ "Introduce the model .pth path": "मॉडेल .पीटीएच पथ सादर करा",
100
+ "See Model Information": "मॉडेल माहिती पहा",
101
+ "## Download Model": "## मॉडेल डाऊनलोड करा",
102
+ "Model Link": "मॉडेल लिंक",
103
+ "Introduce the model link": "मॉडेल लिंक ची ओळख करून द्या",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## फाइल्स ड्रॉप करा",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "आपली .pth फाइल आणि .अनुक्रमणिका फाईल या जागेत खेचून घ्या. एकाला ओढून घ्या आणि मग दुसरं.",
107
+ "TTS Voices": "टीटीएस आवाज",
108
+ "Text to Synthesize": "संश्लेषित करण्यासाठी मजकूर",
109
+ "Enter text to synthesize": "संश्लेषित करण्यासाठी मजकूर प्रविष्ट करा",
110
+ "Output Path for TTS Audio": "टीटीएस ऑडिओसाठी आउटपुट पथ",
111
+ "Output Path for RVC Audio": "आरव्हीसी ऑडिओसाठी आउटपुट पथ",
112
+ "Enable Applio integration with Discord presence": "Applio प्रेसेन्स"
113
+ }
assets/i18n/languages/ms_MS.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Alat pengklonan suara muktamad, dioptimumkan dengan teliti untuk kuasa yang tiada tandingan, modulariti, dan pengalaman mesra pengguna.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Bahagian ini mengandungi beberapa utiliti tambahan yang selalunya berada dalam fasa percubaan.",
4
+ "Output Information": "Maklumat Output",
5
+ "Inference": "Inferens",
6
+ "Train": "Kereta api",
7
+ "Extra": "Tambahan",
8
+ "Merge Audios": "Mencantumkan Audio",
9
+ "Processing": "Pemprosesan",
10
+ "Audio Analyzer": "Penganalisis Audio",
11
+ "Model Information": "Maklumat Model",
12
+ "Download": "Muat turun",
13
+ "Report a Bug": "Laporkan pepijat",
14
+ "Preprocess": "Praproses",
15
+ "Model Name": "Nama Model",
16
+ "Enter model name": "Masukkan nama model",
17
+ "Dataset Path": "Laluan Set Data",
18
+ "Enter dataset path": "Memasukkan laluan set data",
19
+ "Sampling Rate": "Kadar Persampelan",
20
+ "RVC Version": "Versi RVC",
21
+ "Preprocess Dataset": "Set Data Praproses",
22
+ "Extract": "Cabutan",
23
+ "Hop Length": "Panjang Hop",
24
+ "Batch Size": "Saiz kelompok",
25
+ "Save Every Epoch": "Simpan Setiap Zaman",
26
+ "Total Epoch": "Jumlah Zaman",
27
+ "Pretrained": "Dipralatih",
28
+ "Save Only Latest": "Simpan Terkini Sahaja",
29
+ "Save Every Weights": "Jimat Setiap Berat",
30
+ "Custom Pretrained": "Pralatih Tersuai",
31
+ "Upload Pretrained Model": "Muat naik Model Pralatih",
32
+ "Pretrained Custom Settings": "Seting Tersuai Pralatih",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "Fail yang anda gugurkan bukan fail pralatih yang sah. Sila cuba lagi.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Klik butang segar semula untuk melihat fail pralatih dalam menu juntai bawah.",
35
+ "Pretrained G Path": "Custom Pretrained G",
36
+ "Pretrained D Path": "Custom Pretrained D",
37
+ "GPU Settings": "Seting GPU",
38
+ "GPU Custom Settings": "Seting Tersuai GPU",
39
+ "GPU Number": "Nombor GPU",
40
+ "0 to ∞ separated by -": "0 hingga ∞ dipisahkan oleh -",
41
+ "GPU Information": "Maklumat GPU",
42
+ "Pitch Guidance": "Panduan Padang",
43
+ "Extract Features": "Ciri Ekstrak",
44
+ "Start Training": "Mulakan Latihan",
45
+ "Generate Index": "Menjana Indeks",
46
+ "Voice Model": "Model Suara",
47
+ "Index File": "Fail Indeks",
48
+ "Refresh": "Refresh",
49
+ "Unload Voice": "Memunggah Suara",
50
+ "Single": "Tunggal",
51
+ "Upload Audio": "Muat naik Audio",
52
+ "Select Audio": "Pilih Audio",
53
+ "Advanced Settings": "Seting Lanjutan",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Kosongkan Output (Memadamkan semua audio dalam aset/audio)",
55
+ "Custom Output Path": "Laluan Output Tersuai",
56
+ "Output Path": "Laluan Output",
57
+ "Pitch": "Pitch",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Jika >=3: gunakan penapisan median pada hasil padang yang dituai. Nilai mewakili jejari penapis dan boleh mengurangkan sesak nafas",
59
+ "Search Feature Ratio": "Nisbah Ciri Carian",
60
+ "Pitch extraction algorithm": "Algoritma pengekstrakan padang",
61
+ "Convert": "Menukar",
62
+ "Export Audio": "Eksport Audio",
63
+ "Batch": "Kelompok",
64
+ "Input Folder": "Input Folder",
65
+ "Enter input path": "Masukkan laluan input",
66
+ "Output Folder": "Output Folder",
67
+ "Enter output path": "Masukkan laluan output",
68
+ "Get information about the audio": "Mendapatkan maklumat tentang audio",
69
+ "Information about the audio file": "Maklumat mengenai fail audio",
70
+ "Waiting for information...": "Menunggu maklumat...",
71
+ "Model fusion": "Gabungan model",
72
+ "Weight for Model A": "Berat untuk Model A",
73
+ "Whether the model has pitch guidance": "Sama ada model itu mempunyai panduan padang",
74
+ "Model architecture version": "Versi seni bina model",
75
+ "Path to Model A": "Laluan ke Model A",
76
+ "Path to Model B": "Laluan ke Model B",
77
+ "Path to model": "Laluan ke model",
78
+ "Model information to be placed": "Maklumat model yang akan diletakkan",
79
+ "Fusion": "Gabungan",
80
+ "Modify model information": "Ubah suai maklumat model",
81
+ "Path to Model": "Laluan ke Model",
82
+ "Model information to be modified": "Maklumat model untuk diubah suai",
83
+ "Save file name": "Simpan nama fail",
84
+ "Modify": "Mengubah suai",
85
+ "View model information": "Lihat maklumat model",
86
+ "View": "Lihat",
87
+ "Model extraction": "Pengekstrakan model",
88
+ "Model conversion": "Penukaran model",
89
+ "Pth file": "Pth fail",
90
+ "Output of the pth file": "Output fail pth",
91
+ "# How to Report an Issue on GitHub": "# Cara Melaporkan Isu di GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Klik pada butang 'Skrin Rekod' di bawah untuk mula merakam isu yang anda alami.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Setelah anda selesai merakam isu ini, klik pada butang 'Hentikan Rakaman' (butang yang sama, tetapi label berubah bergantung pada sama ada anda merakam secara aktif atau tidak).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Pergi ke [Isu GitHub](https://github.com/IAHispano/Applio/issues) dan klik pada butang 'Isu Baru'.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Lengkapkan templat isu yang disediakan, pastikan untuk memasukkan butiran mengikut keperluan, dan gunakan bahagian aset untuk memuat naik fail yang dirakam dari langkah sebelumnya.",
96
+ "Record Screen": "Skrin Rakam",
97
+ "Record": "Rekod",
98
+ "Stop Recording": "Hentikan Rakaman",
99
+ "Introduce the model .pth path": "Memperkenalkan model laluan .pth",
100
+ "See Model Information": "Lihat Maklumat Model",
101
+ "## Download Model": "## Muat Turun Model",
102
+ "Model Link": "Pautan Model",
103
+ "Introduce the model link": "Memperkenalkan pautan model",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## Jatuhkan fail",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Seret fail .pth dan fail .index anda ke dalam ruang ini. Seret satu dan kemudian yang lain.",
107
+ "TTS Voices": "Suara TTS",
108
+ "Text to Synthesize": "Teks untuk Mensintesis",
109
+ "Enter text to synthesize": "Masukkan teks untuk mensintesis saiz",
110
+ "Output Path for TTS Audio": "Laluan output untuk TTS Audio",
111
+ "Output Path for RVC Audio": "Laluan Output untuk Audio RVC",
112
+ "Enable Applio integration with Discord presence": "Kehadiran Applio"
113
+ }
assets/i18n/languages/nl_NL.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Ultieme tool voor het klonen van stemmen, zorgvuldig geoptimaliseerd voor ongeëvenaarde kracht, modulariteit en gebruiksvriendelijke ervaring.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Deze sectie bevat enkele extra hulpprogramma's die zich vaak in experimentele fasen bevinden.",
4
+ "Output Information": "Output Informatie",
5
+ "Inference": "Conclusie",
6
+ "Train": "Trein",
7
+ "Extra": "Extra",
8
+ "Merge Audios": "Audio samenvoegen",
9
+ "Processing": "Verwerking",
10
+ "Audio Analyzer": "Audio Analyzer",
11
+ "Model Information": "Modelinformatie",
12
+ "Download": "Downloaden",
13
+ "Report a Bug": "Een bug melden",
14
+ "Preprocess": "Voorbewerking",
15
+ "Model Name": "Modelnaam",
16
+ "Enter model name": "Voer de modelnaam in",
17
+ "Dataset Path": "Pad naar gegevensset",
18
+ "Enter dataset path": "Pad naar gegevensset invoeren",
19
+ "Sampling Rate": "Bemonsteringsfrequentie",
20
+ "RVC Version": "RVC-versie",
21
+ "Preprocess Dataset": "Gegevensset voor het proces",
22
+ "Extract": "Extract",
23
+ "Hop Length": "Hop Lengte",
24
+ "Batch Size": "Batchgrootte",
25
+ "Save Every Epoch": "Red elk tijdperk",
26
+ "Total Epoch": "Totale tijdvak",
27
+ "Pretrained": "Voorgetraind",
28
+ "Save Only Latest": "Alleen de nieuwste opslaan",
29
+ "Save Every Weights": "Sla alle gewichten op",
30
+ "Custom Pretrained": "Aangepaste voorgetrainde",
31
+ "Upload Pretrained Model": "Vooraf getraind model uploaden",
32
+ "Pretrained Custom Settings": "Vooraf getrainde aangepaste instellingen",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "Het bestand dat u hebt neergezet, is geen geldig vooraf getraind bestand. Probeer het opnieuw.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Klik op de knop Vernieuwen om het vooraf getrainde bestand in het vervolgkeuzemenu te zien.",
35
+ "Pretrained G Path": "Aangepaste voorgetrainde G",
36
+ "Pretrained D Path": "Aangepaste voorgetrainde D",
37
+ "GPU Settings": "GPU-instellingen",
38
+ "GPU Custom Settings": "Aangepaste GPU-instellingen",
39
+ "GPU Number": "GPU-nummer",
40
+ "0 to ∞ separated by -": "0 tot ∞ gescheiden door -",
41
+ "GPU Information": "GPU-informatie",
42
+ "Pitch Guidance": "Begeleiding bij het veld",
43
+ "Extract Features": "Extraheer functies",
44
+ "Start Training": "Begin met trainen",
45
+ "Generate Index": "Index genereren",
46
+ "Voice Model": "Stem Model",
47
+ "Index File": "Index-bestand",
48
+ "Refresh": "Opfrissen",
49
+ "Unload Voice": "Stem lossen",
50
+ "Single": "Ongetrouwd",
51
+ "Upload Audio": "Audio uploaden",
52
+ "Select Audio": "Selecteer Audio",
53
+ "Advanced Settings": "Geavanceerde instellingen",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Uitvoer wissen (verwijdert alle audio in assets/audio)",
55
+ "Custom Output Path": "Aangepast uitvoerpad",
56
+ "Output Path": "Uitgang Pad",
57
+ "Pitch": "Toonhoogte",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Indien >=3: mediaanfiltering toepassen op de resultaten van de geoogste toonhoogte. De waarde vertegenwoordigt de filterstraal en kan de ademhaling verminderen",
59
+ "Search Feature Ratio": "Verhouding zoekfunctie",
60
+ "Pitch extraction algorithm": "Algoritme voor het extraheren van toonhoogte",
61
+ "Convert": "Omzetten",
62
+ "Export Audio": "Audio exporteren",
63
+ "Batch": "Batch",
64
+ "Input Folder": "Invoermap",
65
+ "Enter input path": "Voer het invoerpad in",
66
+ "Output Folder": "Uitvoer map",
67
+ "Enter output path": "Voer het uitvoerpad in",
68
+ "Get information about the audio": "Informatie over de audio opvragen",
69
+ "Information about the audio file": "Informatie over het audiobestand",
70
+ "Waiting for information...": "Wachten op informatie...",
71
+ "Model fusion": "Fusie van modellen",
72
+ "Weight for Model A": "Gewicht voor Model A",
73
+ "Whether the model has pitch guidance": "Of het model pitchbegeleiding heeft",
74
+ "Model architecture version": "Versie van de modelarchitectuur",
75
+ "Path to Model A": "Pad naar Model A",
76
+ "Path to Model B": "Pad naar Model B",
77
+ "Path to model": "Pad naar model",
78
+ "Model information to be placed": "Te plaatsen modelinformatie",
79
+ "Fusion": "Samensmelting",
80
+ "Modify model information": "Modelgegevens wijzigen",
81
+ "Path to Model": "Pad naar model",
82
+ "Model information to be modified": "Modelinformatie die moet worden gewijzigd",
83
+ "Save file name": "Bestandsnaam opslaan",
84
+ "Modify": "Modificeren",
85
+ "View model information": "Modelinformatie weergeven",
86
+ "View": "Bekijken",
87
+ "Model extraction": "Extractie van modellen",
88
+ "Model conversion": "Model conversie",
89
+ "Pth file": "Pth-bestand",
90
+ "Output of the pth file": "Uitvoer van het pth-bestand",
91
+ "# How to Report an Issue on GitHub": "# Een probleem melden op GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Klik op de knop 'Opnamescherm' hieronder om te beginnen met het opnemen van het probleem dat u ondervindt.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Als u klaar bent met het opnemen van het probleem, klikt u op de knop 'Opname stoppen' (dezelfde knop, maar het label verandert afhankelijk van of u actief aan het opnemen bent of niet).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Ga naar [GitHub Issues](https://github.com/IAHispano/Applio/issues) en klik op de knop 'New Issue'.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Vul het meegeleverde uitgiftesjabloon in, zorg ervoor dat u indien nodig details opneemt en gebruik het gedeelte Activa om het opgenomen bestand uit de vorige stap te uploaden.",
96
+ "Record Screen": "Scherm opnemen",
97
+ "Record": "Record",
98
+ "Stop Recording": "Opname stoppen",
99
+ "Introduce the model .pth path": "Introduceer het model .pth-pad",
100
+ "See Model Information": "Modelinformatie bekijken",
101
+ "## Download Model": "## Model downloaden",
102
+ "Model Link": "Koppeling naar het model",
103
+ "Introduce the model link": "Introduceer de modellink",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## Bestanden neerzetten",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Sleep uw .pth-bestand en .index-bestand naar deze ruimte. Sleep de ene en dan de andere.",
107
+ "TTS Voices": "TTS-stemmen",
108
+ "Text to Synthesize": "Tekst om te synthetiseren",
109
+ "Enter text to synthesize": "Voer tekst in om te synthetiseren",
110
+ "Output Path for TTS Audio": "Uitvoerpad voor TTS-audio",
111
+ "Output Path for RVC Audio": "Uitvoerpad voor RVC-audio",
112
+ "Enable Applio integration with Discord presence": "Applio Aanwezigheid"
113
+ }
assets/i18n/languages/pa_PA.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "ਅੰਤਮ ਵੌਇਸ ਕਲੋਨਿੰਗ ਟੂਲ, ਬੇਮਿਸਾਲ ਸ਼ਕਤੀ, ਮਾਡਿਊਲਰਿਟੀ, ਅਤੇ ਉਪਭੋਗਤਾ-ਅਨੁਕੂਲ ਅਨੁਭਵ ਲਈ ਧਿਆਨ ਨਾਲ ਅਨੁਕੂਲ ਬਣਾਇਆ ਗਿਆ ਹੈ.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "ਇਸ ਭਾਗ ਵਿੱਚ ਕੁਝ ਵਾਧੂ ਉਪਯੋਗਤਾਵਾਂ ਹਨ ਜੋ ਅਕਸਰ ਪ੍ਰਯੋਗਾਤਮਕ ਪੜਾਵਾਂ ਵਿੱਚ ਹੋ ਸਕਦੀਆਂ ਹਨ।",
4
+ "Output Information": "ਆਊਟਪੁੱਟ ਜਾਣਕਾਰੀ",
5
+ "Inference": "ਅਨੁਮਾਨ",
6
+ "Train": "ਟ੍ਰੇਨ",
7
+ "Extra": "ਵਾਧੂ",
8
+ "Merge Audios": "ਆਡੀਓ ਨੂੰ ਮਿਲਾਓ",
9
+ "Processing": "ਪ੍ਰੋਸੈਸਿੰਗ",
10
+ "Audio Analyzer": "ਆਡੀਓ ਵਿਸ਼ਲੇਸ਼ਕ",
11
+ "Model Information": "ਮਾਡਲ ਜਾਣਕਾਰੀ",
12
+ "Download": "ਡਾਊਨਲੋਡ ਕਰੋ",
13
+ "Report a Bug": "ਇੱਕ ਬਗ ਦੀ ਰਿਪੋਰਟ ਕਰੋ",
14
+ "Preprocess": "ਪ੍ਰੀਪ੍ਰੋਸੈਸ",
15
+ "Model Name": "ਮਾਡਲ ਦਾ ਨਾਮ",
16
+ "Enter model name": "ਮਾਡਲ ਨਾਮ ਦਾਖਲ ਕਰੋ",
17
+ "Dataset Path": "ਡਾਟਾਸੈਟ ਪਾਥ",
18
+ "Enter dataset path": "ਡਾਟਾਸੈਟ ਪਾਥ ਦਾਖਲ ਕਰੋ",
19
+ "Sampling Rate": "ਨਮੂਨੇ ਲੈਣ ਦੀ ਦਰ",
20
+ "RVC Version": "RVC ਸੰਸਕਰਣ",
21
+ "Preprocess Dataset": "ਪ੍ਰੀਪ੍ਰੋਸੈਸ ਡੇਟਾਸੈਟ",
22
+ "Extract": "ਐਕਸਟਰੈਕਟ",
23
+ "Hop Length": "ਹੌਪ ਲੰਬਾਈ",
24
+ "Batch Size": "ਬੈਚ ਦਾ ਆਕਾਰ",
25
+ "Save Every Epoch": "ਹਰ ਯੁੱਗ ਨੂੰ ਸੁਰੱਖਿਅਤ ਕਰੋ",
26
+ "Total Epoch": "ਕੁੱਲ ਯੁੱਗ",
27
+ "Pretrained": "ਪਹਿਲਾਂ ਤੋਂ ਸਿਖਲਾਈ ਪ੍ਰਾਪਤ",
28
+ "Save Only Latest": "ਕੇਵਲ ਨਵੀਨਤਮ ਨੂੰ ਸੁਰੱਖਿਅਤ ਕਰੋ",
29
+ "Save Every Weights": "ਹਰ ਭਾਰ ਨੂੰ ਬਚਾਓ",
30
+ "Custom Pretrained": "ਕਸਟਮ ਪ੍ਰੀਟ੍ਰੇਨਡ",
31
+ "Upload Pretrained Model": "ਪਹਿਲਾਂ ਤੋਂ ਸਿਖਲਾਈ ਪ੍ਰਾਪਤ ਮਾਡਲ ਅਪਲੋਡ ਕਰੋ",
32
+ "Pretrained Custom Settings": "ਪਹਿਲਾਂ ਤੋਂ ਸਿਖਲਾਈ ਪ੍ਰਾਪਤ ਕਸਟਮ ਸੈਟਿੰਗਾਂ",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "ਤੁਹਾਡੇ ਵੱਲੋਂ ਛੱਡੀ ਗਈ ਫਾਇਲ ਇੱਕ ਵੈਧ ਪੂਰਵ-ਸਿਖਲਾਈ ਪ੍ਰਾਪਤ ਫਾਇਲ ਨਹੀਂ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "ਡ੍ਰੌਪਡਾਊਨ ਮੀਨੂ ਵਿੱਚ ਪਹਿਲਾਂ ਤੋਂ ਸਿਖਲਾਈ ਪ੍ਰਾਪਤ ਫਾਇਲ ਨੂੰ ਦੇਖਣ ਲਈ ਰੀਫਰੈਸ਼ ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ।",
35
+ "Pretrained G Path": "ਕਸਟਮ ਪ੍ਰੀਟ੍ਰੇਨਡ G",
36
+ "Pretrained D Path": "ਕਸਟਮ ਪ੍ਰੀਟ੍ਰੇਨਡ ਡੀ",
37
+ "GPU Settings": "GPU ਸੈਟਿੰਗਾਂ",
38
+ "GPU Custom Settings": "GPU ਕਸਟਮ ਸੈਟਿੰਗਾਂ",
39
+ "GPU Number": "GPU ਨੰਬਰ",
40
+ "0 to ∞ separated by -": "0 ਤੋਂ ∞ ਦੁਆਰਾ ਵੱਖ ਕੀਤਾ ਜਾਂਦਾ ਹੈ -",
41
+ "GPU Information": "GPU ਜਾਣਕਾਰੀ",
42
+ "Pitch Guidance": "ਪਿਚ ਗਾਈਡੈਂਸ",
43
+ "Extract Features": "ਐਕਸਟਰੈਕਟ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ",
44
+ "Start Training": "ਸਿਖਲਾਈ ਸ਼ੁਰੂ ਕਰੋ",
45
+ "Generate Index": "ਇੰਡੈਕਸ ਜਨਰੇਟ ਕਰੋ",
46
+ "Voice Model": "ਵੌਇਸ ਮਾਡਲ",
47
+ "Index File": "ਇੰਡੈਕਸ ਫਾਇਲ",
48
+ "Refresh": "ਤਾਜ਼ਾ ਕਰੋ",
49
+ "Unload Voice": "ਆਵਾਜ਼ ਨੂੰ ਅਨਲੋਡ ਕਰੋ",
50
+ "Single": "ਸਿੰਗਲ",
51
+ "Upload Audio": "ਆਡੀਓ ਅੱਪਲੋਡ ਕਰੋ",
52
+ "Select Audio": "ਆਡੀਓ ਚੁਣੋ",
53
+ "Advanced Settings": "ਉੱਨਤ ਸੈਟਿੰਗਾਂ",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "ਸਪਸ਼ਟ ਆਊਟਪੁੱਟ (ਜਾਇਦਾਦਾਂ/ਆਡੀਓ ਵਿੱਚ ਸਾਰੇ ਆਡੀਓ ਮਿਟਾ ਦਿੰਦਾ ਹੈ)",
55
+ "Custom Output Path": "ਕਸਟਮ ਆਉਟਪੁੱਟ ਪਾਥ",
56
+ "Output Path": "ਆਊਟਪੁੱਟ ਪਾਥ",
57
+ "Pitch": "ਪਿਚ",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "ਜੇ >=3: ਕਟਾਈ ਕੀਤੀ ਪਿੱਚ ਦੇ ਨਤੀਜਿਆਂ 'ਤੇ ਮੀਡੀਅਨ ਫਿਲਟਰਿੰਗ ���ਾਗੂ ਕਰੋ. ਮੁੱਲ ਫਿਲਟਰ ਦੇ ਘੇਰੇ ਨੂੰ ਦਰਸਾਉਂਦਾ ਹੈ ਅਤੇ ਸਾਹ ਲੈਣ ਨੂੰ ਘਟਾ ਸਕਦਾ ਹੈ",
59
+ "Search Feature Ratio": "ਖੋਜ ਵਿਸ਼ੇਸ਼ਤਾ ਅਨੁਪਾਤ",
60
+ "Pitch extraction algorithm": "ਪਿਚ ਐਕਸਟਰੈਕਸ਼ਨ ਐਲਗੋਰਿਦਮ",
61
+ "Convert": "ਕਨਵਰਟ ਕਰੋ",
62
+ "Export Audio": "ਆਡੀਓ ਨਿਰਯਾਤ ਕਰੋ",
63
+ "Batch": "ਬੈਚ",
64
+ "Input Folder": "ਇਨਪੁੱਟ ਫੋਲਡਰ",
65
+ "Enter input path": "ਇਨਪੁੱਟ ਪਾਥ ਦਾਖਲ ਕਰੋ",
66
+ "Output Folder": "ਆਊਟਪੁੱਟ ਫੋਲਡਰ",
67
+ "Enter output path": "ਆਊਟਪੁੱਟ ਪਾਥ ਦਾਖਲ ਕਰੋ",
68
+ "Get information about the audio": "ਆਡੀਓ ਬਾਰੇ ਜਾਣਕਾਰੀ ਪ੍ਰਾਪਤ ਕਰੋ",
69
+ "Information about the audio file": "ਆਡੀਓ ਫਾਇਲ ਬਾਰੇ ਜਾਣਕਾਰੀ",
70
+ "Waiting for information...": "ਜਾਣਕਾਰੀ ਦੀ ਉਡੀਕ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ...",
71
+ "Model fusion": "ਮਾਡਲ ਫਿਊਜ਼ਨ",
72
+ "Weight for Model A": "ਮਾਡਲ A ਲਈ ਭਾਰ",
73
+ "Whether the model has pitch guidance": "ਕੀ ਮਾਡਲ ਕੋਲ ਪਿਚ ਗਾਈਡੈਂਸ ਹੈ",
74
+ "Model architecture version": "ਮਾਡਲ ਆਰਕੀਟੈਕਚਰ ਸੰਸਕਰਣ",
75
+ "Path to Model A": "ਮਾਡਲ A ਲਈ ਰਾਹ",
76
+ "Path to Model B": "ਮਾਡਲ B ਲਈ ਰਾਹ",
77
+ "Path to model": "ਮਾਡਲ ਲਈ ਰਾਹ",
78
+ "Model information to be placed": "ਮਾਡਲ ਜਾਣਕਾਰੀ ਰੱਖੀ ਜਾਣੀ ਚਾਹੀਦੀ ਹੈ",
79
+ "Fusion": "ਫਿਊਜ਼ਨ",
80
+ "Modify model information": "ਮਾਡਲ ਜਾਣਕਾਰੀ ਨੂੰ ਸੋਧੋ",
81
+ "Path to Model": "ਮਾਡਲ ਲਈ ਰਾਹ",
82
+ "Model information to be modified": "ਮਾਡਲ ਜਾਣਕਾਰੀ ਨੂੰ ਸੋਧਿਆ ਜਾਣਾ ਚਾਹੀਦਾ ਹੈ",
83
+ "Save file name": "ਫਾਇਲ ਨਾਮ ਸੁਰੱਖਿਅਤ ਕਰੋ",
84
+ "Modify": "ਸੋਧੋ",
85
+ "View model information": "ਮਾਡਲ ਜਾਣਕਾਰੀ ਦੇਖੋ",
86
+ "View": "ਦ੍ਰਿਸ਼",
87
+ "Model extraction": "ਮਾਡਲ ਕੱਢਣਾ",
88
+ "Model conversion": "ਮਾਡਲ ਪਰਿਵਰਤਨ",
89
+ "Pth file": "Pth ਫਾਇਲ",
90
+ "Output of the pth file": "pth ਫਾਇਲ ਦਾ ਆਊਟਪੁੱਟ",
91
+ "# How to Report an Issue on GitHub": "# GitHub 'ਤੇ ਕਿਸੇ ਮੁੱਦੇ ਦੀ ਰਿਪੋਰਟ ਕਿਵੇਂ ਕਰਨੀ ਹੈ",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. ਤੁਹਾਡੇ ਵੱਲੋਂ ਅਨੁਭਵ ਕੀਤੀ ਜਾ ਰਹੀ ਸਮੱਸਿਆ ਨੂੰ ਰਿਕਾਰਡ ਕਰਨਾ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਹੇਠਾਂ ਦਿੱਤੇ 'ਰਿਕਾਰਡ ਸਕ੍ਰੀਨ' ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ।",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. ਇੱਕ ਵਾਰ ਜਦੋਂ ਤੁਸੀਂ ਸਮੱਸਿਆ ਨੂੰ ਰਿਕਾਰਡ ਕਰਨਾ ਪੂਰਾ ਕਰ ਲੈਂਦੇ ਹੋ, ਤਾਂ 'ਸਟਾਪ ਰਿਕਾਰਡਿੰਗ' ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ (ਉਹੀ ਬਟਨ, ਪਰ ਲੇਬਲ ਇਸ ਗੱਲ 'ਤੇ ਨਿਰਭਰ ਕਰਦਾ ਹੈ ਕਿ ਤੁਸੀਂ ਸਰਗਰਮੀ ਨਾਲ ਰਿਕਾਰਡਿੰਗ ਕਰ ਰਹੇ ਹੋ ਜਾਂ ਨਹੀਂ)।",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub ਮੁੱਦੇ] (https://github.com/IAHispano/Applio/issues) 'ਤੇ ਜਾਓ ਅਤੇ 'ਨਵਾਂ ਮੁੱਦਾ' ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ।",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. ਪ੍ਰਦਾਨ ਕੀਤੇ ਮੁੱਦੇ ਦੇ ਟੈਂਪਲੇਟ ਨੂੰ ਪੂਰਾ ਕਰੋ, ਲੋੜ ਅਨੁਸਾਰ ਵੇਰਵੇ ਸ਼ਾਮਲ ਕਰਨਾ ਯਕੀਨੀ ਬਣਾਓ, ਅਤੇ ਪਿਛਲੇ ਕਦਮ ਤੋਂ ਰਿਕਾਰਡ ਕੀਤੀ ਫਾਈਲ ਨੂੰ ਅੱਪਲੋਡ ਕਰਨ ਲਈ ਸੰਪਤੀ ਸੈਕਸ਼ਨ ਦੀ ਵਰਤੋਂ ਕਰੋ.",
96
+ "Record Screen": "ਰਿਕਾਰਡ ਸਕ੍ਰੀਨ",
97
+ "Record": "ਰਿਕਾਰਡ",
98
+ "Stop Recording": "ਰਿਕਾਰਡਿੰਗ ਬੰਦ ਕਰੋ",
99
+ "Introduce the model .pth path": "ਮਾਡਲ .pth path ਨੂੰ ਪੇਸ਼ ਕਰੋ",
100
+ "See Model Information": "ਮਾਡਲ ਜਾਣਕਾਰੀ ਦੇਖੋ",
101
+ "## Download Model": "## ਡਾਊਨਲੋਡ ਮਾਡਲ",
102
+ "Model Link": "ਮਾਡਲ ਲਿੰਕ",
103
+ "Introduce the model link": "ਮਾਡਲ ਲਿੰਕ ਪੇਸ਼ ਕਰੋ",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## ਫਾਇਲਾਂ ਛੱਡੋ",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "ਆਪਣੀ .pth ਫਾਇਲ ਅਤੇ .index ਫਾਇਲ ਨੂੰ ਇਸ ਸਪੇਸ ਵਿੱਚ ਖਿੱਚੋ। ਇੱਕ ਨੂੰ ਖਿੱਚੋ ਅਤੇ ਫਿਰ ਦੂਜੇ ਨੂੰ।",
107
+ "TTS Voices": "TTS ਆਵਾਜ਼ਾਂ",
108
+ "Text to Synthesize": "ਸੰਸ਼ਲੇਸ਼ਣ ਕਰਨ ਲਈ ਟੈਕਸਟ",
109
+ "Enter text to synthesize": "ਸੰਸ਼ਲੇਸ਼ਿਤ ਕਰਨ ਲਈ ਟੈਕਸਟ ਦਾਖਲ ਕਰੋ",
110
+ "Output Path for TTS Audio": "TTS ਆਡੀਓ ਲਈ ਆਉਟਪੁੱਟ ਪਾਥ",
111
+ "Output Path for RVC Audio": "RVC ਆਡੀਓ ਲਈ ਆਉਟਪੁੱਟ ਪਾਥ",
112
+ "Enable Applio integration with Discord presence": "ਏਪਲੀਓ ਪ੍ਰੈਜ਼ੈਂਸ"
113
+ }
assets/i18n/languages/pl_PL.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Najlepsze narzędzie do klonowania głosu, skrupulatnie zoptymalizowane pod kątem niezrównanej mocy, modułowości i przyjazności dla użytkownika.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Ta sekcja zawiera kilka dodatkowych narzędzi, które często mogą znajdować się w fazie eksperymentalnej.",
4
+ "Output Information": "Informacje wyjściowe",
5
+ "Inference": "Inferencja",
6
+ "Train": "Trenuj",
7
+ "Extra": "Dodatki",
8
+ "Merge Audios": "Scal audio",
9
+ "Processing": "Przetwarzanie",
10
+ "Audio Analyzer": "Analizator dźwięku",
11
+ "Model Information": "Informacje o modelu",
12
+ "Download": "Pobierz",
13
+ "Report a Bug": "Zgłoś błąd",
14
+ "Preprocess": "Przetwarzanie wstępne",
15
+ "Model Name": "Nazwa modelu",
16
+ "Enter model name": "Wprowadź nazwę modelu",
17
+ "Dataset Path": "Ścieżka datasetu",
18
+ "Enter dataset path": "Wprowadź ścieżkę datasetu",
19
+ "Sampling Rate": "Częstotliwość próbkowania",
20
+ "RVC Version": "Wersja RVC",
21
+ "Preprocess Dataset": "Wstępne przetwarzanie datasetu",
22
+ "Extract": "Ekstraktuj",
23
+ "Hop Length": "Długość przeskoku (Hop Length)",
24
+ "Batch Size": "Rozmiar serii",
25
+ "Save Every Epoch": "Zapisz każdą epokę",
26
+ "Total Epoch": "Epok razem",
27
+ "Pretrained": "Wstępnie wytrenowany",
28
+ "Save Only Latest": "Zapisz tylko najnowszą",
29
+ "Save Every Weights": "Zapisz każdą wagę",
30
+ "Custom Pretrained": "Niestandardowe wstępnie wytrenowane modele",
31
+ "Upload Pretrained Model": "Prześlij wstępnie wytrenowany model",
32
+ "Pretrained Custom Settings": "Ustawienia wstępnie wytrenowanych modeli",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "Upuszczony plik nie jest prawidłowym wstępnie wytrenowanym plikiem. Spróbuj ponownie.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Kliknij przycisk odświeżania, aby wyświetlić wstępnie wytrenowany plik w menu rozwijanym.",
35
+ "Pretrained G Path": "Niestandardowe wstępnie wytrenowane model G",
36
+ "Pretrained D Path": "Niestandardowy wstępnie wytrenowany model D",
37
+ "GPU Settings": "Ustawienia GPU",
38
+ "GPU Custom Settings": "Niestandardowe ustawienia GPU",
39
+ "GPU Number": "Numer GPU",
40
+ "0 to ∞ separated by -": "Od 0 do ∞ oddzielone -",
41
+ "GPU Information": "Informacje o GPU",
42
+ "Pitch Guidance": "Wskazówki dot. ekstrakcji pitchu",
43
+ "Extract Features": "Ekstraktuj cechy",
44
+ "Start Training": "Rozpocznij trenowanie",
45
+ "Generate Index": "Generuj indeks",
46
+ "Voice Model": "Model głosu",
47
+ "Index File": "Plik indeksu",
48
+ "Refresh": "Odśwież",
49
+ "Unload Voice": "Odłącz głos",
50
+ "Single": "Pojedyncze",
51
+ "Upload Audio": "Prześlij dźwięk",
52
+ "Select Audio": "Wybierz dźwięk",
53
+ "Advanced Settings": "Ustawienia zaawansowane",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Wyczyść wyjścia (usuwa wszystkie pliki audio w zasobach/plikach audio)",
55
+ "Custom Output Path": "Niestandardowa ścieżka wyjściowa",
56
+ "Output Path": "Ścieżka wyjściowa",
57
+ "Pitch": "Pitch",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Jeśli >=3: zastosuj filtrowanie medianowe do zebranych wyników pitchu. Wartość ta reprezentuje promień filtra i może zmniejszyć 'duszność'",
59
+ "Search Feature Ratio": "Wskaźnik funkcji wyszukiwania",
60
+ "Pitch extraction algorithm": "Algorytm ekstrakcji pitchu",
61
+ "Convert": "Konwertuj",
62
+ "Export Audio": "Wyeksportowany dźwięk",
63
+ "Batch": "Seria",
64
+ "Input Folder": "Folder wejściowy",
65
+ "Enter input path": "Wprowadź ścieżkę wejściową",
66
+ "Output Folder": "Folder wyjściowy",
67
+ "Enter output path": "Wprowadź ścieżkę wyjściową",
68
+ "Get information about the audio": "Uzyskiwanie informacji o dźwięku",
69
+ "Information about the audio file": "Informacje o pliku audio",
70
+ "Waiting for information...": "Czekam na informację...",
71
+ "Model fusion": "Fuzja modeli",
72
+ "Weight for Model A": "Waga modelu A",
73
+ "Whether the model has pitch guidance": "Czy model ma wskazówki dot. ekstrakcji pitchu",
74
+ "Model architecture version": "Wersja architektury modelu",
75
+ "Path to Model A": "Ścieżka do modelu A",
76
+ "Path to Model B": "Ścieżka do modelu B",
77
+ "Path to model": "Ścieżka do modelu",
78
+ "Model information to be placed": "Informacje o modelu, które mają zostać umieszczone",
79
+ "Fusion": "Fuzja",
80
+ "Modify model information": "Modyfikowanie informacji o modelu",
81
+ "Path to Model": "Ścieżka do modelu",
82
+ "Model information to be modified": "Informacje o modelu, które mają zostać zmodyfikowane",
83
+ "Save file name": "Zapisz nazwę pliku",
84
+ "Modify": "Modyfikuj",
85
+ "View model information": "Wyświetlanie informacji o modelu",
86
+ "View": "Widok",
87
+ "Model extraction": "Wyodrębnianie modelu",
88
+ "Model conversion": "Konwersja modelu",
89
+ "Pth file": "Plik pth",
90
+ "Output of the pth file": "Wyjście pliku pth",
91
+ "# How to Report an Issue on GitHub": "# Jak zgłosić problem na GitHubie",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Kliknij przycisk \"Nagraj ekran\" poniżej, aby rozpocząć nagrywanie napotkanego problemu.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Po zakończeniu nagrywania problemu kliknij przycisk \"Zatrzymaj nagrywanie\" (ten sam przycisk, ale etykieta zmienia się w zależności od tego, czy aktywnie nagrywasz, czy nie).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Przejdź do [GitHub Issues](https://github.com/IAHispano/Applio/issues) i kliknij przycisk \"Nowe zgłoszenie\".",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Uzupełnij dostarczony szablon problemu, upewniając się, że w razie potrzeby dołączyłeś szczegóły. Skorzystaj z sekcji zasobów, aby przesłać nagrany plik z poprzedniego kroku.",
96
+ "Record Screen": "Nagraj ekran",
97
+ "Record": "Nagraj",
98
+ "Stop Recording": "Zatrzymaj nagrywanie",
99
+ "Introduce the model .pth path": "Wprowadź ścieżkę do modelu .pth",
100
+ "See Model Information": "Zobacz informacje o modelu",
101
+ "## Download Model": "## Pobierz model",
102
+ "Model Link": "Link do modelu",
103
+ "Introduce the model link": "Wprowadź link do modelu",
104
+ "Download Model": "Pobierz model",
105
+ "## Drop files": "## Przeciągnij pliki",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Przeciągnij tutaj plik .pth i plik .index. Przeciągnij jeden, a potem drugi.",
107
+ "TTS Voices": "Głosy TTS",
108
+ "Text to Synthesize": "Tekst do syntezy",
109
+ "Enter text to synthesize": "Wprowadzanie tekstu do syntezy",
110
+ "Output Path for TTS Audio": "Ścieżka wyjściowa dla TTS",
111
+ "Output Path for RVC Audio": "Ścieżka wyjściowa dla RVC",
112
+ "Enable Applio integration with Discord presence": "Obecność Applio"
113
+ }
assets/i18n/languages/pt_BR.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "A melhor ferramenta de clonagem de voz, meticulosamente otimizada para potência incomparável, modularidade e experiência amigável.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Esta seção contém alguns utilitários extras que muitas vezes podem estar em fases experimentais.",
4
+ "Output Information": "Informações de saída",
5
+ "Inference": "Inferência",
6
+ "Train": "Treinar",
7
+ "Extra": "Extra",
8
+ "Merge Audios": "Mesclar áudios",
9
+ "Processing": "Processamento",
10
+ "Audio Analyzer": "Analisador de áudio",
11
+ "Model Information": "Informação do modelo",
12
+ "Download": "Baixar",
13
+ "Report a Bug": "Reportar um Bug",
14
+ "Preprocess": "Pré-processo",
15
+ "Model Name": "Nome do modelo",
16
+ "Enter model name": "Insira o nome do modelo",
17
+ "Dataset Path": "Caminho do dataset",
18
+ "Enter dataset path": "Insira o caminho do dataset",
19
+ "Sampling Rate": "Taxa de amostragem",
20
+ "RVC Version": "Versão RVC",
21
+ "Preprocess Dataset": "Pré-processar dataset",
22
+ "Extract": "Extrair",
23
+ "Hop Length": "Comprimento do Hop",
24
+ "Batch Size": "Tamanho do lote",
25
+ "Save Every Epoch": "Salve Cada Epoch",
26
+ "Total Epoch": "Epoch Total",
27
+ "Pretrained": "Pré-treinamento",
28
+ "Save Only Latest": "Salvar Apenas o último",
29
+ "Save Every Weights": "Salvar todos os Weights",
30
+ "Custom Pretrained": "Pretrain personalizado",
31
+ "Upload Pretrained Model": "Carregar Pretrain",
32
+ "Pretrained Custom Settings": "Configurações personalizadas do pretrain",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "O arquivo que você soltou não é um arquivo de pretrain válido. Por favor, tente novamente.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Clique no botão Atualizar para ver o arquivo pretrain no menu suspenso.",
35
+ "Pretrained G Path": "Personalizado Pré-treinado G",
36
+ "Pretrained D Path": "Personalizado Pré-treinado D",
37
+ "GPU Settings": "Configurações da GPU",
38
+ "GPU Custom Settings": "Configurações personalizadas da GPU",
39
+ "GPU Number": "Número da GPU",
40
+ "0 to ∞ separated by -": "0 a ∞ separados por -",
41
+ "GPU Information": "Informações da GPU",
42
+ "Pitch Guidance": "Orientação de Pitch",
43
+ "Extract Features": "Extrair recursos",
44
+ "Start Training": "Iniciar Treinamento",
45
+ "Generate Index": "Gerar Index",
46
+ "Voice Model": "Modelo de voz",
47
+ "Index File": "Arquivo de Index",
48
+ "Refresh": "Atualizar",
49
+ "Unload Voice": "Descarregar voz",
50
+ "Single": "Único",
51
+ "Upload Audio": "Carregar áudio",
52
+ "Select Audio": "Selecione Áudio",
53
+ "Advanced Settings": "Configurações avançadas",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Limpar saídas (exclui todos os áudios em ativos/áudios)",
55
+ "Custom Output Path": "Caminho de saída personalizado",
56
+ "Output Path": "Caminho de saída",
57
+ "Pitch": "Pitch",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Se >=3: aplicar filtragem mediana aos resultados do pitch colhido. O valor representa o raio do filtro e pode reduzir a soprosidade",
59
+ "Search Feature Ratio": "Proporção de recursos de Index",
60
+ "Pitch extraction algorithm": "Algoritmo de extração de pitch",
61
+ "Convert": "Converter",
62
+ "Export Audio": "Exportar áudio",
63
+ "Batch": "Lote",
64
+ "Input Folder": "Pasta de entrada",
65
+ "Enter input path": "Insira o caminho de entrada",
66
+ "Output Folder": "Pasta de saída",
67
+ "Enter output path": "Insira o caminho de saída",
68
+ "Get information about the audio": "Obter informações sobre o áudio",
69
+ "Information about the audio file": "Informações sobre o arquivo de áudio",
70
+ "Waiting for information...": "À espera de informações...",
71
+ "Model fusion": "Fusão de modelos",
72
+ "Weight for Model A": "Peso para o modelo A",
73
+ "Whether the model has pitch guidance": "Se o modelo tem orientação de pitch",
74
+ "Model architecture version": "Versão da arquitetura do modelo",
75
+ "Path to Model A": "Caminho para o Modelo A",
76
+ "Path to Model B": "Caminho para o Modelo B",
77
+ "Path to model": "Caminho para o modelo",
78
+ "Model information to be placed": "Modelo de informação a colocar",
79
+ "Fusion": "Fusão",
80
+ "Modify model information": "Modificar informações do modelo",
81
+ "Path to Model": "Caminho para o modelo",
82
+ "Model information to be modified": "Modelo de informação a modificar",
83
+ "Save file name": "Guardar nome de ficheiro",
84
+ "Modify": "Modificar",
85
+ "View model information": "Ver informações do modelo",
86
+ "View": "View",
87
+ "Model extraction": "Extração do modelo",
88
+ "Model conversion": "Conversão de modelo",
89
+ "Pth file": "Arquivo Pth",
90
+ "Output of the pth file": "Saída do arquivo pth",
91
+ "# How to Report an Issue on GitHub": "# Como relatar um problema no GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Clique no botão 'Gravar tela' abaixo para começar a gravar o problema que você está enfrentando.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Depois de terminar de gravar o problema, clique no botão 'Parar gravação' (o mesmo botão, mas a etiqueta muda dependendo se você está gravando ativamente ou não).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Vá para [GitHub Issues](https://github.com/IAHispano/Applio/issues) e clique no botão 'New Issue'.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Preencha o modelo de problema fornecido, garantindo incluir detalhes conforme necessário, e utilize a seção de ativos para carregar o arquivo gravado da etapa anterior.",
96
+ "Record Screen": "Gravar tela",
97
+ "Record": "Gravar",
98
+ "Stop Recording": "Parar gravação",
99
+ "Introduce the model .pth path": "Introduza o caminho .pth do modelo",
100
+ "See Model Information": "Consulte as informações do modelo",
101
+ "## Download Model": "## Baixar Modelo",
102
+ "Model Link": "Link do modelo",
103
+ "Introduce the model link": "Introduza o link do modelo",
104
+ "Download Model": "Baixar Modelo",
105
+ "## Drop files": "## Soltar arquivos",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Arraste o arquivo .pth e o arquivo .index para este espaço. Arraste um e depois o outro.",
107
+ "TTS Voices": "Vozes TTS",
108
+ "Text to Synthesize": "Texto a sintetizar",
109
+ "Enter text to synthesize": "Insira texto para sintetizar",
110
+ "Output Path for TTS Audio": "Caminho de saída para áudio TTS",
111
+ "Output Path for RVC Audio": "Caminho de saída para áudio RVC",
112
+ "Enable Applio integration with Discord presence": "Presença do Applio"
113
+ }
assets/i18n/languages/pt_PT.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "A melhor ferramenta de clonagem de voz, meticulosamente otimizada para potência, modularidade e experiência de fácil utilização incomparáveis.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Esta seção contém alguns utilitários extras que muitas vezes podem estar em fases experimentais.",
4
+ "Output Information": "Informações de saída",
5
+ "Inference": "Inferência",
6
+ "Train": "Trem",
7
+ "Extra": "Extra",
8
+ "Merge Audios": "Mesclar áudios",
9
+ "Processing": "Processamento",
10
+ "Audio Analyzer": "Analisador de áudio",
11
+ "Model Information": "Informações do modelo",
12
+ "Download": "Baixar",
13
+ "Report a Bug": "Relatar um bug",
14
+ "Preprocess": "Pré-processar",
15
+ "Model Name": "Nome do modelo",
16
+ "Enter model name": "Digite o nome do modelo",
17
+ "Dataset Path": "Caminho do conjunto de dados",
18
+ "Enter dataset path": "Inserir caminho do conjunto de dados",
19
+ "Sampling Rate": "Taxa de amostragem",
20
+ "RVC Version": "Versão RVC",
21
+ "Preprocess Dataset": "Pré-processar conjunto de dados",
22
+ "Extract": "Extrair",
23
+ "Hop Length": "Comprimento do salto",
24
+ "Batch Size": "Tamanho do lote",
25
+ "Save Every Epoch": "Salve todas as épocas",
26
+ "Total Epoch": "Época Total",
27
+ "Pretrained": "Pré-treinado",
28
+ "Save Only Latest": "Salvar somente as últimas",
29
+ "Save Every Weights": "Economize todos os pesos",
30
+ "Custom Pretrained": "Pré-treinado personalizado",
31
+ "Upload Pretrained Model": "Carregar modelo pré-treinado",
32
+ "Pretrained Custom Settings": "Configurações personalizadas pré-treinadas",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "O arquivo descartado não é um arquivo pré-treinado válido. Tente novamente.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Clique no botão Atualizar para ver o arquivo pré-treinado no menu suspenso.",
35
+ "Pretrained G Path": "G pré-treinado personalizado",
36
+ "Pretrained D Path": "D pré-treinado personalizado",
37
+ "GPU Settings": "Configurações da GPU",
38
+ "GPU Custom Settings": "Configurações personalizadas da GPU",
39
+ "GPU Number": "Número da GPU",
40
+ "0 to ∞ separated by -": "0 a ∞ separados por -",
41
+ "GPU Information": "Informações da GPU",
42
+ "Pitch Guidance": "Orientação de Pitch",
43
+ "Extract Features": "Recursos de extração",
44
+ "Start Training": "Comece a Treinar",
45
+ "Generate Index": "Gerar índice",
46
+ "Voice Model": "Modelo de Voz",
47
+ "Index File": "Arquivo de índice",
48
+ "Refresh": "Atualizar",
49
+ "Unload Voice": "Descarregar voz",
50
+ "Single": "Único",
51
+ "Upload Audio": "Carregar áudio",
52
+ "Select Audio": "Selecione Áudio",
53
+ "Advanced Settings": "Configurações avançadas",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Limpar saídas (exclui todos os áudios em ativos/áudios)",
55
+ "Custom Output Path": "Caminho de saída personalizado",
56
+ "Output Path": "Caminho de saída",
57
+ "Pitch": "Campo",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Se >=3: aplicar filtragem mediana aos resultados do passo colhido. O valor representa o raio do filtro e pode reduzir a soprosidade",
59
+ "Search Feature Ratio": "Taxa de recursos de pesquisa",
60
+ "Pitch extraction algorithm": "Algoritmo de extração de pitch",
61
+ "Convert": "Converter",
62
+ "Export Audio": "Exportar áudio",
63
+ "Batch": "Lote",
64
+ "Input Folder": "Pasta de entrada",
65
+ "Enter input path": "Insira o caminho de entrada",
66
+ "Output Folder": "Pasta de saída",
67
+ "Enter output path": "Insira o caminho de saída",
68
+ "Get information about the audio": "Obter informações sobre o áudio",
69
+ "Information about the audio file": "Informações sobre o arquivo de áudio",
70
+ "Waiting for information...": "Aguardando informações...",
71
+ "Model fusion": "Fusão de modelos",
72
+ "Weight for Model A": "Peso para o Modelo A",
73
+ "Whether the model has pitch guidance": "Se o modelo tem orientação de pitch",
74
+ "Model architecture version": "Versão da arquitetura do modelo",
75
+ "Path to Model A": "Caminho para o Modelo A",
76
+ "Path to Model B": "Caminho para o Modelo B",
77
+ "Path to model": "Caminho para o modelo",
78
+ "Model information to be placed": "Informações do modelo a ser colocado",
79
+ "Fusion": "Fusão",
80
+ "Modify model information": "Modificar informações do modelo",
81
+ "Path to Model": "Caminho para o modelo",
82
+ "Model information to be modified": "Informações do modelo a serem modificadas",
83
+ "Save file name": "Salvar nome do arquivo",
84
+ "Modify": "Modificar",
85
+ "View model information": "Exibir informações do modelo",
86
+ "View": "Vista",
87
+ "Model extraction": "Extração do modelo",
88
+ "Model conversion": "Conversão de modelos",
89
+ "Pth file": "Arquivo Pth",
90
+ "Output of the pth file": "Saída do arquivo pth",
91
+ "# How to Report an Issue on GitHub": "# Como relatar um problema no GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Clique no botão 'Gravar tela' abaixo para começar a gravar o problema que você está enfrentando.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Depois de terminar de gravar o problema, clique no botão 'Parar gravação' (o mesmo botão, mas a etiqueta muda dependendo se você está gravando ativamente ou não).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Vá para [Problemas do GitHub](https://github.com/IAHispano/Applio/issues) e clique no botão 'Novo problema'.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Preencha o modelo de problema fornecido, garantindo incluir detalhes conforme necessário, e utilize a seção de ativos para carregar o arquivo gravado da etapa anterior.",
96
+ "Record Screen": "Tela de gravação",
97
+ "Record": "Registro",
98
+ "Stop Recording": "Parar gravação",
99
+ "Introduce the model .pth path": "Apresentar o caminho .pth do modelo",
100
+ "See Model Information": "Ver informações do modelo",
101
+ "## Download Model": "## Baixar Modelo",
102
+ "Model Link": "Link do modelo",
103
+ "Introduce the model link": "Apresentar o link do modelo",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## Soltar arquivos",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Arraste o arquivo .pth e o arquivo .index para este espaço. Arraste um e depois o outro.",
107
+ "TTS Voices": "Vozes TTS",
108
+ "Text to Synthesize": "Texto para sintetizar",
109
+ "Enter text to synthesize": "Digite o texto para sintetizar",
110
+ "Output Path for TTS Audio": "Caminho de saída para áudio TTS",
111
+ "Output Path for RVC Audio": "Caminho de saída para áudio RVC",
112
+ "Enable Applio integration with Discord presence": "Presença do Applio"
113
+ }
assets/i18n/languages/ro_RO.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Cel mai bun instrument de clonare a vocii, optimizat meticulos pentru putere, modularitate și experiență ușor de utilizat.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Această secțiune conține câteva utilități suplimentare care pot fi adesea în faze experimentale.",
4
+ "Output Information": "Informații despre ieșire",
5
+ "Inference": "Deducţie",
6
+ "Train": "Tren",
7
+ "Extra": "Superfluu",
8
+ "Merge Audios": "Îmbinare audio",
9
+ "Processing": "Prelucrare",
10
+ "Audio Analyzer": "Analizor audio",
11
+ "Model Information": "Informații despre model",
12
+ "Download": "Descărca",
13
+ "Report a Bug": "Raportați o eroare",
14
+ "Preprocess": "Preproces",
15
+ "Model Name": "Numele modelului",
16
+ "Enter model name": "Introduceți numele modelului",
17
+ "Dataset Path": "Calea setului de date",
18
+ "Enter dataset path": "Introduceți calea setului de date",
19
+ "Sampling Rate": "Rata de eșantionare",
20
+ "RVC Version": "Versiunea RVC",
21
+ "Preprocess Dataset": "Set de date preproces",
22
+ "Extract": "Extract",
23
+ "Hop Length": "Lungimea hameiului",
24
+ "Batch Size": "Mărimea lotului",
25
+ "Save Every Epoch": "Salvați fiecare epocă",
26
+ "Total Epoch": "Epoca totală",
27
+ "Pretrained": "Preinstruit",
28
+ "Save Only Latest": "Salvați numai cele mai recente",
29
+ "Save Every Weights": "Economisiți fiecare greutate",
30
+ "Custom Pretrained": "Personalizat Pretrained",
31
+ "Upload Pretrained Model": "Încărcați modelul preinstruit",
32
+ "Pretrained Custom Settings": "Setări personalizate pre-instruite",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "Fișierul pe care l-ați scăpat nu este un fișier preinstruit valid. Vă rugăm să încercați din nou.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Faceți clic pe butonul de reîmprospătare pentru a vedea fișierul preantrenat în meniul derulant.",
35
+ "Pretrained G Path": "G personalizat preantrenat",
36
+ "Pretrained D Path": "Personalizat Pretrained D",
37
+ "GPU Settings": "Setări GPU",
38
+ "GPU Custom Settings": "Setări personalizate GPU",
39
+ "GPU Number": "Număr GPU",
40
+ "0 to ∞ separated by -": "0 până la ∞ separate de -",
41
+ "GPU Information": "Informații GPU",
42
+ "Pitch Guidance": "Pitch Guidance",
43
+ "Extract Features": "Extrageți caracteristicile",
44
+ "Start Training": "Începeți instruirea",
45
+ "Generate Index": "Generare index",
46
+ "Voice Model": "Model vocal",
47
+ "Index File": "Fișier index",
48
+ "Refresh": "Împrospăta",
49
+ "Unload Voice": "Descărcare voce",
50
+ "Single": "Singur",
51
+ "Upload Audio": "Încărcare audio",
52
+ "Select Audio": "Selectați Audio",
53
+ "Advanced Settings": "Setări avansate",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Ștergeți ieșirile (Șterge toate audio-urile din active / audio)",
55
+ "Custom Output Path": "Cale de ieșire personalizată",
56
+ "Output Path": "Cale de ieșire",
57
+ "Pitch": "Smoală",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Dacă >=3: aplicați filtrarea mediană rezultatelor pitch-ului recoltat. Valoarea reprezintă raza filtrului și poate reduce respirația",
59
+ "Search Feature Ratio": "Raportul caracteristicilor de căutare",
60
+ "Pitch extraction algorithm": "Algoritm de extracție a pitch-ului",
61
+ "Convert": "Converti",
62
+ "Export Audio": "Exportați audio",
63
+ "Batch": "Lot",
64
+ "Input Folder": "Folder de intrare",
65
+ "Enter input path": "Introduceți calea de intrare",
66
+ "Output Folder": "Dosar de ieșire",
67
+ "Enter output path": "Introduceți calea de ieșire",
68
+ "Get information about the audio": "Obțineți informații despre audio",
69
+ "Information about the audio file": "Informații despre fișierul audio",
70
+ "Waiting for information...": "În așteptarea informațiilor...",
71
+ "Model fusion": "Fuziunea modelului",
72
+ "Weight for Model A": "Greutate pentru modelul A",
73
+ "Whether the model has pitch guidance": "Dacă modelul are ghidare pitch",
74
+ "Model architecture version": "Versiunea arhitecturii modelului",
75
+ "Path to Model A": "Calea către modelul A",
76
+ "Path to Model B": "Calea către modelul B",
77
+ "Path to model": "Calea către model",
78
+ "Model information to be placed": "Informații despre model care trebuie plasate",
79
+ "Fusion": "Fuziune",
80
+ "Modify model information": "Modificarea informațiilor despre model",
81
+ "Path to Model": "Calea către model",
82
+ "Model information to be modified": "Informații despre model care trebuie modificate",
83
+ "Save file name": "Salvați numele fișierului",
84
+ "Modify": "Modifica",
85
+ "View model information": "Vizualizarea informațiilor despre model",
86
+ "View": "Vedere",
87
+ "Model extraction": "Extragerea modelului",
88
+ "Model conversion": "Conversia modelului",
89
+ "Pth file": "Fișier Pth",
90
+ "Output of the pth file": "Ieșirea fișierului pth",
91
+ "# How to Report an Issue on GitHub": "# Cum să raportați o problemă pe GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Faceți clic pe butonul \"Ecran de înregistrare\" de mai jos pentru a începe înregistrarea problemei pe care o întâmpinați.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. După ce ați terminat de înregistrat problema, faceți clic pe butonul \"Opriți înregistrarea\" (același buton, dar eticheta se schimbă în funcție de înregistrarea activă sau nu).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Accesați [Probleme GitHub] (https://github.com/IAHispano/Applio/issues) și faceți clic pe butonul \"Problemă nouă\".",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Completați șablonul de problemă furnizat, asigurându-vă că includeți detalii după cum este necesar și utilizați secțiunea active pentru a încărca fișierul înregistrat din pasul anterior.",
96
+ "Record Screen": "Ecran de înregistrare",
97
+ "Record": "Disc",
98
+ "Stop Recording": "Opriți înregistrarea",
99
+ "Introduce the model .pth path": "Introducerea căii .pth a modelului",
100
+ "See Model Information": "Consultați informațiile despre model",
101
+ "## Download Model": "## Descărcați modelul",
102
+ "Model Link": "Model Link",
103
+ "Introduce the model link": "Introduceți linkul modelului",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## Aruncați fișiere",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Glisați fișierul .pth și fișierul .index în acest spațiu. Trageți unul și apoi celălalt.",
107
+ "TTS Voices": "Voci TTS",
108
+ "Text to Synthesize": "Text pentru sintetizare",
109
+ "Enter text to synthesize": "Introduceți text pentru sintetizare",
110
+ "Output Path for TTS Audio": "Cale de ieșire pentru TTS Audio",
111
+ "Output Path for RVC Audio": "Cale de ieșire pentru RVC Audio",
112
+ "Enable Applio integration with Discord presence": "Prezența Applio"
113
+ }
assets/i18n/languages/ru_RU.json ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Идеальный инструмент для клонирования голоса, тщательно оптимизированный для непревзойденной мощности, модульности и удобства использования.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Этот раздел содержит некоторые дополнительные утилиты, которые часто находятся на экспериментальных стадиях.",
4
+ "Output Information": "Результат",
5
+ "Inference": "Использовать модель",
6
+ "Train": "Тренировать модель",
7
+ "Extra": "Дополнительно",
8
+ "Merge Audios": "Слияние аудио",
9
+ "Processing": "Обработка",
10
+ "Audio Analyzer": "Анализ Аудио",
11
+ "Model Information": "Информация о модели",
12
+ "Download": "Загружать",
13
+ "Report a Bug": "Сообщить об ошибке",
14
+ "Preprocess": "Предварительная обработка",
15
+ "Model Name": "Название модели",
16
+ "Enter model name": "Введите название модели",
17
+ "Dataset Path": "Путь к датасету",
18
+ "Enter dataset path": "Введите путь к датасету",
19
+ "Sampling Rate": "Частота дискретизации",
20
+ "RVC Version": "Версия RVC",
21
+ "Preprocess Dataset": "Обработать датасет",
22
+ "Extract": "Извлечь черты",
23
+ "Hop Length": "Размер шага",
24
+ "Batch Size": "Размер батча",
25
+ "Save Every Epoch": "Сохранять каждые _ эпох",
26
+ "Total Epoch": "Количество эпох",
27
+ "Pretrained": "Предварительно обученный",
28
+ "Save Only Latest": "Сохранить только последний CKPT",
29
+ "Save Every Weights": "Сохраняйте все веса",
30
+ "Custom Pretrained": "Кастомные претрейны",
31
+ "Upload Pretrained Model": "Загрузить претрейн",
32
+ "The file you dropped is not a valid pretrained file. Please try again.": "Файл, который вы удалили, не является допустимым предварительно обученным файлом. Повторите попытку.",
33
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Нажмите кнопку обновить, чтобы увидеть предварительно обученный файл в раскрывающемся меню.",
34
+ "Custom Pretrained G": "Кастомный претрейн G",
35
+ "Custom Pretrained D": "Кастомный претрейн D",
36
+ "GPU Settings": "Настройки графического процессора",
37
+ "GPU Custom Settings": "Пользовательские настройки графического процессора",
38
+ "GPU Number": "Номер графического процессора",
39
+ "0 to ∞ separated by -": "от 0 до ∞ разделенных -",
40
+ "GPU Information": "Информация о графическом процессоре",
41
+ "Pitch Guidance": "Модель имеет управление по высоте тона",
42
+ "Extract Features": "Извлечь черты",
43
+ "Start Training": "Начать Тренировку",
44
+ "Generate Index": "Сгенерировать индекс",
45
+ "Voice Model": "Голосовая модель",
46
+ "Index File": "Файл индекса",
47
+ "Refresh": "Обновить список",
48
+ "Unload Voice": "Выгрузить модель",
49
+ "Single": "Конвертировать одно аудио",
50
+ "Upload Audio": "Загрузить аудио",
51
+ "Select Audio": "Аудио",
52
+ "Advanced Settings": "Расширенные настройки",
53
+ "Clear Outputs (Deletes all audios in assets/audios)": "Очистить Папку с Аудио (Удаляет все аудиозаписи в assets/audios)",
54
+ "Custom Output Path": "Пользовательский выходной путь",
55
+ "Output Path": "Путь вывода",
56
+ "Pitch": "Высота тона голоса",
57
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Если >=3: применить медианную фильтрацию к аудио. Значение представляет собой радиус фильтра и может уменьшить излишние вздохи и выдохи",
58
+ "Search Feature Ratio": "Влияние индекса",
59
+ "Pitch extraction algorithm": "Алгоритм извлечения высоты тона",
60
+ "Convert": "Конвертировать",
61
+ "Export Audio": "Аудио",
62
+ "Batch": "Конвертировать несколько аудио",
63
+ "Input Folder": "Папка с аудио",
64
+ "Enter input path": "Введите путь ввода",
65
+ "Output Folder": "Папка вывода аудио",
66
+ "Enter output path": "Введите выходной путь",
67
+ "Get information about the audio": "Показать информации об аудио",
68
+ "Information about the audio file": "Информация об аудиофайле",
69
+ "Waiting for information...": "Ожидание информации...",
70
+ "Model fusion (On progress)": "Слияние моделей",
71
+ "Weight for Model A": "Вес для модели A",
72
+ "Whether the model has pitch guidance": "Есть ли в модели направляющие по тангажу",
73
+ "Model architecture version": "Версия архитектуры модели",
74
+ "Path to Model A": "Путь к модели А",
75
+ "Path to Model B": "Путь к модели B",
76
+ "Path to model": "Путь к модели",
77
+ "Model information to be placed": "Информация о модели",
78
+ "Fusion": "Слияние",
79
+ "Modify model information": "Изменение информации о модели",
80
+ "Path to Model": "Путь к модели",
81
+ "Model information to be modified": "Информация о модели, подлежащая изменению",
82
+ "Save file name": "Сохранить имя файла",
83
+ "Modify": "Модифицировать",
84
+ "View model information": "Просмотр информации о модели",
85
+ "View": "Показать",
86
+ "Model extraction": "Извлечение модели",
87
+ "Model conversion": "Преобразование модели",
88
+ "Pth file": "P-й файл",
89
+ "Output of the pth file": "Вывод p-го файла",
90
+ "# How to Report an Issue on GitHub": "# Как сообщить о проблеме на GitHub",
91
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Нажмите кнопку «Записать экран» ниже, чтобы начать запись проблемы, с которой вы столкнулись.",
92
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. После того, как вы закончили запись задачи, нажмите кнопку «Остановить запись» (та же кнопка, но метка меняется в зависимости от того, ведете ли вы активную запись или нет).",
93
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Перейдите в [GitHub Issues](https://github.com/IAHispano/Applio/issues) и нажмите кнопку «Новая проблема».",
94
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Заполните предоставленный шаблон задачи, не забудьте включить необходимые сведения и используйте раздел ресурсов для загрузки записанного файла с предыдущего шага.",
95
+ "Record Screen": "Запись экрана",
96
+ "Record": "Запись",
97
+ "Stop Recording": "Остановить запись",
98
+ "Introduce the model .pth path": "Знакомство с моделью .pth-пути",
99
+ "See Model Information": "Посмотреть информацию о модели",
100
+ "## Download Model": "## Скачать модель",
101
+ "Model Link": "Ссылка на модель",
102
+ "Introduce the model link": "Введение ссылки на модель",
103
+ "Download Model": "Скачать Модель",
104
+ "## Drop files": "## Загрузить файлы с компьютера",
105
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Перетащите файлы .pth и .index в это пространство. Перетащите один, а затем другой.",
106
+ "TTS Voices": "Голоса TTS",
107
+ "Text to Synthesize": "Текст",
108
+ "Enter text to synthesize": "Введите текст для синтеза",
109
+ "Output Path for TTS Audio": "Путь вывода для TTS аудио",
110
+ "Output Path for RVC Audio": "Путь вывода для RVC аудио",
111
+ "Split Audio": "Разделить Аудио",
112
+ "Refresh Custom Pretraineds": "Обновить список претрейнов",
113
+ "Pretrained Custom Settings": "Настройки кастомных претрейнов",
114
+ "Image": "Изображение",
115
+ "Enable Applio integration with Discord presence": "Присутствие Applio"
116
+ }
assets/i18n/languages/ta_TA.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "இறுதி குரல் குளோனிங் கருவி, நிகரற்ற சக்தி, மாடுலாரிட்டி மற்றும் பயனர் நட்பு அனுபவத்திற்காக உன்னிப்பாக உகந்ததாக உள்ளது.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "இந்த பிரிவில் சில கூடுதல் பயன்பாடுகள் உள்ளன, அவை பெரும்பாலும் சோதனை கட்டங்களில் இருக்கலாம்.",
4
+ "Output Information": "வெளியீட்டு தகவல்",
5
+ "Inference": "அனுமானம்",
6
+ "Train": "தொடர்வண்டி",
7
+ "Extra": "கூடுதல்",
8
+ "Merge Audios": "ஆடியோக்களை ஒன்றிணைக்கவும்",
9
+ "Processing": "செயலாக்க",
10
+ "Audio Analyzer": "ஆடியோ அனலைசர்",
11
+ "Model Information": "மாதிரி தகவல்",
12
+ "Download": "பதிவிறக்க",
13
+ "Report a Bug": "பிழையைப் புகாரளி",
14
+ "Preprocess": "முன் செயல்முறை",
15
+ "Model Name": "மாடல் பெயர்",
16
+ "Enter model name": "மாடல் பெயரை உள்ளிடவும்",
17
+ "Dataset Path": "தரவுத்தொகுப்பு பாதை",
18
+ "Enter dataset path": "தரவுத்தொகுப்பு பாதையை உள்ளிடவும்",
19
+ "Sampling Rate": "மாதிரி மதிப்பீடு",
20
+ "RVC Version": "RVC பதிப்பு",
21
+ "Preprocess Dataset": "செயல்முறைக்கு முந்தைய தரவுத்தொகுப்பு",
22
+ "Extract": "பிரித்தெடுத்தல்",
23
+ "Hop Length": "ஹாப் நீளம்",
24
+ "Batch Size": "தொகுதி அளவு",
25
+ "Save Every Epoch": "ஒவ்வொரு சகாப்தத்தையும் காப்பாற்றுங்கள்",
26
+ "Total Epoch": "மொத்த சகாப்தம்",
27
+ "Pretrained": "முன் பயிற்சி",
28
+ "Save Only Latest": "சமீபத்தியதை மட்டும் சேமிக்கவும்",
29
+ "Save Every Weights": "ஒவ்வொரு எடைகளையும் சேமிக்கவும்",
30
+ "Custom Pretrained": "தனிப்பயன் முன்பயிற்சி",
31
+ "Upload Pretrained Model": "முன்பயிற்சி பெற்ற மாதிரியைப் பதிவேற்றவும்",
32
+ "Pretrained Custom Settings": "முன் பயிற்சி பெற்ற தனிப்பயன் அமைப்புகள்",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "நீங்கள் கைவிட்ட கோப்பு ஒரு செல்லத்தக்க முன்பயிற்சி பெற்ற கோப்பு அல்ல. மீண்டும் முயற்சிக்கவும்.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "கீழ்தோன்றும் மெனுவில் முன்பயிற்சி பெற்ற கோப்பைக் காண புதுப்பிப்பு பொத்தானைக் கிளிக் செய்யவும்.",
35
+ "Pretrained G Path": "தனிப்பயன் முன் பயிற்சி ஜி",
36
+ "Pretrained D Path": "தனிப்பயன் முன்பயிற்சி D",
37
+ "GPU Settings": "GPU அமைப்புகள்",
38
+ "GPU Custom Settings": "GPU தனிப்பயன் அமைப்புகள்",
39
+ "GPU Number": "GPU எண்",
40
+ "0 to ∞ separated by -": "0 முதல் ∞ வரை பிரிக்கப்பட்டுள்ளது -",
41
+ "GPU Information": "தகவல்",
42
+ "Pitch Guidance": "சுருதி வழிகாட்டுதல்",
43
+ "Extract Features": "பிரித்தெடுக்கும் அம்சங்கள்",
44
+ "Start Training": "பயிற்சியைத் தொடங்குங்கள்",
45
+ "Generate Index": "குறியீட்டை உருவாக்கவும்",
46
+ "Voice Model": "குரல் மாதிரி",
47
+ "Index File": "அட்டவணை கோப்பு",
48
+ "Refresh": "புதுப்பி",
49
+ "Unload Voice": "குரலை இறக்கவும்",
50
+ "Single": "ஒற்றை",
51
+ "Upload Audio": "ஆடியோவை பதிவேற்றவும்",
52
+ "Select Audio": "ஆடியோவை தேர்ந்தெடு",
53
+ "Advanced Settings": "மேம���பட்ட அமைப்புகள்",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "வெளியீடுகளை அழிக்கவும் (சொத்துக்கள் / ஆடியோக்களில் உள்ள அனைத்து ஆடியோக்களையும் நீக்குகிறது)",
55
+ "Custom Output Path": "தனிப்பயன் வெளியீட்டு பாதை",
56
+ "Output Path": "வெளியீட்டுப் பாதை",
57
+ "Pitch": "எறி",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "> = 3 என்றால்: அறுவடை செய்யப்பட்ட சுருதி முடிவுகளுக்கு சராசரி வடிகட்டலைப் பயன்படுத்துங்கள். மதிப்பு வடிகட்டி ஆரம் பிரதிபலிக்கிறது மற்றும் மூச்சு குறைக்க முடியும்",
59
+ "Search Feature Ratio": "தேடல் அம்ச விகிதம்",
60
+ "Pitch extraction algorithm": "சுருதி பிரித்தெடுத்தல் அல்காரிதம்",
61
+ "Convert": "உருமாற்று",
62
+ "Export Audio": "ஆடியோவை ஏற்றுமதி செய்யவும்",
63
+ "Batch": "தொகுதி",
64
+ "Input Folder": "உள்ளீட்டு கோப்புறை",
65
+ "Enter input path": "உள்ளீட்டு பாதையை உள்ளிடவும்",
66
+ "Output Folder": "வெளியீட்டு கோப்புறை",
67
+ "Enter output path": "வெளியீட்டு பாதையை உள்ளிடவும்",
68
+ "Get information about the audio": "ஆடியோ பற்றிய தகவலைப் பெறுங்கள்",
69
+ "Information about the audio file": "ஆடியோ கோப்பு பற்றிய தகவல்",
70
+ "Waiting for information...": "தகவலுக்காக காத்திருக்கிறேன்...",
71
+ "Model fusion": "மாதிரி இணைவு",
72
+ "Weight for Model A": "மாடல் A க்கான எடை",
73
+ "Whether the model has pitch guidance": "மாடலுக்கு சுருதி வழிகாட்டுதல் உள்ளதா",
74
+ "Model architecture version": "மாதிரி கட்டிடக்கலை பதிப்பு",
75
+ "Path to Model A": "மாதிரி A க்கான பாதை",
76
+ "Path to Model B": "மாடல் B க்கான பாதை",
77
+ "Path to model": "மாதிரிக்கான பாதை",
78
+ "Model information to be placed": "வைக்கப்பட வேண்டிய மாதிரி தகவல்",
79
+ "Fusion": "இணைவு",
80
+ "Modify model information": "மாதிரி தகவலை மாற்றவும்",
81
+ "Path to Model": "மாதிரிக்கான பாதை",
82
+ "Model information to be modified": "திருத்தப்பட வேண்டிய மாதிரி தகவல்",
83
+ "Save file name": "கோப்பு பெயரை சேமி",
84
+ "Modify": "திருத்து",
85
+ "View model information": "மாதிரி தகவலைக் காண்க",
86
+ "View": "பார்வை",
87
+ "Model extraction": "மாதிரி பிரித்தெடுத்தல்",
88
+ "Model conversion": "மாதிரி மாற்றம்",
89
+ "Pth file": "Pth கோப்பு",
90
+ "Output of the pth file": "pth கோப்பின் வெளியீடு",
91
+ "# How to Report an Issue on GitHub": "# GitHub இல் ஒரு சிக்கலை எவ்வாறு புகாரளிப்பது",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. நீங்கள் அனுபவிக்கும் சிக்கலைப் பதிவு செய்யத் தொடங்க கீழே உள்ள 'ரெக்கார்ட் ஸ்கிரீன்' பொத்தானைக் கிளிக் செய்க.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. நீங்கள் சிக்கலைப் பதிவு செய்து முடித்ததும், 'பதிவு செய்வதை நிறுத்து' பொத்தானைக் கிளிக் செய்க (அதே பொத்தான், ஆனால் நீங்கள் தீவிரமாக பதிவு செய்கிறீர்களா இல்லையா என்பதைப் பொறுத்து லேபிள் மாறுகிறது).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub Issues](https://github.com/IAHispano/Applio/issues) என்பதற்குச் சென்று 'புதிய சிக்கல்' பொத்தானைக் கிளிக் செய்யவும்.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. வழங்கப்பட்ட சிக்கல் வார்ப்புருவை முடிக்கவும், தேவைக்கேற்ப விவரங்களைச் சேர்ப்பதை உறுதிசெய்து, முந்தைய கட்டத்திலிருந்து பதிவுசெய்யப்பட்ட கோப்பை பதிவேற்ற சொத்துக்கள் பிரிவைப் பயன்படுத்தவும்.",
96
+ "Record Screen": "பதிவு திரை",
97
+ "Record": "பதிவேடு",
98
+ "Stop Recording": "பதிவு செய்வதை நிறுத்து",
99
+ "Introduce the model .pth path": "மாதிரியை அறிமுகப்படுத்துங்கள் .pth பாதையை அறிமுகப்படுத்துங்கள்",
100
+ "See Model Information": "மாதிரி தகவலைப் பார்க்கவும்",
101
+ "## Download Model": "## பதிவிறக்க மாதிரி",
102
+ "Model Link": "மாதிரி இணைப்பு",
103
+ "Introduce the model link": "மாதிரி இணைப்பை அறிமுகப்படுத்தவும்",
104
+ "Download Model": "டெஸ்கார்கர் மாடலோ",
105
+ "## Drop files": "## கோப்புகளை கைவிடுங்கள்",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "உங்கள் .pth கோப்பு மற்றும் .index கோப்பை இந்த இடத்திற்கு இழுக்கவும். ஒன்றை இழுத்து மற்றொன்றை இழுக்கவும்.",
107
+ "TTS Voices": "TTS குரல்கள்",
108
+ "Text to Synthesize": "தொகுக்க உரை",
109
+ "Enter text to synthesize": "ஒருங்கிணைக்க உரையை உள்ளிடவும்",
110
+ "Output Path for TTS Audio": "TTS ஆடியோவுக்கான வெளியீட்டு பாதை",
111
+ "Output Path for RVC Audio": "RVC ஆடியோவுக்கான வெளியீட்டு பாதை",
112
+ "Enable Applio integration with Discord presence": "அப்ளியோ உள்ளமை"
113
+ }
assets/i18n/languages/te_TE.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "అల్టిమేట్ వాయిస్ క్లోనింగ్ టూల్, సాటిలేని శక్తి, మాడ్యులారిటీ మరియు వినియోగదారు-స్నేహపూర్వక అనుభవం కోసం జాగ్రత్తగా ఆప్టిమైజ్ చేయబడింది.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "ఈ విభాగంలో కొన్ని అదనపు ఉపయోగాలు ఉన్నాయి, అవి తరచుగా ప్రయోగాత్మక దశలలో ఉండవచ్చు.",
4
+ "Output Information": "అవుట్ పుట్ సమాచారం",
5
+ "Inference": "అనిమితి",
6
+ "Train": "రైలు",
7
+ "Extra": "అదనం",
8
+ "Merge Audios": "ఆడియోలను విలీనం చేయండి",
9
+ "Processing": "ప్రాసెసింగ్",
10
+ "Audio Analyzer": "Audio Analyzer",
11
+ "Model Information": "నమూనా సమాచారం",
12
+ "Download": "డౌన్ లోడ్ చేసుకోండి",
13
+ "Report a Bug": "బగ్ ని రిపోర్ట్ చేయండి",
14
+ "Preprocess": "ప్రీప్రాసెస్",
15
+ "Model Name": "మోడల్ పేరు",
16
+ "Enter model name": "మోడల్ పేరు నమోదు చేయండి",
17
+ "Dataset Path": "Dataset Path",
18
+ "Enter dataset path": "డేటాసెట్ మార్గాన్ని నమోదు చేయండి",
19
+ "Sampling Rate": "నమూనా రేటు",
20
+ "RVC Version": "RVC Version",
21
+ "Preprocess Dataset": "ప్రీప్రాసెస్ Dataset",
22
+ "Extract": "ఉద్ధరించు",
23
+ "Hop Length": "హాప్ పొడవు",
24
+ "Batch Size": "బ్యాచ్ పరిమాణం",
25
+ "Save Every Epoch": "ప్రతి యుగాన్ని కాపాడండి",
26
+ "Total Epoch": "మొత్తం యుగం",
27
+ "Pretrained": "ప్రీ ట్రైనింగ్ చేయబడింది",
28
+ "Save Only Latest": "సేవ్ ఓన్లీ లేటెస్ట్",
29
+ "Save Every Weights": "ప్రతి బరువులను ఆదా చేయండి",
30
+ "Custom Pretrained": "Custom Pretrained",
31
+ "Upload Pretrained Model": "ప్రీ ట్రైన్డ్ మోడల్ అప్ లోడ్ చేయండి",
32
+ "Pretrained Custom Settings": "ముందస్తుగా శిక్షణ పొందిన కస్టమ్ సెట్టింగ్ లు",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "మీరు డ్రాప్ చేసిన ఫైల్ చెల్లుబాటు అయ్యే ముందస్తు శిక్షణ పొందిన ఫైల్ కాదు. దయచేసి మళ్లీ ప్రయత్నించండి.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "డ్రాప్ డౌన్ మెనూలో ముందుగా శిక్షణ పొందిన ఫైల్ ను చూడటం కొరకు రిఫ్రెష్ బటన్ మీద క్లిక్ చేయండి.",
35
+ "Pretrained G Path": "Custom Pretrained G",
36
+ "Pretrained D Path": "Custom Pretrained D",
37
+ "GPU Settings": "GPU సెట్టింగ్ లు",
38
+ "GPU Custom Settings": "GPU కస్టమ్ సెట్టింగ్ లు",
39
+ "GPU Number": "జిపియు నెంబరు",
40
+ "0 to ∞ separated by -": "0 నుండి ∞ వరకు దీని ద్వారా వేరు చేయబడతాయి -",
41
+ "GPU Information": "GPU సమాచారం",
42
+ "Pitch Guidance": "పిచ్ మార్గదర్శకత్వం",
43
+ "Extract Features": "ఎక్స్ ట్రాక్ట్ ఫీచర్లు",
44
+ "Start Training": "శిక్షణ ప్రారంభించండి",
45
+ "Generate Index": "ఇండెక్స్ జనరేట్ చేయండి",
46
+ "Voice Model": "వాయిస్ మోడల్",
47
+ "Index File": "ఇండెక్స్ ఫైల్",
48
+ "Refresh": "రిఫ్రెష్",
49
+ "Unload Voice": "వాయిస్ ను అన్ లోడ్ చేయండి",
50
+ "Single": "ఏక",
51
+ "Upload Audio": "ఆడియో అప్ లోడ్ చేయండి",
52
+ "Select Audio": "ఆడియోను ఎంచుకోండి",
53
+ "Advanced Settings": "అధునాతన సెట్టింగ్ లు",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "క్లియర్ అవుట్ పుట్స్ (అసెట్స్/ఆడియోల్లోని అన్ని ఆడియోలను తొలగిస్తుంది)",
55
+ "Custom Output Path": "క��్టమ్ అవుట్ పుట్ మార్గం",
56
+ "Output Path": "అవుట్ పుట్ మార్గం",
57
+ "Pitch": "గొంతు",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "ఒకవేళ >=3 అయితే: పండించిన పిచ్ ఫలితాలకు మధ్యస్థ వడపోతను వర్తింపజేయండి. విలువ ఫిల్టర్ వ్యాసార్థాన్ని సూచిస్తుంది మరియు శ్వాసను తగ్గిస్తుంది",
59
+ "Search Feature Ratio": "శోధన ఫీచర్ నిష్పత్తి",
60
+ "Pitch extraction algorithm": "పిచ్ వెలికితీత అల్గోరిథం",
61
+ "Convert": "మార్చండి",
62
+ "Export Audio": "Export Audio",
63
+ "Batch": "దొంతర",
64
+ "Input Folder": "ఇన్ పుట్ ఫోల్డర్",
65
+ "Enter input path": "ఇన్ పుట్ మార్గాన్ని నమోదు చేయండి",
66
+ "Output Folder": "అవుట్ పుట్ ఫోల్డర్",
67
+ "Enter output path": "అవుట్ పుట్ మార్గాన్ని నమోదు చేయండి",
68
+ "Get information about the audio": "ఆడియో గురించి సమాచారం పొందండి",
69
+ "Information about the audio file": "ఆడియో ఫైలు గురించి సమాచారం",
70
+ "Waiting for information...": "సమాచారం కోసం ఎదురుచూస్తూ...",
71
+ "Model fusion": "మోడల్ ఫ్యూజన్",
72
+ "Weight for Model A": "మోడల్ A కొరకు బరువు",
73
+ "Whether the model has pitch guidance": "మోడల్ కు పిచ్ గైడెన్స్ ఉందా",
74
+ "Model architecture version": "మోడల్ ఆర్కిటెక్చర్ వెర్షన్",
75
+ "Path to Model A": "మోడల్ ఎ కు మార్గం",
76
+ "Path to Model B": "మోడల్ బి కి మార్గం",
77
+ "Path to model": "మోడల్ కు మార్గం[మార్చు]",
78
+ "Model information to be placed": "మోడల్ సమాచారం ఉంచాలి",
79
+ "Fusion": "ఫ్యూజన్",
80
+ "Modify model information": "మోడల్ సమాచారాన్ని సవరించండి",
81
+ "Path to Model": "మోడల్ కు మార్గం[మార్చు]",
82
+ "Model information to be modified": "మోడల్ సమాచారాన్ని సవరించాలి",
83
+ "Save file name": "ఫైలు పేరును సేవ్ చేయండి",
84
+ "Modify": "సవరించండి",
85
+ "View model information": "నమూనా సమాచారాన్ని వీక్షించండి",
86
+ "View": "దృశ్యం",
87
+ "Model extraction": "నమూనా వెలికితీత",
88
+ "Model conversion": "నమూనా మార్పిడి",
89
+ "Pth file": "PTH ఫైల్",
90
+ "Output of the pth file": "పిటిహెచ్ ఫైల్ యొక్క అవుట్ పుట్",
91
+ "# How to Report an Issue on GitHub": "# గిట్హబ్లో సమస్యను ఎలా రిపోర్ట్ చేయాలి",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. మీరు ఎదుర్కొంటున్న సమస్యను రికార్డ్ చేయడం ప్రారంభించడానికి దిగువ 'రికార్డ్ స్క్రీన్' బటన్పై క్లిక్ చేయండి.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. మీరు సమస్యను రికార్డ్ చేయడం పూర్తి చేసిన తర్వాత, 'స్టాప్ రికార్డింగ్' బటన్పై క్లిక్ చేయండి (అదే బటన్, కానీ మీరు చురుకుగా రికార్డ్ చేస్తున్నారా లేదా అనే దానిపై ఆధారపడి లేబుల్ మారుతుంది).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. 'గిట్హబ్ ఇష్యూస్'(https://github.com/IAHispano/Applio/issues)లోకి వెళ్లి 'న్యూ ఇష్యూ' బటన్పై క్లిక్ చేయాలి.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. ఇచ్చిన ఇష్యూ టెంప్లేట్ ను పూర్తి చేసి, అవసరమైన విధంగా వివరాలను పొందుపర్చేలా చూసుకోవాలి మరియు మునుపటి దశ నుండి రికార్డ్ చేయబడిన ఫైల్ ను అప్ లోడ్ చేయడానికి ఆస్తుల విభాగాన్ని ఉపయోగించండి.",
96
+ "Record Screen": "స్క్రీన్ రికార్డ్ చేయండి",
97
+ "Record": "నమోదు",
98
+ "Stop Recording": "రికార్డింగ్ ఆపండి",
99
+ "Introduce the model .pth path": "మోడల్ .pth మార్గాన్ని పరిచయం చేయండి",
100
+ "See Model Information": "మోడల్ సమాచారం చూడండి",
101
+ "## Download Model": "## డౌన్ లోడ్ మోడల్",
102
+ "Model Link": "మోడల్ లింక్",
103
+ "Introduce the model link": "మోడల్ లింక్ ను పరిచయం చేయండి",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## డ్రాప్ ఫైళ్లు",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "మీ .pth ఫైల్ మరియు .index ఫైల్ ని ఈ స్పేస్ లోకి లాగండి. ఒకదాన్ని లాగి, తర్వాత మరొకటి లాగండి.",
107
+ "TTS Voices": "టిటిఎస్ వాయిస్",
108
+ "Text to Synthesize": "సంశ్లేషణ చేయడానికి టెక్స్ట్",
109
+ "Enter text to synthesize": "సంశ్లేషణ చేయడానికి టెక్స్ట్ ను నమోదు చేయండి",
110
+ "Output Path for TTS Audio": "TTS ఆడియో కొరకు అవుట్ పుట్ మార్గం",
111
+ "Output Path for RVC Audio": "RVC ఆడియో కొరకు అవుట్ పుట్ మార్గం",
112
+ "Enable Applio integration with Discord presence": "Applio ప్రసెన్స్"
113
+ }
assets/i18n/languages/th_TH.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "สุดยอดเครื่องมือเลียนแบบเสียงที่ถูกปรับแต่งเพื่อพลังที่ไม่สามารถเทียบได้, แบ่งเป็นออกเป็นส่วน, และประสบการณ์ผู้ใช้ที่เยี่ยมยอด",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "ส่วนนี้ประกอบด้วยอุปกรณ์อำนวยความสะดวกเพื่มเติมที่มักจะอยู่ในขั้นตอนการทดลอง",
4
+ "Output Information": "เอาท์พุท",
5
+ "Inference": "Inference",
6
+ "Train": "Train",
7
+ "Extra": "เพิ่มเติม",
8
+ "Merge Audios": "รวมไฟล์เสียง",
9
+ "Processing": "ประมวลผล",
10
+ "Audio Analyzer": "เครื่องมือวิเคราะห์เสียง",
11
+ "Model Information": "ข้อมูลโมเดล",
12
+ "Download": "ดาวน์โหลด",
13
+ "Report a Bug": "รายงานข้อบกพร่อง",
14
+ "Preprocess": "Preprocess",
15
+ "Model Name": "ชื่อโมเดล",
16
+ "Enter model name": "ใส่ชื่อโมเดล",
17
+ "Dataset Path": "ที่อยู่ Dataset",
18
+ "Enter dataset path": "ป้อนที่อยู่ Dataset",
19
+ "Sampling Rate": "Sampling Rate",
20
+ "RVC Version": "รุ่น RVC",
21
+ "Preprocess Dataset": "Preprocess Dataset",
22
+ "Extract": "แยกออกมา",
23
+ "Hop Length": "Hop Length",
24
+ "Batch Size": "Batch Size",
25
+ "Save Every Epoch": "บันทึก Epoch ทั้งหมด",
26
+ "Total Epoch": "Epoch ทั้งหมด",
27
+ "Pretrained": "Pretrained",
28
+ "Save Only Latest": "บันทึกเฉพาะล่าสุด",
29
+ "Save Every Weights": "บันทึก Weight ทุกอัน",
30
+ "Custom Pretrained": "Pretrained กําหนดเอง",
31
+ "Upload Pretrained Model": "อัปโหลดโมเดล Pretrained",
32
+ "Pretrained Custom Settings": "การตั้งค่า Pretrained เอง",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "ไฟล์ที่คุณให้ไม่ใช่ไฟล์ Pretrained ที่ถูกต้อง โปรดลองอีกครั้ง",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "กดปุ่มรีเฟรชเพื่อดู Pretrained ในเมนู",
35
+ "Pretrained G Path": "ที่อยู่ Pretrained G",
36
+ "Pretrained D Path": "ที่อยู่ Pretrained D",
37
+ "GPU Settings": "การตั้งค่า GPU",
38
+ "GPU Custom Settings": "การตั้งค่า GPU เอง",
39
+ "GPU Number": "เลขที่ GPU",
40
+ "0 to ∞ separated by -": "0 ถึง ∞ คั่นด้วย -",
41
+ "GPU Information": "ข้อมูล GPU",
42
+ "Pitch Guidance": "Pitch Guidance",
43
+ "Extract Features": "Extract Features",
44
+ "Start Training": "เริ่มการ Train",
45
+ "Generate Index": "สร้าง Index",
46
+ "Voice Model": "โมเดลเสียง",
47
+ "Index File": "ไฟล์ Index",
48
+ "Refresh": "รีเฟรช",
49
+ "Unload Voice": "ยกเลิกการโหลดเสียง",
50
+ "Single": "เดี่ยว",
51
+ "Upload Audio": "อัพโหลดเสียง",
52
+ "Select Audio": "เลือกเสียง",
53
+ "Advanced Settings": "การตั้งค่าขั้นสูง",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "เคลียร์เอาท์พุท (ลบไฟล์เสียงทั้งหมดใน assets/audios)",
55
+ "Custom Output Path": "กําหนดที่อยู่เอาท์พุทเอง",
56
+ "Output Path": "ที่อยู่เอาท์พุท",
57
+ "Pitch": "Ptich",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness",
59
+ "Search Feature Ratio": "Search Feature Ratio",
60
+ "Pitch extraction algorithm": "Pitch extraction algorithm",
61
+ "Convert": "แปลง",
62
+ "Export Audio": "ส่งออกเสียง",
63
+ "Batch": "Batch",
64
+ "Input Folder": "โฟลเดอร์อินพุต",
65
+ "Enter input path": "ป้อนที่อยู่อินพุต",
66
+ "Output Folder": "โฟลเดอร์เอาท์พุท",
67
+ "Enter output path": "ป้อนที่อยู่เอาท์พุท",
68
+ "Get information about the audio": "ดูข้อมูลเกี่ยวกับเสียง",
69
+ "Information about the audio file": "ข้อมูลเกี่ยวกับไฟล์เสียง",
70
+ "Waiting for information...": "รอข้อมูล...",
71
+ "Model fusion": "รวมโมเดล",
72
+ "Weight for Model A": "Weight สําหรับรุ่น A",
73
+ "Whether the model has pitch guidance": "โมเดลมี Pitch Guidance หรือไม่",
74
+ "Model architecture version": "เวอร์ชันสถาปัตยกรรมโมเดล",
75
+ "Path to Model A": "ที่อยู่โมเดล A",
76
+ "Path to Model B": "ที่อยู่โมเดล B",
77
+ "Path to model": "ที่อยู่โมเดล",
78
+ "Model information to be placed": "ข้อมูลโมเดลที่จะวาง",
79
+ "Fusion": "รวม",
80
+ "Modify model information": "ปรับเปลี่ยนข้อมูลโมเดล",
81
+ "Path to Model": "ที่อยู่โมเดล",
82
+ "Model information to be modified": "ข้อมูลโมเดลที่จะแก้ไข",
83
+ "Save file name": "บันทึกชื่อไฟล์",
84
+ "Modify": "ดัดแปลง",
85
+ "View model information": "ดูข้อมูลโมเดล",
86
+ "View": "ดู",
87
+ "Model extraction": "Model extraction",
88
+ "Model conversion": "Model conversion",
89
+ "Pth file": "ไฟล์ Pth",
90
+ "Output of the pth file": "เอาต์พุตของไฟล์ pth",
91
+ "# How to Report an Issue on GitHub": "# วิธีรายงานปัญหาใน GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. คลิกที่ปุ่ม 'บันทึกหน้าจอ' ด้านล่างเพื่อเริ่มบันทึกปัญหาที่พบ",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. เมื่อคุณบันทึกปัญหาเสร็จแล้ว ให้คลิกที่ปุ่ม 'หยุดการบันทึก' (ปุ่มเดิม แต่ป้ายกํากับจะเปลี่ยนขึ้นอยู่กับว่าคุณกําลังอยู่บันทึกอยู่หรือไม่)",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. ไปที่ [GitHub Issues](https://github.com/IAHispano/Applio/issues) และคลิกที่ปุ่ม 'New Issue'",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. กรอกแบบรายงานปัญหาที่ให้มา, ให้แน่ใจว่ามีรายละเอียดตามต้องการ, และอัปโหลดไฟล์ที่บันทึกไว้จากขั้นตอนก่อนหน้า",
96
+ "Record Screen": "บันทึกหน้าจอ",
97
+ "Record": "บันทึก",
98
+ "Stop Recording": "หยุดการบันทึก",
99
+ "Introduce the model .pth path": "ใส่ที่อยู่โมเดล .pth",
100
+ "See Model Information": "ดูข้อมูลโมเดล",
101
+ "## Download Model": "## ดาวน์โหลดโมเดล",
102
+ "Model Link": "ลิงค์โมเดล",
103
+ "Introduce the model link": "ใส่ลิงค์โมเดล",
104
+ "Download Model": "ดาวน์โหลดโมเดล",
105
+ "## Drop files": "## วางไฟล์",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "ลากไฟล์ .pth และไฟล์ .index ลงในช่องนี้ ลากอันหนึ่งแล้วลากอีกอันหนึ่งตาม",
107
+ "TTS Voices": "เสียง TTS",
108
+ "Text to Synthesize": "ข้อความที่จะสังเคราะห์",
109
+ "Enter text to synthesize": "กรอกข้อความที่จะสังเคราะห์",
110
+ "Output Path for TTS Audio": "ที่อยู่เอาต์พุตสําหรับเสียง TTS",
111
+ "Output Path for RVC Audio": "ที่อยู่เอาต์พุตสําหรับเสียง RVC",
112
+ "Enable Applio integration with Discord presence": "การเข้าร่วมของ Applio"
113
+ }
assets/i18n/languages/tr_TR.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Rakipsiz güç, modülerlik ve kullanıcı dostu deneyim için titizlikle optimize edilmiş nihai ses klonlama aracı.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Bu bölüm, genellikle deneysel aşamalarda olabilecek bazı ek yardımcı programlar içerir.",
4
+ "Output Information": "Çıktı Bilgileri",
5
+ "Inference": "Kesmesi",
6
+ "Train": "Tren",
7
+ "Extra": "Fazladan",
8
+ "Merge Audios": "Sesleri Birleştir",
9
+ "Processing": "Işleme",
10
+ "Audio Analyzer": "Ses Analizörü",
11
+ "Model Information": "Model Bilgileri",
12
+ "Download": "İndirmek",
13
+ "Report a Bug": "Hata bildir",
14
+ "Preprocess": "Preprocess",
15
+ "Model Name": "Model Adı",
16
+ "Enter model name": "Model adını girin",
17
+ "Dataset Path": "Veri Kümesi Yolu",
18
+ "Enter dataset path": "Veri kümesi yolunu girme",
19
+ "Sampling Rate": "Örnekleme Oranı",
20
+ "RVC Version": "RVC Sürümü",
21
+ "Preprocess Dataset": "Ön İşlem Veri Kümesi",
22
+ "Extract": "Hulâsa",
23
+ "Hop Length": "Şerbetçiotu Uzunluğu",
24
+ "Batch Size": "Toplu İş Büyüklüğü",
25
+ "Save Every Epoch": "Her Çağı Kurtarın",
26
+ "Total Epoch": "Toplam Dönem",
27
+ "Pretrained": "Önceden eğitilmiş",
28
+ "Save Only Latest": "Yalnızca En Sonuncusunu Kaydet",
29
+ "Save Every Weights": "Her Ağırlığı Kurtarın",
30
+ "Custom Pretrained": "Özel Önceden Eğitilmiş",
31
+ "Upload Pretrained Model": "Önceden eğitilmiş modeli karşıya yükleme",
32
+ "Pretrained Custom Settings": "Önceden Eğitilmiş Özel Ayarlar",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "Bıraktığınız dosya önceden eğitilmiş geçerli bir dosya değil. Lütfen tekrar deneyin.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Açılır menüde önceden eğitilmiş dosyayı görmek için yenile düğmesine tıklayın.",
35
+ "Pretrained G Path": "Özel Önceden Eğitilmiş G",
36
+ "Pretrained D Path": "Özel Önceden Eğitilmiş D",
37
+ "GPU Settings": "GPU Ayarları",
38
+ "GPU Custom Settings": "GPU Özel Ayarları",
39
+ "GPU Number": "GPU Numarası",
40
+ "0 to ∞ separated by -": "0 ila ∞ - ile ayrılmış",
41
+ "GPU Information": "GPU Bilgileri",
42
+ "Pitch Guidance": "Saha Rehberliği",
43
+ "Extract Features": "Özellikleri Çıkar",
44
+ "Start Training": "Eğitime Başla",
45
+ "Generate Index": "Dizin Oluştur",
46
+ "Voice Model": "Ses Modeli",
47
+ "Index File": "Dizin Dosyası",
48
+ "Refresh": "Yenilemek",
49
+ "Unload Voice": "Sesi Kaldır",
50
+ "Single": "Tek",
51
+ "Upload Audio": "Ses Yükle",
52
+ "Select Audio": "Ses Seç",
53
+ "Advanced Settings": "Gelişmiş Ayarlar",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Çıkışları Temizle (Varlıklardaki/seslerdeki tüm sesleri siler)",
55
+ "Custom Output Path": "Özel Çıktı Yolu",
56
+ "Output Path": "Çıkış Yolu",
57
+ "Pitch": "Perde",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": ">=3 ise: hasat edilen adım sonuçlarına medyan filtreleme uygulayın. Değer, filtre yarıçapını temsil eder ve nefes almayı azaltabilir",
59
+ "Search Feature Ratio": "Arama Özelliği Oranı",
60
+ "Pitch extraction algorithm": "Pitch çıkarma algoritması",
61
+ "Convert": "Dönüştürmek",
62
+ "Export Audio": "Sesi Dışa Aktar",
63
+ "Batch": "Toplu iş",
64
+ "Input Folder": "Giriş Klasörü",
65
+ "Enter input path": "Giriş yolunu girin",
66
+ "Output Folder": "Çıktı Klasörü",
67
+ "Enter output path": "Çıkış yolunu girin",
68
+ "Get information about the audio": "Ses hakkında bilgi alın",
69
+ "Information about the audio file": "Ses dosyası hakkında bilgi",
70
+ "Waiting for information...": "Bilgi bekliyorum...",
71
+ "Model fusion": "Model füzyonu",
72
+ "Weight for Model A": "Model A için ağırlık",
73
+ "Whether the model has pitch guidance": "Modelin perde kılavuzuna sahip olup olmadığı",
74
+ "Model architecture version": "Model mimarisi sürümü",
75
+ "Path to Model A": "Model A'ya Giden Yol",
76
+ "Path to Model B": "Model B'ye Giden Yol",
77
+ "Path to model": "Modele giden yol",
78
+ "Model information to be placed": "Yerleştirilecek model bilgileri",
79
+ "Fusion": "Füzyon",
80
+ "Modify model information": "Model bilgilerini değiştirme",
81
+ "Path to Model": "Modele Giden Yol",
82
+ "Model information to be modified": "Değiştirilecek model bilgileri",
83
+ "Save file name": "Dosya adını kaydet",
84
+ "Modify": "Değiştirmek",
85
+ "View model information": "Model bilgilerini görüntüleme",
86
+ "View": "Görünüm",
87
+ "Model extraction": "Model ayıklama",
88
+ "Model conversion": "Model dönüştürme",
89
+ "Pth file": "Pth dosyası",
90
+ "Output of the pth file": "pth dosyasının çıktısı",
91
+ "# How to Report an Issue on GitHub": "# GitHub'da Bir Sorun Nasıl Bildirilir",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Yaşadığınız sorunu kaydetmeye başlamak için aşağıdaki 'Kayıt Ekranı' düğmesine tıklayın.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Sorunu kaydetmeyi bitirdikten sonra, 'Kaydı Durdur' düğmesine tıklayın (aynı düğme, ancak aktif olarak kayıt yapıp yapmadığınıza bağlı olarak etiket değişir).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [GitHub Sorunları](https://github.com/IAHispano/Applio/issues) bölümüne gidin ve 'Yeni Sorun' düğmesine tıklayın.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Sağlanan sorun şablonunu tamamlayın, gerektiğinde ayrıntıları eklediğinizden emin olun ve önceki adımdan kaydedilen dosyayı yüklemek için varlıklar bölümünü kullanın.",
96
+ "Record Screen": "Kayıt Ekranı",
97
+ "Record": "Kayıt",
98
+ "Stop Recording": "Kaydı durdur",
99
+ "Introduce the model .pth path": "Model .pth yolunu tanıtma",
100
+ "See Model Information": "Model Bilgilerine Bakın",
101
+ "## Download Model": "## Modeli İndir",
102
+ "Model Link": "Model Bağlantısı",
103
+ "Introduce the model link": "Model bağlantısını tanıtın",
104
+ "Download Model": "İndirme Modelo",
105
+ "## Drop files": "## Dosyaları bırak",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": ".pth dosyanızı ve .index dosyanızı bu alana sürükleyin. Birini ve ardından diğerini sürükleyin.",
107
+ "TTS Voices": "TTS Sesleri",
108
+ "Text to Synthesize": "Sentezlenecek Metin",
109
+ "Enter text to synthesize": "Sentezlenecek metni girin",
110
+ "Output Path for TTS Audio": "TTS Audio için Çıkış Yolu",
111
+ "Output Path for RVC Audio": "RVC Ses için Çıkış Yolu",
112
+ "Enable Applio integration with Discord presence": "Applio Varlığı"
113
+ }
assets/i18n/languages/uk_UK.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Найкращий інструмент для клонування голосу, ретельно оптимізований для неперевершеної потужності, модульності та зручного використання.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Цей розділ містить деякі додаткові утиліти, які часто можуть перебувати на експериментальних стадіях.",
4
+ "Output Information": "Вихідна інформація",
5
+ "Inference": "Висновок",
6
+ "Train": "Поїзд",
7
+ "Extra": "Додаткові",
8
+ "Merge Audios": "Об'єднання аудіо",
9
+ "Processing": "Обробки",
10
+ "Audio Analyzer": "Аналізатор звуку",
11
+ "Model Information": "Інформація про модель",
12
+ "Download": "Завантажити",
13
+ "Report a Bug": "Повідомити про помилку",
14
+ "Preprocess": "Попередня обробка",
15
+ "Model Name": "Назва моделі",
16
+ "Enter model name": "Введіть назву моделі",
17
+ "Dataset Path": "Шлях набору даних",
18
+ "Enter dataset path": "Введіть шлях набору даних",
19
+ "Sampling Rate": "Частота дискретизації",
20
+ "RVC Version": "Версія RVC",
21
+ "Preprocess Dataset": "Набір даних попередньої обробки",
22
+ "Extract": "Екстракт",
23
+ "Hop Length": "Довжина хмелю",
24
+ "Batch Size": "Розмір партії",
25
+ "Save Every Epoch": "Врятуйте кожну епоху",
26
+ "Total Epoch": "Ціла епоха",
27
+ "Pretrained": "Попереднє навчання",
28
+ "Save Only Latest": "Зберігайте лише останні",
29
+ "Save Every Weights": "Збережіть кожну вагу",
30
+ "Custom Pretrained": "Індивідуальне попереднє навчання",
31
+ "Upload Pretrained Model": "Завантажте попередньо навчену модель",
32
+ "Pretrained Custom Settings": "Попередньо навчені користувацькі налаштування",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "Файл, який ви скинули, не є дійсним попередньо навченим файлом. Будь ласка, спробуйте ще раз.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Натисніть кнопку «Оновити», щоб переглянути попередньо підготовлений файл у розкривному меню.",
35
+ "Pretrained G Path": "Спеціальна попередньо навчена G",
36
+ "Pretrained D Path": "Спеціальний попередньо навчений D",
37
+ "GPU Settings": "Налаштування графічного процесора",
38
+ "GPU Custom Settings": "Користувацькі налаштування графічного процесора",
39
+ "GPU Number": "Номер графічного процесора",
40
+ "0 to ∞ separated by -": "від 0 до ∞ розділені -",
41
+ "GPU Information": "Інформація про графічний процесор",
42
+ "Pitch Guidance": "Керівництво пітчем",
43
+ "Extract Features": "особливості витягу",
44
+ "Start Training": "Почати навчання",
45
+ "Generate Index": "Згенерувати індекс",
46
+ "Voice Model": "Голосова модель",
47
+ "Index File": "Індексний файл",
48
+ "Refresh": "Оновити",
49
+ "Unload Voice": "Вивантажити голос",
50
+ "Single": "Одного",
51
+ "Upload Audio": "Завантажити аудіо",
52
+ "Select Audio": "Виберіть Аудіо",
53
+ "Advanced Settings": "Розширені налаштування",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Очистити виходи (видаляє всі аудіозаписи в ресурсах/аудіозаписах)",
55
+ "Custom Output Path": "Власний вихідний шлях",
56
+ "Output Path": "Вихідний шлях",
57
+ "Pitch": "Крок",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Якщо >=3: застосуйте медіанну фільтрацію до отриманих результатів смоли. Значення являє собою радіус фільтра і може зменшити задишку",
59
+ "Search Feature Ratio": "Співвідношення функцій пошуку",
60
+ "Pitch extraction algorithm": "Алгоритм вилучення кроку",
61
+ "Convert": "Перетворити",
62
+ "Export Audio": "Експорт аудіо",
63
+ "Batch": "Па��етний",
64
+ "Input Folder": "Папка введення",
65
+ "Enter input path": "Введіть вхідний шлях",
66
+ "Output Folder": "Вихідна папка",
67
+ "Enter output path": "Введіть вихідний шлях",
68
+ "Get information about the audio": "Отримання інформації про аудіо",
69
+ "Information about the audio file": "Інформація про аудіофайл",
70
+ "Waiting for information...": "Чекаємо на інформацію...",
71
+ "Model fusion": "Злиття моделей",
72
+ "Weight for Model A": "Вага для моделі А",
73
+ "Whether the model has pitch guidance": "Чи має модель наведення висоти тону",
74
+ "Model architecture version": "Версія архітектури моделі",
75
+ "Path to Model A": "Шлях до моделі А",
76
+ "Path to Model B": "Шлях до моделі B",
77
+ "Path to model": "Шлях до моделі",
78
+ "Model information to be placed": "Інформація про модель, яку потрібно розмістити",
79
+ "Fusion": "Злиття",
80
+ "Modify model information": "Змінення інформації про модель",
81
+ "Path to Model": "Шлях до моделі",
82
+ "Model information to be modified": "Інформація про модель, яку потрібно змінити",
83
+ "Save file name": "Зберегти ім'я файлу",
84
+ "Modify": "Змінити",
85
+ "View model information": "Перегляд інформації про модель",
86
+ "View": "Вид",
87
+ "Model extraction": "Вилучення моделі",
88
+ "Model conversion": "Перетворення моделі",
89
+ "Pth file": "Pth файл",
90
+ "Output of the pth file": "Висновок p-го файлу",
91
+ "# How to Report an Issue on GitHub": "# Як повідомити про проблему на GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Натисніть кнопку «Записати екран» нижче, щоб почати запис проблеми, з якою ви зіткнулися.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Після того, як ви закінчите запис випуску, натисніть кнопку «Зупинити запис» (та сама кнопка, але мітка змінюється залежно від того, активно ви записуєте чи ні).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Перейдіть до [GitHub Issues](https://github.com/IAHispano/Applio/issues) і натисніть кнопку «Новий випуск».",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Заповніть наданий шаблон проблеми, обов'язково включивши деталі за потреби, і скористайтеся розділом активів, щоб завантажити записаний файл з попереднього кроку.",
96
+ "Record Screen": "Екран запису",
97
+ "Record": "Запис",
98
+ "Stop Recording": "Зупинити записування",
99
+ "Introduce the model .pth path": "Представляємо модель .pth шляху",
100
+ "See Model Information": "Переглянути інформацію про модель",
101
+ "## Download Model": "## Завантажити модель",
102
+ "Model Link": "Посилання на модель",
103
+ "Introduce the model link": "Ознайомлення з моделлю",
104
+ "Download Model": "Дескаргар Модело",
105
+ "## Drop files": "## Скиньте файли",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Перетягніть файл .pth і файл .index у цей простір. Перетягніть одну, а потім іншу.",
107
+ "TTS Voices": "Голоси TTS",
108
+ "Text to Synthesize": "Текст для синтезу",
109
+ "Enter text to synthesize": "Введіть текст для синтезу",
110
+ "Output Path for TTS Audio": "Вихідний шлях для аудіо TTS",
111
+ "Output Path for RVC Audio": "Вихідний тракт для аудіо RVC",
112
+ "Enable Applio integration with Discord presence": "Присутність Applio"
113
+ }
assets/i18n/languages/ur_UR.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "حتمی صوتی کلوننگ ٹول ، بے مثال طاقت ، ماڈیولریٹی ، اور صارف دوست تجربے کے لئے احتیاط سے بہتر بنایا گیا ہے۔",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "اس سیکشن میں کچھ اضافی افادیت شامل ہیں جو اکثر تجرباتی مراحل میں ہوسکتی ہیں۔",
4
+ "Output Information": "آؤٹ پٹ معلومات",
5
+ "Inference": "استدلال",
6
+ "Train": "ٹرین",
7
+ "Extra": "اضافی",
8
+ "Merge Audios": "آڈیو کو ضم کریں",
9
+ "Processing": "پروسیسنگ",
10
+ "Audio Analyzer": "Audio Analyzer",
11
+ "Model Information": "ماڈل کی معلومات",
12
+ "Download": "ڈاؤن لوڈ",
13
+ "Report a Bug": "ایک بگ کی رپورٹ کریں",
14
+ "Preprocess": "پری پروسیس",
15
+ "Model Name": "ماڈل کا نام",
16
+ "Enter model name": "ماڈل کا نام درج کریں",
17
+ "Dataset Path": "ڈیٹا سیٹ کا راستہ",
18
+ "Enter dataset path": "ڈیٹا سیٹ کا راستہ درج کریں",
19
+ "Sampling Rate": "نمونے لینے کی شرح",
20
+ "RVC Version": "RVC Version",
21
+ "Preprocess Dataset": "پری پروسیس ڈیٹا سیٹ",
22
+ "Extract": "نکالنا",
23
+ "Hop Length": "ہاپ کی لمبائی",
24
+ "Batch Size": "Batch کا سائز",
25
+ "Save Every Epoch": "ہر دور کو محفوظ کریں",
26
+ "Total Epoch": "مجموعی دور کی نوعیت",
27
+ "Pretrained": "پہلے سے تربیت یافتہ",
28
+ "Save Only Latest": "صرف تازہ ترین محفوظ کریں",
29
+ "Save Every Weights": "ہر وزن کو بچائیں",
30
+ "Custom Pretrained": "اپنی مرضی کے مطابق پہلے سے تربیت یافتہ",
31
+ "Upload Pretrained Model": "پہلے سے تربیت یافتہ ماڈل اپ لوڈ کریں",
32
+ "Pretrained Custom Settings": "پہلے سے تربیت یافتہ کسٹم ترتیبات",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "آپ نے جو فائل چھوڑی ہے وہ درست پہلے سے تربیت یافتہ فائل نہیں ہے۔ براہ مہربانی دوبارہ کوشش کریں۔",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "ڈراپ ڈاؤن مینو میں پہلے سے تربیت یافتہ فائل دیکھنے کے لئے ریفریش بٹن پر کلک کریں۔",
35
+ "Pretrained G Path": "اپنی مرضی کے مطابق پہلے سے تربیت یافتہ G",
36
+ "Pretrained D Path": "اپنی مرضی کے مطابق پہلے سے تربیت یافتہ D",
37
+ "GPU Settings": "GPU Settings",
38
+ "GPU Custom Settings": "GPU اپنی مرضی کے مطابق ترتیبات",
39
+ "GPU Number": "GPU نمبر",
40
+ "0 to ∞ separated by -": "0 سے الگ ∞ -",
41
+ "GPU Information": "GPU Information",
42
+ "Pitch Guidance": "پچ گائیڈنس",
43
+ "Extract Features": "نکالنے کی خصوصیات",
44
+ "Start Training": "تربیت شروع کریں",
45
+ "Generate Index": "انڈیکس پیدا کریں",
46
+ "Voice Model": "صوتی ماڈل",
47
+ "Index File": "انڈیکس فائل",
48
+ "Refresh": "تازہ",
49
+ "Unload Voice": "آواز کو ان لوڈ کریں",
50
+ "Single": "تنہا",
51
+ "Upload Audio": "آڈیو اپ لوڈ کریں",
52
+ "Select Audio": "آڈیو منتخب کریں",
53
+ "Advanced Settings": "اعلی درجے کی ترتیبات",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "آؤٹ پٹ صاف کریں (اثاثوں / آڈیو میں تمام آڈیو حذف کرتا ہے)",
55
+ "Custom Output Path": "اپنی مرضی کے مطابق آؤٹ پٹ پتھ",
56
+ "Output Path": "آؤٹ پٹ پتھ",
57
+ "Pitch": "پچ",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "اگر > = 3 ہے: کٹائی شدہ پچ کے نتائج پر اوسط فلٹرنگ کا اطلاق کریں۔ قیمت فلٹر کے دائرے کی نمائندگی کرتی ہے اور سانس لینے کو کم کر سکتی ہے",
59
+ "Search Feature Ratio": "تلاش کی خصوصیت کا تناسب",
60
+ "Pitch extraction algorithm": "پچ نکالنے کا الگورتھم",
61
+ "Convert": "بدلیں",
62
+ "Export Audio": "آڈیو برآمد کریں",
63
+ "Batch": "بیچ",
64
+ "Input Folder": "ان پٹ فولڈر",
65
+ "Enter input path": "ان پٹ راستہ درج کریں",
66
+ "Output Folder": "آؤٹ پٹ فولڈر",
67
+ "Enter output path": "آؤٹ پٹ کا راستہ درج کریں",
68
+ "Get information about the audio": "آڈیو کے بارے میں معلومات حاصل کریں",
69
+ "Information about the audio file": "آڈیو فائل کے بارے میں معلومات",
70
+ "Waiting for information...": "معلومات کا انتظار ہے...",
71
+ "Model fusion": "ماڈل فیوژن",
72
+ "Weight for Model A": "ماڈل اے کے لئے وزن",
73
+ "Whether the model has pitch guidance": "کیا ماڈل کے پاس پچ گائیڈنس ہے",
74
+ "Model architecture version": "ماڈل آرکیٹیکچر ورژن",
75
+ "Path to Model A": "ماڈل اے کا راستہ",
76
+ "Path to Model B": "ماڈل بی کا راستہ",
77
+ "Path to model": "ماڈل کا راستہ",
78
+ "Model information to be placed": "ماڈل کی معلومات رکھی جائے گی",
79
+ "Fusion": "فیوژن",
80
+ "Modify model information": "ماڈل کی معلومات میں ترمیم کریں",
81
+ "Path to Model": "ماڈل کا راستہ",
82
+ "Model information to be modified": "ماڈل کی معلومات میں ترمیم کی جائے گی",
83
+ "Save file name": "فائل کا نام محفوظ کریں",
84
+ "Modify": "ترمیم",
85
+ "View model information": "ماڈل کی معلومات دیکھیں",
86
+ "View": "منظر",
87
+ "Model extraction": "ماڈل نکالنے",
88
+ "Model conversion": "ماڈل کی تبدیلی",
89
+ "Pth file": "پی ٹی ایچ فائل",
90
+ "Output of the pth file": "پی ٹی ایچ فائل کی آؤٹ پٹ",
91
+ "# How to Report an Issue on GitHub": "# گیٹ ہب پر کسی مسئلے کی اطلاع کیسے دیں",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. آپ جس مسئلے کا سامنا کر رہے ہیں اسے ریکارڈ کرنا شروع کرنے کے لئے نیچے 'ریکارڈ اسکرین' بٹن پر کلک کریں۔",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. ایک بار جب آپ مسئلے کی ریکارڈنگ مکمل کرلیں تو ، 'اسٹاپ ریکارڈنگ' بٹن پر کلک کریں (وہی بٹن ، لیکن لیبل اس بات پر منحصر ہے کہ آپ فعال طور پر ریکارڈنگ کر رہے ہیں یا نہیں)۔",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. [گیٹ ہب ایشوز] (https://github.com/IAHispano/Applio/issues) پر جائیں اور 'نیا مسئلہ' بٹن پر کلک کریں۔",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. فراہم کردہ ایشو ٹیمپلیٹ کو مکمل کریں ، ضرورت کے مطابق تفصیلات شامل کرنے کو یقینی بنائیں ، اور پچھلے مرحلے سے ریکارڈ شدہ فائل کو اپ لوڈ کرنے کے لئے اثاثوں کے سیکشن کا استعمال کریں۔",
96
+ "Record Screen": "ریکارڈ اسکرین",
97
+ "Record": "ریکارڈ",
98
+ "Stop Recording": "ریکارڈنگ بند کریں",
99
+ "Introduce the model .pth path": "ماڈل .pth پتھ متعارف کروائیں",
100
+ "See Model Information": "ماڈل کی معلومات دیکھیں",
101
+ "## Download Model": "## ڈاؤن لوڈ ماڈل",
102
+ "Model Link": "ماڈل لنک",
103
+ "Introduce the model link": "ماڈل کا لنک متعارف کروائیں",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## فائلیں چھوڑ دیں",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "اپنی .pth فائل اور .انڈیکس فائل کو اس جگہ میں گھسیٹیں۔ ایک کو گھسیٹیں اور پھر دوسرے کو۔",
107
+ "TTS Voices": "ٹی ٹی ایس وائسز",
108
+ "Text to Synthesize": "ترکیب کرنے کے لئے متن",
109
+ "Enter text to synthesize": "ترتیب دینے کے لئے متن درج کریں",
110
+ "Output Path for TTS Audio": "ٹی ٹی ایس آڈیو کے لئے آؤٹ پٹ پتھ",
111
+ "Output Path for RVC Audio": "آر وی سی آڈیو کے لئے آؤٹ پٹ پتھ",
112
+ "Enable Applio integration with Discord presence": "Applio موجودگی"
113
+ }
assets/i18n/languages/vi_VI.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "Công cụ nhân bản giọng nói tối ưu, được tối ưu hóa tỉ mỉ cho sức mạnh vô song, tính mô-đun và trải nghiệm thân thiện với người dùng.",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "Phần này chứa một số tiện ích bổ sung thường có thể đang trong giai đoạn thử nghiệm.",
4
+ "Output Information": "Thông tin đầu ra",
5
+ "Inference": "Suy luận",
6
+ "Train": "Xe lửa",
7
+ "Extra": "Phụ",
8
+ "Merge Audios": "Hợp nhất âm thanh",
9
+ "Processing": "Xử lý",
10
+ "Audio Analyzer": "Máy phân tích âm thanh",
11
+ "Model Information": "Thông tin mô hình",
12
+ "Download": "Tải xuống",
13
+ "Report a Bug": "Báo cáo lỗi",
14
+ "Preprocess": "Tiền xử lý",
15
+ "Model Name": "Tên Model",
16
+ "Enter model name": "Nhập tên model",
17
+ "Dataset Path": "Đường dẫn tập dữ liệu",
18
+ "Enter dataset path": "Nhập đường dẫn tập dữ liệu",
19
+ "Sampling Rate": "Tỷ lệ lấy mẫu",
20
+ "RVC Version": "Phiên bản RVC",
21
+ "Preprocess Dataset": "Tập dữ liệu tiền xử lý",
22
+ "Extract": "Trích",
23
+ "Hop Length": "Chiều dài hop",
24
+ "Batch Size": "Kích thước lô",
25
+ "Save Every Epoch": "Lưu mọi kỷ nguyên",
26
+ "Total Epoch": "Tổng kỷ nguyên",
27
+ "Pretrained": "Đào tạo trước",
28
+ "Save Only Latest": "Chỉ lưu mới nhất",
29
+ "Save Every Weights": "Tiết kiệm mọi trọng lượng",
30
+ "Custom Pretrained": "Đào tạo trước tùy chỉnh",
31
+ "Upload Pretrained Model": "Tải lên mô hình được đào tạo trước",
32
+ "Pretrained Custom Settings": "Cài đặt tùy chỉnh được đào tạo sẵn",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "Tệp bạn đã bỏ không phải là tệp được đào tạo trước hợp lệ. Vui lòng thử lại.",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "Nhấp vào nút làm mới để xem tệp được đào tạo trước trong menu thả xuống.",
35
+ "Pretrained G Path": "Tùy chỉnh được đào tạo trước G",
36
+ "Pretrained D Path": "Tùy chỉnh được đào tạo trước D",
37
+ "GPU Settings": "Cài đặt GPU",
38
+ "GPU Custom Settings": "Cài đặt tùy chỉnh GPU",
39
+ "GPU Number": "Số GPU",
40
+ "0 to ∞ separated by -": "0 đến ∞ cách nhau bởi -",
41
+ "GPU Information": "Thông tin GPU",
42
+ "Pitch Guidance": "Hướng dẫn quảng cáo chiêu hàng",
43
+ "Extract Features": "Tính năng trích xuất",
44
+ "Start Training": "Bắt đầu đào tạo",
45
+ "Generate Index": "Tạo chỉ mục",
46
+ "Voice Model": "Mô hình giọng nói",
47
+ "Index File": "Tệp chỉ mục",
48
+ "Refresh": "Làm tươi",
49
+ "Unload Voice": "Dỡ giọng nói",
50
+ "Single": "Đơn",
51
+ "Upload Audio": "Tải lên âm thanh",
52
+ "Select Audio": "Chọn Âm thanh",
53
+ "Advanced Settings": "Cài đặt nâng cao",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "Xóa đầu ra (Xóa tất cả âm thanh trong nội dung / âm thanh)",
55
+ "Custom Output Path": "Đường dẫn đầu ra tùy chỉnh",
56
+ "Output Path": "Đường dẫn đầu ra",
57
+ "Pitch": "Sân",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "Nếu >=3: áp dụng lọc trung bình cho kết quả cao độ đã thu hoạch. Giá trị đại diện cho bán kính bộ lọc và có thể làm giảm hơi thở",
59
+ "Search Feature Ratio": "Tỷ lệ tính năng tìm kiếm",
60
+ "Pitch extraction algorithm": "Thuật toán trích xuất cao độ",
61
+ "Convert": "Convert",
62
+ "Export Audio": "Xuất âm thanh",
63
+ "Batch": "Mẻ",
64
+ "Input Folder": "Thư mục đầu vào",
65
+ "Enter input path": "Nhập đường dẫn nhập liệu",
66
+ "Output Folder": "Thư mục đầu ra",
67
+ "Enter output path": "Nhập đường dẫn đầu ra",
68
+ "Get information about the audio": "Nhận thông tin về âm thanh",
69
+ "Information about the audio file": "Thông tin về tệp âm thanh",
70
+ "Waiting for information...": "Đang chờ thông tin...",
71
+ "Model fusion": "Hợp nhất mô hình",
72
+ "Weight for Model A": "Trọng lượng cho Model A",
73
+ "Whether the model has pitch guidance": "Mô hình có hướng dẫn cao độ hay không",
74
+ "Model architecture version": "Phiên bản kiến trúc mô hình",
75
+ "Path to Model A": "Đường dẫn đến Mẫu A",
76
+ "Path to Model B": "Đường dẫn đến Mẫu B",
77
+ "Path to model": "Đường dẫn đến mô hình",
78
+ "Model information to be placed": "Thông tin mô hình sẽ được đặt",
79
+ "Fusion": "Fusion",
80
+ "Modify model information": "Sửa đổi thông tin mô hình",
81
+ "Path to Model": "Đường dẫn đến mô hình",
82
+ "Model information to be modified": "Thông tin mô hình sẽ được sửa đổi",
83
+ "Save file name": "Lưu tên tệp",
84
+ "Modify": "Thay đổi",
85
+ "View model information": "Xem thông tin mô hình",
86
+ "View": "Cảnh",
87
+ "Model extraction": "Trích xuất mô hình",
88
+ "Model conversion": "Chuyển đổi mô hình",
89
+ "Pth file": "Tệp Pth",
90
+ "Output of the pth file": "Đầu ra của tệp pth",
91
+ "# How to Report an Issue on GitHub": "# Cách báo cáo sự cố trên GitHub",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1. Nhấp vào nút 'Ghi lại màn hình' bên dưới để bắt đầu ghi lại sự cố bạn đang gặp phải.",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. Khi bạn đã ghi xong sự cố, hãy nhấp vào nút 'Dừng ghi' (cùng một nút, nhưng nhãn thay đổi tùy thuộc vào việc bạn có chủ động ghi hay không).",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. Đi tới [Vấn đề GitHub] (https://github.com/IAHispano/Applio/issues) và nhấp vào nút 'Vấn đề mới'.",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. Hoàn thành mẫu vấn đề được cung cấp, đảm bảo bao gồm các chi tiết khi cần thiết và sử dụng phần tài sản để tải lên tệp đã ghi từ bước trước.",
96
+ "Record Screen": "Ghi lại màn hình",
97
+ "Record": "Ghi",
98
+ "Stop Recording": "Dừng ghi",
99
+ "Introduce the model .pth path": "Giới thiệu mô hình đường dẫn .pth",
100
+ "See Model Information": "Xem thông tin mô hình",
101
+ "## Download Model": "## Tải xuống mô hình",
102
+ "Model Link": "Liên kết mô hình",
103
+ "Introduce the model link": "Giới thiệu link mô hình",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## Thả tệp",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "Kéo tệp .pth và tệp .index của bạn vào không gian này. Kéo cái này rồi cái kia.",
107
+ "TTS Voices": "Tiếng nói TTS",
108
+ "Text to Synthesize": "Văn bản để tổng hợp",
109
+ "Enter text to synthesize": "Nhập văn bản để tổng hợp",
110
+ "Output Path for TTS Audio": "Đường dẫn đầu ra cho âm thanh TTS",
111
+ "Output Path for RVC Audio": "Đường dẫn đầu ra cho âm thanh RVC",
112
+ "Enable Applio integration with Discord presence": "Sự hiện diện của Applio"
113
+ }
assets/i18n/languages/wu_WU.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
assets/i18n/languages/zh_CN.json ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Ultimate voice cloning tool, meticulously optimized for unrivaled power, modularity, and user-friendly experience.": "终极语音克隆工具,经过精心优化,具有无与伦比的功能、模块化和用户友好的体验。",
3
+ "This section contains some extra utilities that often may be in experimental phases.": "本节包含一些额外的实用程序,这些实用程序通常处于实验阶段。",
4
+ "Output Information": "输出信息",
5
+ "Inference": "推理",
6
+ "Train": "火车",
7
+ "Extra": "额外",
8
+ "Merge Audios": "合并音频",
9
+ "Processing": "加工",
10
+ "Audio Analyzer": "音频分析仪",
11
+ "Model Information": "型号信息",
12
+ "Download": "下载",
13
+ "Report a Bug": "报告错误",
14
+ "Preprocess": "预处理",
15
+ "Model Name": "型号名称",
16
+ "Enter model name": "输入型号名称",
17
+ "Dataset Path": "数据集路径",
18
+ "Enter dataset path": "输入数据集路径",
19
+ "Sampling Rate": "采样率",
20
+ "RVC Version": "RVC 版本",
21
+ "Preprocess Dataset": "预处理数据集",
22
+ "Extract": "提取",
23
+ "Hop Length": "跳跃长度",
24
+ "Batch Size": "批量大小",
25
+ "Save Every Epoch": "保存每个纪元",
26
+ "Total Epoch": "总纪元",
27
+ "Pretrained": "预训练",
28
+ "Save Only Latest": "仅保存最新",
29
+ "Save Every Weights": "节省每一次砝码",
30
+ "Custom Pretrained": "自定义预训练",
31
+ "Upload Pretrained Model": "上传预训练模型",
32
+ "Pretrained Custom Settings": "预训练的自定义设置",
33
+ "The file you dropped is not a valid pretrained file. Please try again.": "您删除的文件不是有效的预训练文件。请再试一次。",
34
+ "Click the refresh button to see the pretrained file in the dropdown menu.": "单击刷新按钮,在下拉菜单中查看预训练文件。",
35
+ "Pretrained G Path": "自定义预训练 G",
36
+ "Pretrained D Path": "自定义预训练 D",
37
+ "GPU Settings": "GPU 设置",
38
+ "GPU Custom Settings": "GPU 自定义设置",
39
+ "GPU Number": "GPU 数量",
40
+ "0 to ∞ separated by -": "0 到 ∞ 之间用 -",
41
+ "GPU Information": "GPU 信息",
42
+ "Pitch Guidance": "音高指导",
43
+ "Extract Features": "提取特征",
44
+ "Start Training": "开始训练",
45
+ "Generate Index": "生成索引",
46
+ "Voice Model": "语音模型",
47
+ "Index File": "Index 文件",
48
+ "Refresh": "刷新",
49
+ "Unload Voice": "卸载语音",
50
+ "Single": "单",
51
+ "Upload Audio": "上传音频",
52
+ "Select Audio": "选择音频",
53
+ "Advanced Settings": "高级设置",
54
+ "Clear Outputs (Deletes all audios in assets/audios)": "清除输出(删除资产/音频中的所有音频)",
55
+ "Custom Output Path": "自定义输出路径",
56
+ "Output Path": "输出路径",
57
+ "Pitch": "投",
58
+ "If >=3: apply median filtering to the harvested pitch results. The value represents the filter radius and can reduce breathiness": "如果 >=3:对收获的音高结果应用中值滤波。该值表示过滤器半径,可以减少呼吸",
59
+ "Search Feature Ratio": "搜索特征比率",
60
+ "Pitch extraction algorithm": "音高提取算法",
61
+ "Convert": "转换",
62
+ "Export Audio": "导出音频",
63
+ "Batch": "批",
64
+ "Input Folder": "输入文件夹",
65
+ "Enter input path": "输入输入路径",
66
+ "Output Folder": "输出文件夹",
67
+ "Enter output path": "输入输出路径",
68
+ "Get information about the audio": "获取有关音频的信息",
69
+ "Information about the audio file": "有关音频文件的信息",
70
+ "Waiting for information...": "等待信息...",
71
+ "Model fusion": "模型融合",
72
+ "Weight for Model A": "A型重量",
73
+ "Whether the model has pitch guidance": "模型是否具有俯仰引导",
74
+ "Model architecture version": "模型架构版本",
75
+ "Path to Model A": "模型 A 的路径",
76
+ "Path to Model B": "模型 B 的路径",
77
+ "Path to model": "模型路径",
78
+ "Model information to be placed": "要放置的模型信息",
79
+ "Fusion": "融合",
80
+ "Modify model information": "修改模型信息",
81
+ "Path to Model": "模型路径",
82
+ "Model information to be modified": "要修改的模型信息",
83
+ "Save file name": "保存文件名",
84
+ "Modify": "修改",
85
+ "View model information": "查看型号信息",
86
+ "View": "视图",
87
+ "Model extraction": "模型提取",
88
+ "Model conversion": "模型转换",
89
+ "Pth file": "Pth 文件",
90
+ "Output of the pth file": "pth 文件的输出",
91
+ "# How to Report an Issue on GitHub": "# 如何在 GitHub 上报告问题",
92
+ "1. Click on the 'Record Screen' button below to start recording the issue you are experiencing.": "1.单击下面的“录制屏幕”按钮开始记录您遇到的问题。",
93
+ "2. Once you have finished recording the issue, click on the 'Stop Recording' button (the same button, but the label changes depending on whether you are actively recording or not).": "2. 录制完问题后,单击“停止录制”按钮(相同的按钮,但标签会根据您是否正在录制而变化)。",
94
+ "3. Go to [GitHub Issues](https://github.com/IAHispano/Applio/issues) and click on the 'New Issue' button.": "3. 转到 [GitHub 问题](https://github.com/IAHispano/Applio/issues),然后单击“新问题”按钮。",
95
+ "4. Complete the provided issue template, ensuring to include details as needed, and utilize the assets section to upload the recorded file from the previous step.": "4. 填写提供的问题模板,确保根据需要包含详细信息,并利用资产部分上传上一步的记录文件。",
96
+ "Record Screen": "录制屏幕",
97
+ "Record": "记录",
98
+ "Stop Recording": "停止录制",
99
+ "Introduce the model .pth path": "引入模型 .pth 路径",
100
+ "See Model Information": "查看型号信息",
101
+ "## Download Model": "## 下载模型",
102
+ "Model Link": "模型链接",
103
+ "Introduce the model link": "介绍模型链接",
104
+ "Download Model": "Descargar Modelo",
105
+ "## Drop files": "## 删除文件",
106
+ "Drag your .pth file and .index file into this space. Drag one and then the other.": "将 .pth 文件和 .index 文件拖到此空间中。拖动一个,然后拖动另一个。",
107
+ "TTS Voices": "TTS语音",
108
+ "Text to Synthesize": "要合成的文本",
109
+ "Enter text to synthesize": "输入要合成的文本",
110
+ "Output Path for TTS Audio": "TTS 音频的输出路径",
111
+ "Output Path for RVC Audio": "RVC 音频的输出路径",
112
+ "Enable Applio integration with Discord presence": "Applio 存在"
113
+ }
assets/i18n/scan.py ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import ast
2
+ import json
3
+ from pathlib import Path
4
+ from collections import OrderedDict
5
+
6
+
7
+ def extract_i18n_strings(node):
8
+ i18n_strings = []
9
+
10
+ if (
11
+ isinstance(node, ast.Call)
12
+ and isinstance(node.func, ast.Name)
13
+ and node.func.id == "i18n"
14
+ ):
15
+ for arg in node.args:
16
+ if isinstance(arg, ast.Str):
17
+ i18n_strings.append(arg.s)
18
+
19
+ for child_node in ast.iter_child_nodes(node):
20
+ i18n_strings.extend(extract_i18n_strings(child_node))
21
+
22
+ return i18n_strings
23
+
24
+
25
+ def process_file(file_path):
26
+ with open(file_path, "r") as f:
27
+ code = f.read()
28
+ if "I18nAuto" in code:
29
+ tree = ast.parse(code)
30
+ i18n_strings = extract_i18n_strings(tree)
31
+ print(file_path, len(i18n_strings))
32
+ return i18n_strings
33
+ return []
34
+
35
+
36
+ # Use pathlib for file handling
37
+ py_files = Path(".").rglob("*.py")
38
+
39
+ # Use a set to store unique strings
40
+ code_keys = set()
41
+
42
+ for py_file in py_files:
43
+ strings = process_file(py_file)
44
+ code_keys.update(strings)
45
+
46
+ print()
47
+ print("Total unique:", len(code_keys))
48
+
49
+ standard_file = "languages/en_US.json"
50
+ with open(standard_file, "r", encoding="utf-8") as f:
51
+ standard_data = json.load(f, object_pairs_hook=OrderedDict)
52
+ standard_keys = set(standard_data.keys())
53
+
54
+ # Combine unused and missing keys sections
55
+ unused_keys = standard_keys - code_keys
56
+ missing_keys = code_keys - standard_keys
57
+
58
+ print("Unused keys:", len(unused_keys))
59
+ for unused_key in unused_keys:
60
+ print("\t", unused_key)
61
+
62
+ print("Missing keys:", len(missing_keys))
63
+ for missing_key in missing_keys:
64
+ print("\t", missing_key)
65
+
66
+ code_keys_dict = OrderedDict((s, s) for s in code_keys)
67
+
68
+ # Use context manager for writing back to the file
69
+ with open(standard_file, "w", encoding="utf-8") as f:
70
+ json.dump(code_keys_dict, f, ensure_ascii=False, indent=4, sort_keys=True)
71
+ f.write("\n")
core.py ADDED
@@ -0,0 +1,764 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import sys
3
+ import argparse
4
+ import subprocess
5
+
6
+ now_dir = os.getcwd()
7
+ sys.path.append(now_dir)
8
+
9
+ from rvc.configs.config import Config
10
+ from rvc.lib.tools.validators import (
11
+ validate_sampling_rate,
12
+ validate_f0up_key,
13
+ validate_f0method,
14
+ validate_true_false,
15
+ validate_tts_voices,
16
+ )
17
+
18
+ from rvc.train.extract.preparing_files import generate_config, generate_filelist
19
+ from rvc.lib.tools.pretrained_selector import pretrained_selector
20
+
21
+ from rvc.lib.process.model_fusion import model_fusion
22
+ from rvc.lib.process.model_information import model_information
23
+
24
+ config = Config()
25
+ current_script_directory = os.path.dirname(os.path.realpath(__file__))
26
+ logs_path = os.path.join(current_script_directory, "logs")
27
+ subprocess.run(
28
+ ["python", os.path.join("rvc", "lib", "tools", "prerequisites_download.py")]
29
+ )
30
+
31
+
32
+ # Infer
33
+ def run_infer_script(
34
+ f0up_key,
35
+ filter_radius,
36
+ index_rate,
37
+ hop_length,
38
+ f0method,
39
+ input_path,
40
+ output_path,
41
+ pth_file,
42
+ index_path,
43
+ split_audio,
44
+ ):
45
+ infer_script_path = os.path.join("rvc", "infer", "infer.py")
46
+ command = [
47
+ "python",
48
+ infer_script_path,
49
+ str(f0up_key),
50
+ str(filter_radius),
51
+ str(index_rate),
52
+ str(hop_length),
53
+ f0method,
54
+ input_path,
55
+ output_path,
56
+ pth_file,
57
+ index_path,
58
+ str(split_audio),
59
+ ]
60
+ subprocess.run(command)
61
+ return f"File {input_path} inferred successfully.", output_path
62
+
63
+
64
+ # Batch infer
65
+ def run_batch_infer_script(
66
+ f0up_key,
67
+ filter_radius,
68
+ index_rate,
69
+ hop_length,
70
+ f0method,
71
+ input_folder,
72
+ output_folder,
73
+ pth_file,
74
+ index_path,
75
+ ):
76
+ infer_script_path = os.path.join("rvc", "infer", "infer.py")
77
+
78
+ audio_files = [
79
+ f for f in os.listdir(input_folder) if f.endswith((".mp3", ".wav", ".flac"))
80
+ ]
81
+ print(f"Detected {len(audio_files)} audio files for inference.")
82
+
83
+ for audio_file in audio_files:
84
+ if "_output" in audio_file:
85
+ pass
86
+ else:
87
+ input_path = os.path.join(input_folder, audio_file)
88
+ output_file_name = os.path.splitext(os.path.basename(audio_file))[0]
89
+ output_path = os.path.join(
90
+ output_folder,
91
+ f"{output_file_name}_output{os.path.splitext(audio_file)[1]}",
92
+ )
93
+ print(f"Inferring {input_path}...")
94
+
95
+ command = [
96
+ "python",
97
+ infer_script_path,
98
+ str(f0up_key),
99
+ str(filter_radius),
100
+ str(index_rate),
101
+ str(hop_length),
102
+ f0method,
103
+ input_path,
104
+ output_path,
105
+ pth_file,
106
+ index_path,
107
+ ]
108
+ subprocess.run(command)
109
+
110
+ return f"Files from {input_folder} inferred successfully."
111
+
112
+
113
+ # TTS
114
+ def run_tts_script(
115
+ tts_text,
116
+ tts_voice,
117
+ f0up_key,
118
+ filter_radius,
119
+ index_rate,
120
+ hop_length,
121
+ f0method,
122
+ output_tts_path,
123
+ output_rvc_path,
124
+ pth_file,
125
+ index_path,
126
+ ):
127
+ tts_script_path = os.path.join("rvc", "lib", "tools", "tts.py")
128
+ infer_script_path = os.path.join("rvc", "infer", "infer.py")
129
+
130
+ if os.path.exists(output_tts_path):
131
+ os.remove(output_tts_path)
132
+
133
+ command_tts = [
134
+ "python",
135
+ tts_script_path,
136
+ tts_text,
137
+ tts_voice,
138
+ output_tts_path,
139
+ ]
140
+
141
+ command_infer = [
142
+ "python",
143
+ infer_script_path,
144
+ str(f0up_key),
145
+ str(filter_radius),
146
+ str(index_rate),
147
+ str(hop_length),
148
+ f0method,
149
+ output_tts_path,
150
+ output_rvc_path,
151
+ pth_file,
152
+ index_path,
153
+ ]
154
+ subprocess.run(command_tts)
155
+ subprocess.run(command_infer)
156
+ return f"Text {tts_text} synthesized successfully.", output_rvc_path
157
+
158
+
159
+ # Preprocess
160
+ def run_preprocess_script(model_name, dataset_path, sampling_rate):
161
+ per = 3.0 if config.is_half else 3.7
162
+ preprocess_script_path = os.path.join("rvc", "train", "preprocess", "preprocess.py")
163
+ command = [
164
+ "python",
165
+ preprocess_script_path,
166
+ os.path.join(logs_path, str(model_name)),
167
+ dataset_path,
168
+ str(sampling_rate),
169
+ str(per),
170
+ ]
171
+
172
+ os.makedirs(os.path.join(logs_path, str(model_name)), exist_ok=True)
173
+ subprocess.run(command)
174
+ return f"Model {model_name} preprocessed successfully."
175
+
176
+
177
+ # Extract
178
+ def run_extract_script(model_name, rvc_version, f0method, hop_length, sampling_rate):
179
+ model_path = os.path.join(logs_path, str(model_name))
180
+ extract_f0_script_path = os.path.join(
181
+ "rvc", "train", "extract", "extract_f0_print.py"
182
+ )
183
+ extract_feature_script_path = os.path.join(
184
+ "rvc", "train", "extract", "extract_feature_print.py"
185
+ )
186
+
187
+ command_1 = [
188
+ "python",
189
+ extract_f0_script_path,
190
+ model_path,
191
+ f0method,
192
+ str(hop_length),
193
+ ]
194
+ command_2 = [
195
+ "python",
196
+ extract_feature_script_path,
197
+ config.device,
198
+ "1",
199
+ "0",
200
+ "0",
201
+ model_path,
202
+ rvc_version,
203
+ "True",
204
+ ]
205
+ subprocess.run(command_1)
206
+ subprocess.run(command_2)
207
+
208
+ generate_config(rvc_version, sampling_rate, model_path)
209
+ generate_filelist(f0method, model_path, rvc_version, sampling_rate)
210
+ return f"Model {model_name} extracted successfully."
211
+
212
+
213
+ # Train
214
+ def run_train_script(
215
+ model_name,
216
+ rvc_version,
217
+ save_every_epoch,
218
+ save_only_latest,
219
+ save_every_weights,
220
+ total_epoch,
221
+ sampling_rate,
222
+ batch_size,
223
+ gpu,
224
+ pitch_guidance,
225
+ pretrained,
226
+ custom_pretrained,
227
+ g_pretrained_path=None,
228
+ d_pretrained_path=None,
229
+ ):
230
+ f0 = 1 if str(pitch_guidance) == "True" else 0
231
+ latest = 1 if str(save_only_latest) == "True" else 0
232
+ save_every = 1 if str(save_every_weights) == "True" else 0
233
+
234
+ if str(pretrained) == "True":
235
+ if str(custom_pretrained) == "False":
236
+ pg, pd = pretrained_selector(f0)[rvc_version][sampling_rate]
237
+ else:
238
+ if g_pretrained_path is None or d_pretrained_path is None:
239
+ raise ValueError(
240
+ "Please provide the path to the pretrained G and D models."
241
+ )
242
+ pg, pd = g_pretrained_path, d_pretrained_path
243
+ else:
244
+ pg, pd = "", ""
245
+
246
+ train_script_path = os.path.join("rvc", "train", "train.py")
247
+ command = [
248
+ "python",
249
+ str(train_script_path),
250
+ "-se",
251
+ str(save_every_epoch),
252
+ "-te",
253
+ str(total_epoch),
254
+ "-pg",
255
+ str(pg),
256
+ "-pd",
257
+ str(pd),
258
+ "-sr",
259
+ str(sampling_rate),
260
+ "-bs",
261
+ str(batch_size),
262
+ "-g",
263
+ str(gpu),
264
+ "-e",
265
+ os.path.join(logs_path, str(model_name)),
266
+ "-v",
267
+ str(rvc_version),
268
+ "-l",
269
+ str(latest),
270
+ "-c",
271
+ "0",
272
+ "-sw",
273
+ str(save_every),
274
+ "-f0",
275
+ str(f0),
276
+ ]
277
+
278
+ subprocess.run(command)
279
+ run_index_script(model_name, rvc_version)
280
+ return f"Model {model_name} trained successfully."
281
+
282
+
283
+ # Index
284
+ def run_index_script(model_name, rvc_version):
285
+ index_script_path = os.path.join("rvc", "train", "index_generator.py")
286
+ command = [
287
+ "python",
288
+ index_script_path,
289
+ os.path.join(logs_path, str(model_name)),
290
+ rvc_version,
291
+ ]
292
+
293
+ subprocess.run(command)
294
+ return f"Index file for {model_name} generated successfully."
295
+
296
+
297
+ # Model information
298
+ def run_model_information_script(pth_path):
299
+ print(model_information(pth_path))
300
+
301
+
302
+ # Model fusion
303
+ def run_model_fusion_script(model_name, pth_path_1, pth_path_2):
304
+ model_fusion(model_name, pth_path_1, pth_path_2)
305
+
306
+
307
+ # Tensorboard
308
+ def run_tensorboard_script():
309
+ tensorboard_script_path = os.path.join(
310
+ "rvc", "lib", "tools", "launch_tensorboard.py"
311
+ )
312
+ command = [
313
+ "python",
314
+ tensorboard_script_path,
315
+ ]
316
+ subprocess.run(command)
317
+
318
+
319
+ # Download
320
+ def run_download_script(model_link):
321
+ download_script_path = os.path.join("rvc", "lib", "tools", "model_download.py")
322
+ command = [
323
+ "python",
324
+ download_script_path,
325
+ model_link,
326
+ ]
327
+ subprocess.run(command)
328
+ return f"Model downloaded successfully."
329
+
330
+
331
+ # Parse arguments
332
+ def parse_arguments():
333
+ parser = argparse.ArgumentParser(
334
+ description="Run the main.py script with specific parameters."
335
+ )
336
+ subparsers = parser.add_subparsers(
337
+ title="subcommands", dest="mode", help="Choose a mode"
338
+ )
339
+
340
+ # Parser for 'infer' mode
341
+ infer_parser = subparsers.add_parser("infer", help="Run inference")
342
+ infer_parser.add_argument(
343
+ "f0up_key",
344
+ type=validate_f0up_key,
345
+ help="Value for f0up_key (-24 to +24)",
346
+ )
347
+ infer_parser.add_argument(
348
+ "filter_radius",
349
+ type=str,
350
+ help="Value for filter_radius (0 to 10)",
351
+ )
352
+ infer_parser.add_argument(
353
+ "index_rate",
354
+ type=str,
355
+ help="Value for index_rate (0.0 to 1)",
356
+ )
357
+ infer_parser.add_argument(
358
+ "hop_length",
359
+ type=str,
360
+ help="Value for hop_length (1 to 512)",
361
+ )
362
+ infer_parser.add_argument(
363
+ "f0method",
364
+ type=validate_f0method,
365
+ help="Value for f0method (pm, dio, crepe, crepe-tiny, harvest, rmvpe)",
366
+ )
367
+ infer_parser.add_argument(
368
+ "input_path", type=str, help="Input path (enclose in double quotes)"
369
+ )
370
+ infer_parser.add_argument(
371
+ "output_path", type=str, help="Output path (enclose in double quotes)"
372
+ )
373
+ infer_parser.add_argument(
374
+ "pth_file", type=str, help="Path to the .pth file (enclose in double quotes)"
375
+ )
376
+ infer_parser.add_argument(
377
+ "index_path",
378
+ type=str,
379
+ help="Path to the .index file (enclose in double quotes)",
380
+ )
381
+ infer_parser.add_argument(
382
+ "split_audio",
383
+ type=str,
384
+ help="Enable split audio ( better results )",
385
+ )
386
+
387
+ # Parser for 'batch_infer' mode
388
+ batch_infer_parser = subparsers.add_parser(
389
+ "batch_infer", help="Run batch inference"
390
+ )
391
+ batch_infer_parser.add_argument(
392
+ "f0up_key",
393
+ type=validate_f0up_key,
394
+ help="Value for f0up_key (-24 to +24)",
395
+ )
396
+ batch_infer_parser.add_argument(
397
+ "filter_radius",
398
+ type=str,
399
+ help="Value for filter_radius (0 to 10)",
400
+ )
401
+ batch_infer_parser.add_argument(
402
+ "index_rate",
403
+ type=str,
404
+ help="Value for index_rate (0.0 to 1)",
405
+ )
406
+ batch_infer_parser.add_argument(
407
+ "hop_length",
408
+ type=str,
409
+ help="Value for hop_length (1 to 512)",
410
+ )
411
+ batch_infer_parser.add_argument(
412
+ "f0method",
413
+ type=validate_f0method,
414
+ help="Value for f0method (pm, dio, crepe, crepe-tiny, harvest, rmvpe)",
415
+ )
416
+ batch_infer_parser.add_argument(
417
+ "input_folder", type=str, help="Input folder (enclose in double quotes)"
418
+ )
419
+ batch_infer_parser.add_argument(
420
+ "output_folder", type=str, help="Output folder (enclose in double quotes)"
421
+ )
422
+ batch_infer_parser.add_argument(
423
+ "pth_file", type=str, help="Path to the .pth file (enclose in double quotes)"
424
+ )
425
+ batch_infer_parser.add_argument(
426
+ "index_path",
427
+ type=str,
428
+ help="Path to the .index file (enclose in double quotes)",
429
+ )
430
+
431
+ # Parser for 'tts' mode
432
+ tts_parser = subparsers.add_parser("tts", help="Run TTS")
433
+ tts_parser.add_argument(
434
+ "tts_text",
435
+ type=str,
436
+ help="Text to be synthesized (enclose in double quotes)",
437
+ )
438
+ tts_parser.add_argument(
439
+ "tts_voice",
440
+ type=validate_tts_voices,
441
+ help="Voice to be used (enclose in double quotes)",
442
+ )
443
+ tts_parser.add_argument(
444
+ "f0up_key",
445
+ type=validate_f0up_key,
446
+ help="Value for f0up_key (-24 to +24)",
447
+ )
448
+ tts_parser.add_argument(
449
+ "filter_radius",
450
+ type=str,
451
+ help="Value for filter_radius (0 to 10)",
452
+ )
453
+ tts_parser.add_argument(
454
+ "index_rate",
455
+ type=str,
456
+ help="Value for index_rate (0.0 to 1)",
457
+ )
458
+ tts_parser.add_argument(
459
+ "hop_length",
460
+ type=str,
461
+ help="Value for hop_length (1 to 512)",
462
+ )
463
+ tts_parser.add_argument(
464
+ "f0method",
465
+ type=validate_f0method,
466
+ help="Value for f0method (pm, dio, crepe, crepe-tiny, harvest, rmvpe)",
467
+ )
468
+ tts_parser.add_argument(
469
+ "output_tts_path", type=str, help="Output tts path (enclose in double quotes)"
470
+ )
471
+ tts_parser.add_argument(
472
+ "output_rvc_path", type=str, help="Output rvc path (enclose in double quotes)"
473
+ )
474
+ tts_parser.add_argument(
475
+ "pth_file", type=str, help="Path to the .pth file (enclose in double quotes)"
476
+ )
477
+ tts_parser.add_argument(
478
+ "index_path",
479
+ type=str,
480
+ help="Path to the .index file (enclose in double quotes)",
481
+ )
482
+
483
+ # Parser for 'preprocess' mode
484
+ preprocess_parser = subparsers.add_parser("preprocess", help="Run preprocessing")
485
+ preprocess_parser.add_argument(
486
+ "model_name", type=str, help="Name of the model (enclose in double quotes)"
487
+ )
488
+ preprocess_parser.add_argument(
489
+ "dataset_path",
490
+ type=str,
491
+ help="Path to the dataset (enclose in double quotes)",
492
+ )
493
+ preprocess_parser.add_argument(
494
+ "sampling_rate",
495
+ type=validate_sampling_rate,
496
+ help="Sampling rate (32000, 40000 or 48000)",
497
+ )
498
+
499
+ # Parser for 'extract' mode
500
+ extract_parser = subparsers.add_parser("extract", help="Run extract")
501
+ extract_parser.add_argument(
502
+ "model_name",
503
+ type=str,
504
+ help="Name of the model (enclose in double quotes)",
505
+ )
506
+ extract_parser.add_argument(
507
+ "rvc_version",
508
+ type=str,
509
+ help="Version of the model (v1 or v2)",
510
+ )
511
+ extract_parser.add_argument(
512
+ "f0method",
513
+ type=validate_f0method,
514
+ help="Value for f0method (pm, dio, crepe, crepe-tiny, mangio-crepe, mangio-crepe-tiny, harvest, rmvpe)",
515
+ )
516
+ extract_parser.add_argument(
517
+ "hop_length",
518
+ type=str,
519
+ help="Value for hop_length (1 to 512)",
520
+ )
521
+ extract_parser.add_argument(
522
+ "sampling_rate",
523
+ type=validate_sampling_rate,
524
+ help="Sampling rate (32000, 40000 or 48000)",
525
+ )
526
+
527
+ # Parser for 'train' mode
528
+ train_parser = subparsers.add_parser("train", help="Run training")
529
+ train_parser.add_argument(
530
+ "model_name",
531
+ type=str,
532
+ help="Name of the model (enclose in double quotes)",
533
+ )
534
+ train_parser.add_argument(
535
+ "rvc_version",
536
+ type=str,
537
+ help="Version of the model (v1 or v2)",
538
+ )
539
+ train_parser.add_argument(
540
+ "save_every_epoch",
541
+ type=str,
542
+ help="Save every epoch",
543
+ )
544
+ train_parser.add_argument(
545
+ "save_only_latest",
546
+ type=str,
547
+ help="Save weight only at last epoch",
548
+ )
549
+ train_parser.add_argument(
550
+ "save_every_weights",
551
+ type=str,
552
+ help="Save weight every epoch",
553
+ )
554
+ train_parser.add_argument(
555
+ "total_epoch",
556
+ type=str,
557
+ help="Total epoch",
558
+ )
559
+ train_parser.add_argument(
560
+ "sampling_rate",
561
+ type=validate_sampling_rate,
562
+ help="Sampling rate (32000, 40000, or 48000)",
563
+ )
564
+ train_parser.add_argument(
565
+ "batch_size",
566
+ type=str,
567
+ help="Batch size",
568
+ )
569
+ train_parser.add_argument(
570
+ "gpu",
571
+ type=str,
572
+ help="GPU number (0 to 10 separated by -)",
573
+ )
574
+ train_parser.add_argument(
575
+ "pitch_guidance",
576
+ type=validate_true_false,
577
+ help="Pitch guidance (True or False)",
578
+ )
579
+ train_parser.add_argument(
580
+ "pretrained",
581
+ type=validate_true_false,
582
+ help="Pretrained (True or False)",
583
+ )
584
+ train_parser.add_argument(
585
+ "custom_pretrained",
586
+ type=validate_true_false,
587
+ help="Custom pretrained (True or False)",
588
+ )
589
+ train_parser.add_argument(
590
+ "g_pretrained_path",
591
+ type=str,
592
+ nargs="?",
593
+ default=None,
594
+ help="Path to the pretrained G file (enclose in double quotes)",
595
+ )
596
+ train_parser.add_argument(
597
+ "d_pretrained_path",
598
+ type=str,
599
+ nargs="?",
600
+ default=None,
601
+ help="Path to the pretrained D file (enclose in double quotes)",
602
+ )
603
+
604
+ # Parser for 'index' mode
605
+ index_parser = subparsers.add_parser("index", help="Generate index file")
606
+ index_parser.add_argument(
607
+ "model_name",
608
+ type=str,
609
+ help="Name of the model (enclose in double quotes)",
610
+ )
611
+ index_parser.add_argument(
612
+ "rvc_version",
613
+ type=str,
614
+ help="Version of the model (v1 or v2)",
615
+ )
616
+
617
+ # Parser for 'model_information' mode
618
+ model_information_parser = subparsers.add_parser(
619
+ "model_information", help="Print model information"
620
+ )
621
+ model_information_parser.add_argument(
622
+ "pth_path",
623
+ type=str,
624
+ help="Path to the .pth file (enclose in double quotes)",
625
+ )
626
+
627
+ # Parser for 'model_fusion' mode
628
+ model_fusion_parser = subparsers.add_parser("model_fusion", help="Fuse two models")
629
+ model_fusion_parser.add_argument(
630
+ "model_name",
631
+ type=str,
632
+ help="Name of the model (enclose in double quotes)",
633
+ )
634
+ model_fusion_parser.add_argument(
635
+ "pth_path_1",
636
+ type=str,
637
+ help="Path to the first .pth file (enclose in double quotes)",
638
+ )
639
+ model_fusion_parser.add_argument(
640
+ "pth_path_2",
641
+ type=str,
642
+ help="Path to the second .pth file (enclose in double quotes)",
643
+ )
644
+
645
+ # Parser for 'tensorboard' mode
646
+ subparsers.add_parser("tensorboard", help="Run tensorboard")
647
+
648
+ # Parser for 'download' mode
649
+ download_parser = subparsers.add_parser("download", help="Download models")
650
+ download_parser.add_argument(
651
+ "model_link",
652
+ type=str,
653
+ help="Link of the model (enclose in double quotes)",
654
+ )
655
+
656
+ return parser.parse_args()
657
+
658
+
659
+ def main():
660
+ if len(sys.argv) == 1:
661
+ print("Please run the script with '-h' for more information.")
662
+ sys.exit(1)
663
+
664
+ args = parse_arguments()
665
+
666
+ try:
667
+ if args.mode == "infer":
668
+ run_infer_script(
669
+ args.f0up_key,
670
+ args.filter_radius,
671
+ args.index_rate,
672
+ args.hop_length,
673
+ args.f0method,
674
+ args.input_path,
675
+ args.output_path,
676
+ args.pth_file,
677
+ args.index_path,
678
+ args.split_audio,
679
+ )
680
+ elif args.mode == "batch_infer":
681
+ run_batch_infer_script(
682
+ args.f0up_key,
683
+ args.filter_radius,
684
+ args.index_rate,
685
+ args.hop_length,
686
+ args.f0method,
687
+ args.input_folder,
688
+ args.output_folder,
689
+ args.pth_file,
690
+ args.index_path,
691
+ )
692
+ elif args.mode == "tts":
693
+ run_tts_script(
694
+ args.tts_text,
695
+ args.tts_voice,
696
+ args.f0up_key,
697
+ args.filter_radius,
698
+ args.index_rate,
699
+ args.hop_length,
700
+ args.f0method,
701
+ args.output_tts_path,
702
+ args.output_rvc_path,
703
+ args.pth_file,
704
+ args.index_path,
705
+ )
706
+ elif args.mode == "preprocess":
707
+ run_preprocess_script(
708
+ args.model_name,
709
+ args.dataset_path,
710
+ str(args.sampling_rate),
711
+ )
712
+
713
+ elif args.mode == "extract":
714
+ run_extract_script(
715
+ args.model_name,
716
+ args.rvc_version,
717
+ args.f0method,
718
+ args.hop_length,
719
+ args.sampling_rate,
720
+ )
721
+ elif args.mode == "train":
722
+ run_train_script(
723
+ args.model_name,
724
+ args.rvc_version,
725
+ args.save_every_epoch,
726
+ args.save_only_latest,
727
+ args.save_every_weights,
728
+ args.total_epoch,
729
+ args.sampling_rate,
730
+ args.batch_size,
731
+ args.gpu,
732
+ args.pitch_guidance,
733
+ args.pretrained,
734
+ args.custom_pretrained,
735
+ args.g_pretrained_path,
736
+ args.d_pretrained_path,
737
+ )
738
+ elif args.mode == "index":
739
+ run_index_script(
740
+ args.model_name,
741
+ args.rvc_version,
742
+ )
743
+ elif args.mode == "model_information":
744
+ run_model_information_script(
745
+ args.pth_path,
746
+ )
747
+ elif args.mode == "model_fusion":
748
+ run_model_fusion_script(
749
+ args.model_name,
750
+ args.pth_path_1,
751
+ args.pth_path_2,
752
+ )
753
+ elif args.mode == "tensorboard":
754
+ run_tensorboard_script()
755
+ elif args.mode == "download":
756
+ run_download_script(
757
+ args.model_link,
758
+ )
759
+ except Exception as error:
760
+ print(f"Error: {error}")
761
+
762
+
763
+ if __name__ == "__main__":
764
+ main()
requirements.txt ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # General dependencies
2
+ ffmpeg-python>=0.2.0
3
+ numpy==1.23.5
4
+ requests
5
+ tqdm
6
+ wget
7
+
8
+ # Audio processing
9
+ faiss-cpu==1.7.3
10
+ librosa==0.9.1
11
+ pyworld==0.3.4
12
+ scipy==1.11.1
13
+ soundfile==0.12.1
14
+ praat-parselmouth
15
+
16
+ # Machine learning
17
+ git+https://github.com/IAHispano/fairseq; sys_platform == 'linux'
18
+ fairseq==0.12.2; sys_platform == 'win32'
19
+ numba; sys_platform == 'linux'
20
+ numba==0.56.4; sys_platform == 'win32'
21
+ torch==2.1.1
22
+ torchcrepe==0.0.21
23
+ torchvision==0.16.1
24
+
25
+ # Visualization
26
+ matplotlib==3.7.2
27
+ tensorboard
28
+ gradio==4.14.0
29
+
30
+ # Miscellaneous
31
+ ffmpy==0.3.1
32
+ tensorboardX
33
+ requests==2.31.0
34
+ edge-tts==6.1.9
35
+ pypresence
36
+ beautifulsoup4
rvc/configs/config.py ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import argparse
2
+ import os
3
+ import sys
4
+ import json
5
+ from multiprocessing import cpu_count
6
+
7
+ import torch
8
+
9
+ version_config_list = [
10
+ "v1/32000.json",
11
+ "v1/40000.json",
12
+ "v1/48000.json",
13
+ "v2/48000.json",
14
+ "v2/32000.json",
15
+ ]
16
+
17
+
18
+ def singleton_variable(func):
19
+ def wrapper(*args, **kwargs):
20
+ if not wrapper.instance:
21
+ wrapper.instance = func(*args, **kwargs)
22
+ return wrapper.instance
23
+
24
+ wrapper.instance = None
25
+ return wrapper
26
+
27
+
28
+ @singleton_variable
29
+ class Config:
30
+ def __init__(self):
31
+ self.device = "cuda:0"
32
+ self.is_half = True
33
+ self.use_jit = False
34
+ self.n_cpu = 0
35
+ self.gpu_name = None
36
+ self.json_config = self.load_config_json()
37
+ self.gpu_mem = None
38
+ self.instead = ""
39
+ self.x_pad, self.x_query, self.x_center, self.x_max = self.device_config()
40
+
41
+ @staticmethod
42
+ def load_config_json() -> dict:
43
+ d = {}
44
+ for config_file in version_config_list:
45
+ with open(f"rvc/configs/{config_file}", "r") as f:
46
+ d[config_file] = json.load(f)
47
+ return d
48
+
49
+ @staticmethod
50
+ def has_mps() -> bool:
51
+ if not torch.backends.mps.is_available():
52
+ return False
53
+ try:
54
+ torch.zeros(1).to(torch.device("mps"))
55
+ return True
56
+ except Exception:
57
+ return False
58
+
59
+ @staticmethod
60
+ def has_xpu() -> bool:
61
+ if hasattr(torch, "xpu") and torch.xpu.is_available():
62
+ return True
63
+ else:
64
+ return False
65
+
66
+ def use_fp32_config(self):
67
+ for config_file in version_config_list:
68
+ self.json_config[config_file]["train"]["fp16_run"] = False
69
+ with open(f"rvc/configs/{config_file}", "r") as f:
70
+ strr = f.read().replace("true", "false")
71
+ with open(f"rvc/configs/{config_file}", "w") as f:
72
+ f.write(strr)
73
+ with open("rvc/train/preprocess/preprocess.py", "r") as f:
74
+ strr = f.read().replace("3.7", "3.0")
75
+ with open("rvc/train/preprocess/preprocess.py", "w") as f:
76
+ f.write(strr)
77
+
78
+ def device_config(self) -> tuple:
79
+ if torch.cuda.is_available():
80
+ if self.has_xpu():
81
+ self.device = self.instead = "xpu:0"
82
+ self.is_half = True
83
+ i_device = int(self.device.split(":")[-1])
84
+ self.gpu_name = torch.cuda.get_device_name(i_device)
85
+ if (
86
+ ("16" in self.gpu_name and "V100" not in self.gpu_name.upper())
87
+ or "P40" in self.gpu_name.upper()
88
+ or "P10" in self.gpu_name.upper()
89
+ or "1060" in self.gpu_name
90
+ or "1070" in self.gpu_name
91
+ or "1080" in self.gpu_name
92
+ ):
93
+ self.is_half = False
94
+ self.use_fp32_config()
95
+ self.gpu_mem = int(
96
+ torch.cuda.get_device_properties(i_device).total_memory
97
+ / 1024
98
+ / 1024
99
+ / 1024
100
+ + 0.4
101
+ )
102
+ if self.gpu_mem <= 4:
103
+ with open("rvc/train/preprocess/preprocess.py", "r") as f:
104
+ strr = f.read().replace("3.7", "3.0")
105
+ with open("rvc/train/preprocess/preprocess.py", "w") as f:
106
+ f.write(strr)
107
+ elif self.has_mps():
108
+ print("No supported Nvidia GPU found")
109
+ self.device = self.instead = "mps"
110
+ self.is_half = False
111
+ self.use_fp32_config()
112
+ else:
113
+ print("No supported Nvidia GPU found")
114
+ self.device = self.instead = "cpu"
115
+ self.is_half = False
116
+ self.use_fp32_config()
117
+
118
+ if self.n_cpu == 0:
119
+ self.n_cpu = cpu_count()
120
+
121
+ if self.is_half:
122
+ x_pad = 3
123
+ x_query = 10
124
+ x_center = 60
125
+ x_max = 65
126
+ else:
127
+ x_pad = 1
128
+ x_query = 6
129
+ x_center = 38
130
+ x_max = 41
131
+
132
+ if self.gpu_mem is not None and self.gpu_mem <= 4:
133
+ x_pad = 1
134
+ x_query = 5
135
+ x_center = 30
136
+ x_max = 32
137
+
138
+ return x_pad, x_query, x_center, x_max
139
+
140
+ def max_vram_gpu(gpu):
141
+ if torch.cuda.is_available():
142
+ gpu_properties = torch.cuda.get_device_properties(gpu)
143
+ total_memory_gb = round(gpu_properties.total_memory / 1024 / 1024 / 1024)
144
+ return total_memory_gb
145
+ else:
146
+ return "0"
147
+
148
+ def get_gpu_info():
149
+ ngpu = torch.cuda.device_count()
150
+ gpu_infos = []
151
+ if torch.cuda.is_available() or ngpu != 0:
152
+ for i in range(ngpu):
153
+ gpu_name = torch.cuda.get_device_name(i)
154
+ mem = int(
155
+ torch.cuda.get_device_properties(i).total_memory / 1024 / 1024 / 1024
156
+ + 0.4
157
+ )
158
+ gpu_infos.append("%s: %s %s GB" % (i, gpu_name, mem))
159
+ if len(gpu_infos) > 0:
160
+ gpu_info = "\n".join(gpu_infos)
161
+ else:
162
+ gpu_info = (
163
+ "Unfortunately, there is no compatible GPU available to support your training."
164
+ )
165
+ return gpu_info
rvc/configs/v1/32000.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "train": {
3
+ "log_interval": 200,
4
+ "seed": 1234,
5
+ "epochs": 20000,
6
+ "learning_rate": 1e-4,
7
+ "betas": [0.8, 0.99],
8
+ "eps": 1e-9,
9
+ "batch_size": 4,
10
+ "fp16_run": true,
11
+ "lr_decay": 0.999875,
12
+ "segment_size": 12800,
13
+ "init_lr_ratio": 1,
14
+ "warmup_epochs": 0,
15
+ "c_mel": 45,
16
+ "c_kl": 1.0
17
+ },
18
+ "data": {
19
+ "max_wav_value": 32768.0,
20
+ "sampling_rate": 32000,
21
+ "filter_length": 1024,
22
+ "hop_length": 320,
23
+ "win_length": 1024,
24
+ "n_mel_channels": 80,
25
+ "mel_fmin": 0.0,
26
+ "mel_fmax": null
27
+ },
28
+ "model": {
29
+ "inter_channels": 192,
30
+ "hidden_channels": 192,
31
+ "filter_channels": 768,
32
+ "n_heads": 2,
33
+ "n_layers": 6,
34
+ "kernel_size": 3,
35
+ "p_dropout": 0,
36
+ "resblock": "1",
37
+ "resblock_kernel_sizes": [3,7,11],
38
+ "resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
39
+ "upsample_rates": [10,4,2,2,2],
40
+ "upsample_initial_channel": 512,
41
+ "upsample_kernel_sizes": [16,16,4,4,4],
42
+ "use_spectral_norm": false,
43
+ "gin_channels": 256,
44
+ "spk_embed_dim": 109
45
+ }
46
+ }
rvc/configs/v1/40000.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "train": {
3
+ "log_interval": 200,
4
+ "seed": 1234,
5
+ "epochs": 20000,
6
+ "learning_rate": 1e-4,
7
+ "betas": [0.8, 0.99],
8
+ "eps": 1e-9,
9
+ "batch_size": 4,
10
+ "fp16_run": true,
11
+ "lr_decay": 0.999875,
12
+ "segment_size": 12800,
13
+ "init_lr_ratio": 1,
14
+ "warmup_epochs": 0,
15
+ "c_mel": 45,
16
+ "c_kl": 1.0
17
+ },
18
+ "data": {
19
+ "max_wav_value": 32768.0,
20
+ "sampling_rate": 40000,
21
+ "filter_length": 2048,
22
+ "hop_length": 400,
23
+ "win_length": 2048,
24
+ "n_mel_channels": 125,
25
+ "mel_fmin": 0.0,
26
+ "mel_fmax": null
27
+ },
28
+ "model": {
29
+ "inter_channels": 192,
30
+ "hidden_channels": 192,
31
+ "filter_channels": 768,
32
+ "n_heads": 2,
33
+ "n_layers": 6,
34
+ "kernel_size": 3,
35
+ "p_dropout": 0,
36
+ "resblock": "1",
37
+ "resblock_kernel_sizes": [3,7,11],
38
+ "resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
39
+ "upsample_rates": [10,10,2,2],
40
+ "upsample_initial_channel": 512,
41
+ "upsample_kernel_sizes": [16,16,4,4],
42
+ "use_spectral_norm": false,
43
+ "gin_channels": 256,
44
+ "spk_embed_dim": 109
45
+ }
46
+ }
rvc/configs/v1/48000.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "train": {
3
+ "log_interval": 200,
4
+ "seed": 1234,
5
+ "epochs": 20000,
6
+ "learning_rate": 1e-4,
7
+ "betas": [0.8, 0.99],
8
+ "eps": 1e-9,
9
+ "batch_size": 4,
10
+ "fp16_run": true,
11
+ "lr_decay": 0.999875,
12
+ "segment_size": 11520,
13
+ "init_lr_ratio": 1,
14
+ "warmup_epochs": 0,
15
+ "c_mel": 45,
16
+ "c_kl": 1.0
17
+ },
18
+ "data": {
19
+ "max_wav_value": 32768.0,
20
+ "sampling_rate": 48000,
21
+ "filter_length": 2048,
22
+ "hop_length": 480,
23
+ "win_length": 2048,
24
+ "n_mel_channels": 128,
25
+ "mel_fmin": 0.0,
26
+ "mel_fmax": null
27
+ },
28
+ "model": {
29
+ "inter_channels": 192,
30
+ "hidden_channels": 192,
31
+ "filter_channels": 768,
32
+ "n_heads": 2,
33
+ "n_layers": 6,
34
+ "kernel_size": 3,
35
+ "p_dropout": 0,
36
+ "resblock": "1",
37
+ "resblock_kernel_sizes": [3,7,11],
38
+ "resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
39
+ "upsample_rates": [10,6,2,2,2],
40
+ "upsample_initial_channel": 512,
41
+ "upsample_kernel_sizes": [16,16,4,4,4],
42
+ "use_spectral_norm": false,
43
+ "gin_channels": 256,
44
+ "spk_embed_dim": 109
45
+ }
46
+ }
rvc/configs/v2/32000.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "train": {
3
+ "log_interval": 200,
4
+ "seed": 1234,
5
+ "epochs": 20000,
6
+ "learning_rate": 1e-4,
7
+ "betas": [0.8, 0.99],
8
+ "eps": 1e-9,
9
+ "batch_size": 4,
10
+ "fp16_run": true,
11
+ "lr_decay": 0.999875,
12
+ "segment_size": 12800,
13
+ "init_lr_ratio": 1,
14
+ "warmup_epochs": 0,
15
+ "c_mel": 45,
16
+ "c_kl": 1.0
17
+ },
18
+ "data": {
19
+ "max_wav_value": 32768.0,
20
+ "sampling_rate": 32000,
21
+ "filter_length": 1024,
22
+ "hop_length": 320,
23
+ "win_length": 1024,
24
+ "n_mel_channels": 80,
25
+ "mel_fmin": 0.0,
26
+ "mel_fmax": null
27
+ },
28
+ "model": {
29
+ "inter_channels": 192,
30
+ "hidden_channels": 192,
31
+ "filter_channels": 768,
32
+ "n_heads": 2,
33
+ "n_layers": 6,
34
+ "kernel_size": 3,
35
+ "p_dropout": 0,
36
+ "resblock": "1",
37
+ "resblock_kernel_sizes": [3,7,11],
38
+ "resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
39
+ "upsample_rates": [10,8,2,2],
40
+ "upsample_initial_channel": 512,
41
+ "upsample_kernel_sizes": [20,16,4,4],
42
+ "use_spectral_norm": false,
43
+ "gin_channels": 256,
44
+ "spk_embed_dim": 109
45
+ }
46
+ }
rvc/configs/v2/48000.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "train": {
3
+ "log_interval": 200,
4
+ "seed": 1234,
5
+ "epochs": 20000,
6
+ "learning_rate": 1e-4,
7
+ "betas": [0.8, 0.99],
8
+ "eps": 1e-9,
9
+ "batch_size": 4,
10
+ "fp16_run": true,
11
+ "lr_decay": 0.999875,
12
+ "segment_size": 17280,
13
+ "init_lr_ratio": 1,
14
+ "warmup_epochs": 0,
15
+ "c_mel": 45,
16
+ "c_kl": 1.0
17
+ },
18
+ "data": {
19
+ "max_wav_value": 32768.0,
20
+ "sampling_rate": 48000,
21
+ "filter_length": 2048,
22
+ "hop_length": 480,
23
+ "win_length": 2048,
24
+ "n_mel_channels": 128,
25
+ "mel_fmin": 0.0,
26
+ "mel_fmax": null
27
+ },
28
+ "model": {
29
+ "inter_channels": 192,
30
+ "hidden_channels": 192,
31
+ "filter_channels": 768,
32
+ "n_heads": 2,
33
+ "n_layers": 6,
34
+ "kernel_size": 3,
35
+ "p_dropout": 0,
36
+ "resblock": "1",
37
+ "resblock_kernel_sizes": [3,7,11],
38
+ "resblock_dilation_sizes": [[1,3,5], [1,3,5], [1,3,5]],
39
+ "upsample_rates": [12,10,2,2],
40
+ "upsample_initial_channel": 512,
41
+ "upsample_kernel_sizes": [24,20,4,4],
42
+ "use_spectral_norm": false,
43
+ "gin_channels": 256,
44
+ "spk_embed_dim": 109
45
+ }
46
+ }