Whisper 音频转文字模型体验

参考:
https://github.com/openai/whisper
https://blog.csdn.net/weixin_44011409/article/details/127507692

安装

安装Whisper 和ffmpeg
(# on Ubuntu or Debian
sudo apt update && sudo apt install ffmpeg

on Windows using Chocolatey (https://chocolatey.org/)
choco install ffmpeg

on Windows using Scoop (https://scoop.sh/)
scoop install ffmpeg)

pip install -U openai-whisper

Whisper 音频转文字模型体验_第1张图片
Whisper 音频转文字模型体验_第2张图片

使用(运行的时候看有调用gpu)

whisper ****音频文件****aa1.mp3    --model  base   --language Chinese

文字出来的是繁体
在这里插入图片描述

翻译成英文

whisper C:\Users\lonng\Downloads\aa1.mp3  --language Chinese --task translate  --model  base

在这里插入图片描述

你可能感兴趣的:(深度学习,whisper,音视频,ffmpeg)