Skip to content

Commit 1d7d63e

Browse files
committed
update
1 parent 2fa7ee6 commit 1d7d63e

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ version: 0.0.2
1616
date-released: 2024-04-23
1717
license: MIT
1818
url: https://github.com/stefantaubert/zh-tts
19-
doi: 10.5281/zenodo.10512789
19+
doi: 10.5281/zenodo.11048515

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
[![MIT](https://img.shields.io/github/license/stefantaubert/zh-tts.svg)](https://github.com/stefantaubert/zh-tts/blob/master/LICENSE)
88
[![PyPI](https://img.shields.io/pypi/wheel/zho-tts.svg)](https://pypi.python.org/pypi/zho-tts/#files)
99
![PyPI](https://img.shields.io/pypi/implementation/zho-tts.svg)
10-
[![PyPI](https://img.shields.io/github/commits-since/stefantaubert/zh-tts/latest/master.svg)](https://github.com/stefantaubert/zh-tts/compare/v0.0.1...master)
11-
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.10512789.svg)](https://doi.org/10.5281/zenodo.10512789)
10+
[![PyPI](https://img.shields.io/github/commits-since/stefantaubert/zh-tts/latest/master.svg)](https://github.com/stefantaubert/zh-tts/compare/v0.0.2...master)
11+
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.11048515.svg)](https://doi.org/10.5281/zenodo.11048515)
1212

1313
Web app, command-line interface and Python library for synthesizing Chinese texts into speech.
1414

@@ -20,7 +20,7 @@ pip install zho-tts --user
2020

2121
## Usage as web app
2222

23-
Visit [🤗 Hugging Face](https://huggingface.co/spaces/stefantaubert/zh-tts) for a live demo.
23+
Visit [🤗 Hugging Face](https://huggingface.co/spaces/stefantaubert/zho-tts) for a live demo.
2424

2525
<a href="https://huggingface.co/spaces/stefantaubert/zho-tts">
2626
<img src="https://github.com/stefantaubert/zh-tts/raw/master/img/hf.png" alt="Screenshot Hugging Face" style="max-width: 600px; width: 100%"/>
@@ -109,7 +109,7 @@ Tones and duration markers can be combined, e.g., ə˧˥ː
109109

110110
If you want to cite this repo, you can use the BibTeX-entry generated by GitHub (see *About => Cite this repository*).
111111

112-
- Taubert, S. (2024). zho-tts (Version 0.0.1) [Computer software]. [https://doi.org/10.5281/zenodo.10512789](https://doi.org/10.5281/zenodo.10512789)
112+
- Taubert, S. (2024). zho-tts (Version 0.0.2) [Computer software]. [https://doi.org/10.5281/zenodo.11048515](https://doi.org/10.5281/zenodo.11048515)
113113

114114
## Acknowledgments
115115

examples/synthesize-ipa.wav

0 Bytes
Binary file not shown.

examples/synthesize.wav

0 Bytes
Binary file not shown.

src/zho_tts_cli/main.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
from argparse import ArgumentParser, Namespace
22
from typing import Callable
33

4-
from zho_tts.helper import get_default_device
5-
from zho_tts.synthesizer import AVAILABLE_SPEAKERS
4+
from zho_tts import AVAILABLE_SPEAKERS, get_default_device
65
from zho_tts_app import get_work_dir, load_models_to_cache, synthesize_ipa, synthesize_zho
7-
from zho_tts_app.main import synthesize_zho
86
from zho_tts_cli.argparse_helper import (get_torch_devices, parse_device,
97
parse_float_between_zero_and_one,
108
parse_non_empty_or_whitespace, parse_non_negative_float,

src/zho_tts_gr/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ def build_interface(cache_examples: bool = False) -> gr.Blocks:
317317
318318
### Citation
319319
320-
Taubert, S. (2024). zho-tts (Version {APP_VERSION}) [Computer software]. https://doi.org/10.5281/zenodo.10512789
320+
Taubert, S. (2024). zho-tts (Version {APP_VERSION}) [Computer software]. https://doi.org/10.5281/zenodo.11048515
321321
322322
### Acknowledgments
323323

0 commit comments

Comments
 (0)