代码拉取完成,页面将自动刷新
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")
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。