You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PaddleSpeech/paddlespeech/cli/README.md

29 lines
531 B

# PaddleSpeech Command Line
The simplest approach to use PaddleSpeech models.
## Help
3 years ago
```bash
paddlespeech help
```
## Audio Classification
```bash
paddlespeech cls --input input.wav
```
3 years ago
## Automatic Speech Recognition
```
paddlespeech asr --lang zh --input input_16k.wav
```
## Speech Translation (English to Chinese)
```bash
paddlespeech st --input input_16k.wav
```
## Text-to-Speech
```bash
paddlespeech tts --input "你好,欢迎使用百度飞桨深度学习框架!" --output output.wav
```