We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ec013a commit 98c708dCopy full SHA for 98c708d
audiosplitter.py
@@ -31,7 +31,7 @@ def split_long_audios():
31
os.makedirs('./wavs_split_temp')
32
if not os.path.exists('./wavs_split_final'):
33
os.makedirs('./wavs_split_final')
34
- for wav in glob.glob('./wavs/*.wav'):
+ for wav in glob.glob('./put_audio_files_here/*.wav'):
35
# get the filename without the extension
36
filename = os.path.splitext(os.path.basename(wav))[0]
37
# get the length of the audio
0 commit comments