-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutils.py
36 lines (26 loc) · 1.06 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import os
def segmentation(x, frame_size, hop_size):
x_seg =x.unfold(-1, frame_size, hop_size)
x_seg = x_seg.transpose(0,1).contiguous()
return x_seg
def get_wav_paths(paths: list):
wav_paths=[]
if type(paths)==str:
paths=[paths]
for path in paths:
for root, dirs, files in os.walk(path):
wav_paths += [os.path.join(root,file) for file in files if os.path.splitext(file)[-1]=='.wav']
wav_paths.sort(key=lambda x: os.path.split(x)[-1])
return wav_paths
def check_dir_exist(path_list):
if type(path_list) == str:
path_list = [path_list]
for path in path_list:
if type(path) == str and os.path.splitext(path)[-1] == '' and not os.path.exists(path):
os.makedirs(path)
def get_filename(path):
return os.path.splitext(os.path.basename(path))
def get_one_sample_path(dir_lr_path, dir_hr_path):
wav_lr_path = get_wav_paths(dir_lr_path)[0]
wav_hr_path = get_wav_paths(dir_hr_path)[0]
return wav_lr_path, wav_hr_path