官网可以申请该数据集,想要的可以私信或者发加q3280461976
大家按照之前网上的方法只能生成一堆空文件夹就是因为没有安装sph2pipe。按照下列步骤操作
下面就是转换代码,详细说一下你需要改哪些地方,特别是第三点,非常重要!!!
"""
# example:
# 11-1.1/wsj0/si_tr_s/01t/01to030v.wv1 is converted to wav and
# stored in YOUR_PATH/wsj0/si_tr_s/01t/01to030v.wav
"""
import os
# 你下载的wsj0的根目录 例子:E:\\csr_1_comp_LDC93S6A\\csr_1_comp,
root_dir = ""
# the disc number
disc_dir = []
for list_disc in os.listdir(root_dir):
if list_disc not in ["text", "11-13.1"]: #doc file and 11-13.1 file do not contain .wv files
# the data dir for each disc
disc_dir.append(os.path.join(root_dir, list_disc, "wsj0"))
# 转换后的文件想要保存的位置
my_path = ""
if not os.path.exists(my_path):
os.mkdir(my_path)
# # the sub_data dir for each disc
for i, list_sub_data in enumerate(disc_dir):
for sub_data_dir in os.listdir(list_sub_data):
if (not sub_data_dir.startswith("si")) and (not sub_data_dir.startswith("sd")):
continue
s_dir = os.path.join(my_path, sub_data_dir)
if not os.path.exists(s_dir):
os.mkdir(s_dir)
if sub_data_dir[0][0] == 's':
datatype_dir = os.path.join(list_sub_data, sub_data_dir)
for list_spk in os.listdir(datatype_dir):
spk_dir = os.path.join(s_dir, list_spk)
spk_dir_abs = os.path.join(datatype_dir, list_spk)
if not os.path.exists(spk_dir):
os.mkdir(spk_dir)
for wv_file in os.listdir(spk_dir_abs):
if (not wv_file.endswith('.wv1')) and (not wv_file.endswith('.wv2')):
continue
speech_dir = os.path.join(spk_dir_abs, wv_file)
if wv_file.split('.')[1] == "wv1":
target_name = wv_file.split(sep='.')[0] + '.wav'
elif wv_file.split('.')[1] == 'wv2':
target_name = wv_file.split(sep='.')[0] + '_1.wav'
target_dir = spk_dir + '\\' + target_name
# 一定要注意!!! sph2pipe -f wav前面的路径必须包含上面讲到的sph2pipe.exe,你只需要根据你sph2pipe.exe存放的位置修改这段路径:E:\\sph2pipe_v2.5.tar\\sph2pipe_v2.5
cmd = "E:\\sph2pipe_v2.5.tar\\sph2pipe_v2.5\\sph2pipe -f wav " + speech_dir + " " + target_dir
os.system(cmd)