1 Star 0 Fork 0

codeQ/bili2text

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
speech2text.py 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
import whisper
import os
from tqdm import tqdm
whisper_model = None
def load_whisper(model="tiny"):
global whisper_model
whisper_model = whisper.load_model(model)
print("Whisper模型:"+model)
def run_analysis(filename, model="tiny", prompt="以下是普通话的句子。"):
global whisper_model
print("正在加载Whisper模型...")
# 读取列表中的音频文件
audio_list = os.listdir(f"audio/slice/{filename}")
print("加载Whisper模型成功!")
# 创建outputs文件夹
os.makedirs("outputs", exist_ok=True)
print("正在转换文本...")
i = 1
for fn in audio_list:
print(f"正在转换第{i}/{len(audio_list)}个音频...")
# 识别音频
result = whisper_model.transcribe(f"audio/slice/{filename}/{fn}", initial_prompt=prompt)
print("".join([i["text"] for i in result["segments"] if i is not None]))
with open(f"outputs/{filename}.txt", "a", encoding="utf-8") as f:
f.write("".join([i["text"] for i in result["segments"] if i is not None]))
f.write("\n")
# run_analysis("20231125133459")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/hacker-zj/bili2text.git
git@gitee.com:hacker-zj/bili2text.git
hacker-zj
bili2text
bili2text
main

搜索帮助