diff --git a/demos/automatic_video_subtitiles/README_cn.md b/demos/automatic_video_subtitiles/README_cn.md index 990ff6dbd..8328d8219 100644 --- a/demos/automatic_video_subtitiles/README_cn.md +++ b/demos/automatic_video_subtitiles/README_cn.md @@ -44,3 +44,12 @@ ffmpeg -i subtitle_demo1.mp4 -ac 1 -ar 16000 -vn input.wav Text Result: 当我说我可以把三十年的经验变成一个准确的算法,他们说不可能。当我说我们十个人就能实现对十九个城市变电站七乘二十四小时的实时监管,他们说不可能。 ``` + + 使用英文音频时,需要指定模型和语言: + ```py + text = asr_executor( + audio_file='en.wav', + lang='en', + model='transformer_librispeech', + device=paddle.get_device()) + ```