PaddleSpeech icon indicating copy to clipboard operation
PaddleSpeech copied to clipboard

Easy-to-use Speech Toolkit including Self-Supervised Learning model, SOTA/Streaming ASR with punctuation, Streaming TTS with text frontend, Speaker Verification System, End-to-End Speech Translation a...

Results 289 PaddleSpeech issues
Sort by recently updated
recently updated
newest added

记录一些导致[C++前端](https://github.com/PaddlePaddle/PaddleSpeech/tree/develop/demos/TTSCppFrontend)崩溃的示例文本: 1. 包含字母,断言异常。 ``` ./run_front_demo.sh --sentence 'TTS语音合成服务' ``` ``` tts_front_demo: /home/firefly/work/tts/PaddleSpeech/demos/TTSCppFrontend/src/front/front_interface.cpp:358: int ppspeech::FrontEngineInterface::GetInitialsFinals(const string&, std::vector&, std::vector&): Assertion `word_finals.size() == ppspeech::utf8string2wstring(word).length() && word_finals.size() == word_initials.size()' failed. ``` 2. 字母在结尾,内存越界。 ``` ./run_front_demo.sh...

Bug
feature request
T2S
good first issue

在linux环境安装paddleSpeech1.4.1版本,使用了pyhton1.8和3.10都会报这样的错误。 `Building wheels for collected packages: paddlespeech Building wheel for paddlespeech (setup.py) ... error error: subprocess-exited-with-error × python setup.py bdist_wheel did not run successfully. │ exit code: 1 ╰─> [25...

Bug
S2T

## General Question 目前只看到一个TTSAndroid项目,请问是否有其他的比如ios上的 ASR部署方案

Question
feature request
S2T

如webrtcvad windows编译不通过

feature request

环境: PaddlePaddle 2.2.0 Python 3.8(ubuntu18.04) Cuda 11.2 ASR和TTS在开启第一个后,再打开另一个后报错,该怎么处理? root@autodl-container-085311853c-b00a9bac:~/PaddleSpeech# paddlespeech_server start --config_file ./demos/streaming_asr_server/conf/application.yaml WARNING: OMP_NUM_THREADS set to 12, not 1. The computation speed will not be optimized if you use...

Question

请问asr混合模型能修改conformer_talcs_application.yaml文件支持websocket不?

Question

我下载模型[fastspeech2_mix_onnx_0.2.0.zip](https://paddlespeech.bj.bcebos.com/t2s/chinse_english_mixed/models/fastspeech2_mix_onnx_0.2.0.zip), 然后将tts_online_ws_application.yaml中模型名称改为fastspeech2_mix,voc改为hifigan_csmsc。报错如下: [2024-04-29 08:39:32,162] [ ERROR] - Failed to start server. [2024-04-29 08:39:32,162] [ ERROR] - Please check config, am support: fastspeech2, voc support: hifigan_csmsc-zh or mb_melgan_csmsc. 使用命令行正常:paddlespeech tts --am...

Question

环境 python 3.9 paddlepaddle 2.6.1 paddlespeech 1.4.1 安装期间,已经解决了 1、setuptools_scm 报错问题 2、numpy 版本过高问题 : module 'numpy' has no attribute 'complex' 使用时,报了下面错误: paddlespeech asr --lang zh --input zh.wav [2024-04-25 13:39:18,021] [ ERROR]...

(PaddleSpeech) root@45ee9542141a:/zyyo/code/PaddleSpeech/examples/ljspeech/tts0# ./run.sh Generate durations.txt from MFA results ... Extract features ... 100%|████████████████████████████████████████████████████████████████████████████████| 4434/4434 [00:30

Bug
T2S

我是使用的paddlespeech-r1.4.1,代码为: ```python from paddlespeech.cli.tts.infer import TTSExecutor tts = TTSExecutor() am = "fastspeech2_mix" voc = "hifigan_aishell3" output = f"{am}-{voc}.wav" tts(text="今天天气十分good。I am jack, What's your name?", output=output, lang="mix", am=am, voc=voc) print(f"output: {output}")...

Question