2 Star 30 Fork 7

李子/Sound_File_Processing

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
read_sound_txt.py 834 Bytes
一键复制 编辑 原始数据 按行查看 历史
李子 提交于 2021-11-12 21:26 . 生成txt
import shutil
from utils.file_io import listdir, file_r, file_w
if __name__ == '__main__':
txt_root_path = r"G:\vediodownload\原神分级\遗漏\txt"
sound_root_path = r"G:\vediodownload\七海\7wav"
transcript_root_path = r"G:\vediodownload\原神分级\遗漏"
min_length = 2000
txt_file_list = []
txt_dict = {}
listdir(txt_root_path, txt_file_list)
for txt_path in txt_file_list:
txt_name = txt_path.split("/")[-1:][0].replace(".txt", "").replace("CHS_", "")
txt_list = []
txt_string = file_r(txt_path).replace("\n", "")
file_w(transcript_root_path + r"\transcript.txt", txt_name + " " + txt_string + "\n", "a")
txt_dict[txt_name] = txt_string
shutil.move(sound_root_path+"\\input\\"+txt_name+".wav", sound_root_path+"\\output\\"+txt_name+".wav")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/kslizi/Sound_File_Processing.git
git@gitee.com:kslizi/Sound_File_Processing.git
kslizi
Sound_File_Processing
Sound_File_Processing
master

搜索帮助