I'm trying to combine all the .wav files in a folder to singe large .wav please help
import subprocess
import fnmatch
import os
matches = []
for root, dirnames, filenames in
os.walk('/Users/user/Downloads/audio_files'):
for filename in fnmatch.filter(filenames, '*.WAV'):
matches.append(root.replace('/Volumes/UNTITLED/',''))
folders = set(matches)
print(folders)