c2dc4dae创建于 2025年3月20日历史提交
文件最后提交记录最后更新时间
Fix some typos. (#3178) Signed-off-by: Yulv-git <yulvchi@qq.com>3 年前
Fix typos (#4021) * Fix * Fix * Fix1 年前
[TTS][Paddle-Lite] Add Chinese C++ TTS Frontend, let TTS Arm Linux demo support the synthesis of arbitrary Chinese sentences (#3018) * [TTS] add a TTS CPP frontend demo 3 年前
[TTS][Paddle-Lite] Add Chinese C++ TTS Frontend, let TTS Arm Linux demo support the synthesis of arbitrary Chinese sentences (#3018) * [TTS] add a TTS CPP frontend demo 3 年前
[TTS][Paddle-Lite] Add Chinese C++ TTS Frontend, let TTS Arm Linux demo support the synthesis of arbitrary Chinese sentences (#3018) * [TTS] add a TTS CPP frontend demo 3 年前
[docs]update readme (#3043) 3 年前
[TTS][Paddle-Lite] Add Chinese C++ TTS Frontend, let TTS Arm Linux demo support the synthesis of arbitrary Chinese sentences (#3018) * [TTS] add a TTS CPP frontend demo 3 年前
[TTS][Paddle-Lite] Add Chinese C++ TTS Frontend, let TTS Arm Linux demo support the synthesis of arbitrary Chinese sentences (#3018) * [TTS] add a TTS CPP frontend demo 3 年前
[TTS][Paddle-Lite] Add Chinese C++ TTS Frontend, let TTS Arm Linux demo support the synthesis of arbitrary Chinese sentences (#3018) * [TTS] add a TTS CPP frontend demo 3 年前
【doc】fix download link case abnormal traffic (#4020) * fix download link case abnormal traffic * fix code style1 年前
[TTS][Paddle-Lite] Add Chinese C++ TTS Frontend, let TTS Arm Linux demo support the synthesis of arbitrary Chinese sentences (#3018) * [TTS] add a TTS CPP frontend demo 3 年前
README.md

PaddleSpeech TTS CPP Frontend

A TTS frontend that implements text-to-phoneme conversion.

Currently it only supports Chinese, any English word will crash the demo.

Install Build Tools

# Ubuntu
sudo apt install build-essential cmake pkg-config

# CentOS
sudo yum groupinstall "Development Tools"
sudo yum install cmake

If your cmake version is too old, you can go here to download a precompiled new version: https://cmake.org/download/

Build

# Build with all CPU cores
./build.sh

# Build with 1 core
./build.sh -j1

Dependent libraries will be automatically downloaded to the third-party/build folder.

If the download speed is too slow, you can open third-party/CMakeLists.txt and modify GIT_REPOSITORY URLs.

Download dictionary files

./download.sh

Run

You can change --phone2id_path in ./front_demo/front.conf to the phone_id_map.txt of your own acoustic model.

./run_front_demo.sh
./run_front_demo.sh --help
./run_front_demo.sh --sentence "这是语音合成服务的文本前端,用于将文本转换为音素序号数组。"
./run_front_demo.sh --front_conf ./front_demo/front.conf --sentence "你还需要一个语音合成后端才能将其转换为实际的声音。"

Clean

./clean.sh

The folders front_demo/dict, build and third-party/build will be deleted.