os.mkdir(OUTPUT_DIR)
print("Converting files to wav format...")
for eachfile in os.listdir(INPUT_DIR):
for eachfile1 in os.listdir(eachfile):
song = AudioSegment.from_file(INPUT_DIR + "/" + eachfile + "/" +eachfile1, FILE_TYPE)
song.export(OUTPUT_DIR + eachfile + eachfile1[:-3]+ "_wav.wav", format="wav")
print("DONE!")
while executing this code i'm facing `enter code here`: name 'eachfile' is not defined.
我正在尝试转换文件夹名称“ genre”中的所有音频文件,并且该文件夹中的每个文件夹都包含100个音频文件。我正在尝试将所有音频文件转换为受尊重的WAV文件。 预先感谢...。