VoPho


NameVoPho JSON
Version 0.0.12 PyPI version JSON
download
home_pageNone
SummaryAn easy to use Multilingual phonemization meta-library
upload_time2024-11-20 04:01:02
maintainerNone
docs_urlNone
authorShoukanLabs.
requires_python>=3.6
licenseNone
keywords phonemization tts multilingual
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # VoPho

VoPho is a phonemization meta-library designed to make multilingual phonemization fast, accessible, multilingual, and accurate!

## Installation

You can install VoPho via pip:

```bash
pip install VoPho
```

# Quick Start
Here's a quick example of how to use VoPho to phonemize multilingual text:

```python
from VoPho.engine import Phonemizer
from time import time

# Example input text in multiple languages
input_text = "hello, 你好は中国語でこんにちはと言う意味をしています。 Привет!"

# Instantiate the Phonemizer
engine = Phonemizer()

# Measure the time taken to phonemize
start = time()
output = engine.phonemize(input_text, output_dict=True)
end = time()
print(input_text)
engine.pretty_print(output)
print(f"Took - First: {end - start}")

# Measure the time taken for subsequent calls
start = time()
output = engine.phonemize(input_text, output_dict=True)
end = time()
print(input_text)
engine.pretty_print(output)
print(f"Took - Instantiated: {end - start}")

```

```
>>> OUTPUT: həlˈoʊ, ni˨˩˦hɑʊ˨˩˦ wa tɕɯɯgokɯ go de konnitɕiha to iɯ imi o ɕite imasɯ. prʲɪvʲ'et!
```

# Features
- Fast: Optimized for performance.
- Accessible: Easy to integrate and use.
- Multilingual: Supports a wide range of languages.
- Accurate: Provides precise phonemization.

# Supported Languages
| Language   | Supported | Verified Accuracy | Notes                          |
|------------|-----------|-------------------|--------------------------------|
| English    | Yes       | Yes               | Fully supported and verified   |
| Russian    | Yes       | Yes               | Fully supported and verified   |
| French     | Planned   | N/A               | Planned for future support     |
| German     | Planned   | N/A               | Planned for future support     |
| Spanish    | Planned   | N/A               | Planned for future support     |
| Italian    | Planned   | N/A               | Planned for future support     |
| Mandarin   | Yes       | Yes               | Fully supported and verified   |
| Japanese   | Yes       | Yes               | Fully supported and verified   |
| Korean     | Planned   | N/A               | Planned for future support     |
| Thai       | Yes       | No                | Supported, accuracy unverified |
| Arabic     | Planned   | N/A               | Planned for future support     |
| Persian    | Planned   | N/A               | Planned for future support     |


# License
This project is licensed under the MIT License - see the [LICENSE](https://github.com/ShoukanLabs/VoPho/blob/main/LICENSE) file for details.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "VoPho",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "Phonemization, TTS, Multilingual",
    "author": "ShoukanLabs.",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/30/52/8ef0ebadd730e73c6e6aa7c4789c649e73577ba65015154c6fdbf8d1cf2e/vopho-0.0.12.tar.gz",
    "platform": null,
    "description": "# VoPho\n\nVoPho is a phonemization meta-library designed to make multilingual phonemization fast, accessible, multilingual, and accurate!\n\n## Installation\n\nYou can install VoPho via pip:\n\n```bash\npip install VoPho\n```\n\n# Quick Start\nHere's a quick example of how to use VoPho to phonemize multilingual text:\n\n```python\nfrom VoPho.engine import Phonemizer\nfrom time import time\n\n# Example input text in multiple languages\ninput_text = \"hello, \u4f60\u597d\u306f\u4e2d\u56fd\u8a9e\u3067\u3053\u3093\u306b\u3061\u306f\u3068\u8a00\u3046\u610f\u5473\u3092\u3057\u3066\u3044\u307e\u3059\u3002 \u041f\u0440\u0438\u0432\u0435\u0442!\"\n\n# Instantiate the Phonemizer\nengine = Phonemizer()\n\n# Measure the time taken to phonemize\nstart = time()\noutput = engine.phonemize(input_text, output_dict=True)\nend = time()\nprint(input_text)\nengine.pretty_print(output)\nprint(f\"Took - First: {end - start}\")\n\n# Measure the time taken for subsequent calls\nstart = time()\noutput = engine.phonemize(input_text, output_dict=True)\nend = time()\nprint(input_text)\nengine.pretty_print(output)\nprint(f\"Took - Instantiated: {end - start}\")\n\n```\n\n```\n>>> OUTPUT: h\u0259l\u02c8o\u028a, ni\u02e8\u02e9\u02e6h\u0251\u028a\u02e8\u02e9\u02e6 wa t\u0255\u026f\u026fgok\u026f go de konnit\u0255iha to i\u026f imi o \u0255ite imas\u026f. pr\u02b2\u026av\u02b2'et!\n```\n\n# Features\n- Fast: Optimized for performance.\n- Accessible: Easy to integrate and use.\n- Multilingual: Supports a wide range of languages.\n- Accurate: Provides precise phonemization.\n\n# Supported Languages\n| Language   | Supported | Verified Accuracy | Notes                          |\n|------------|-----------|-------------------|--------------------------------|\n| English    | Yes       | Yes               | Fully supported and verified   |\n| Russian    | Yes       | Yes               | Fully supported and verified   |\n| French     | Planned   | N/A               | Planned for future support     |\n| German     | Planned   | N/A               | Planned for future support     |\n| Spanish    | Planned   | N/A               | Planned for future support     |\n| Italian    | Planned   | N/A               | Planned for future support     |\n| Mandarin   | Yes       | Yes               | Fully supported and verified   |\n| Japanese   | Yes       | Yes               | Fully supported and verified   |\n| Korean     | Planned   | N/A               | Planned for future support     |\n| Thai       | Yes       | No                | Supported, accuracy unverified |\n| Arabic     | Planned   | N/A               | Planned for future support     |\n| Persian    | Planned   | N/A               | Planned for future support     |\n\n\n# License\nThis project is licensed under the MIT License - see the [LICENSE](https://github.com/ShoukanLabs/VoPho/blob/main/LICENSE) file for details.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "An easy to use Multilingual phonemization meta-library",
    "version": "0.0.12",
    "project_urls": {
        "homepage": "https://github.com/ShoukanLabs/VoPho"
    },
    "split_keywords": [
        "phonemization",
        " tts",
        " multilingual"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a10d0cb7c63687cb809df57c6bb9bb114faaee51258ecb1bdcc5496f1edce990",
                "md5": "7b68c6a2c806c6df17c0d4846351ed05",
                "sha256": "4e01b62cecc0471172925ba31d1460bf636dc8d217b337af8d8d38642f0a8ab7"
            },
            "downloads": -1,
            "filename": "VoPho-0.0.12-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7b68c6a2c806c6df17c0d4846351ed05",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 23527,
            "upload_time": "2024-11-20T04:01:00",
            "upload_time_iso_8601": "2024-11-20T04:01:00.668053Z",
            "url": "https://files.pythonhosted.org/packages/a1/0d/0cb7c63687cb809df57c6bb9bb114faaee51258ecb1bdcc5496f1edce990/VoPho-0.0.12-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30528ef0ebadd730e73c6e6aa7c4789c649e73577ba65015154c6fdbf8d1cf2e",
                "md5": "24d76fe4feb2590d77d6f57b1011233c",
                "sha256": "a7edc370ba9dac45979ab8cde5c9f98440c990a3330b89b4d50df9d641a32e65"
            },
            "downloads": -1,
            "filename": "vopho-0.0.12.tar.gz",
            "has_sig": false,
            "md5_digest": "24d76fe4feb2590d77d6f57b1011233c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 22725,
            "upload_time": "2024-11-20T04:01:02",
            "upload_time_iso_8601": "2024-11-20T04:01:02.210093Z",
            "url": "https://files.pythonhosted.org/packages/30/52/8ef0ebadd730e73c6e6aa7c4789c649e73577ba65015154c6fdbf8d1cf2e/vopho-0.0.12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-20 04:01:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ShoukanLabs",
    "github_project": "VoPho",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "vopho"
}
        
Elapsed time: 0.36337s