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.
13 lines
441 B
13 lines
441 B
#!/bin/bash
|
|
|
|
# audio download
|
|
wget -c https://paddlespeech.bj.bcebos.com/PaddleAudio/zh.wav https://paddlespeech.bj.bcebos.com/PaddleAudio/en.wav
|
|
|
|
# to recognize text
|
|
paddlespeech whisper --task transcribe --input ./zh.wav
|
|
|
|
# to recognize text and translate to English
|
|
paddlespeech whisper --task translate --input ./zh.wav
|
|
|
|
# to change model English-Only model
|
|
paddlespeech whisper --lang en --size base --task transcribe --input ./en.wav |