Spaces:
Running on Zero
Running on Zero
File size: 16,180 Bytes
64ec292 | 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | import argparse
import os
import shutil
import time
from multiprocessing import Pool
from typing import Dict, List, Optional, Tuple, Union
import numpy as np
import soundfile as sf
from tqdm import tqdm
def combine_audio_files(files: List[str]) -> Tuple[np.ndarray, int]:
"""
Combines multiple audio files into one by overlaying them.
Parameters:
- files (List[str]): List of file paths to be combined.
Returns:
- Tuple[np.ndarray, int]: A Tuple containing the combined audio data array and sample rate.
"""
combined_data, sample_rate = sf.read(files[0])
for file in files[1:]:
data, sr = sf.read(file)
if len(data) > len(combined_data):
combined_data = np.pad(
combined_data, ((0, len(data) - len(combined_data)), (0, 0)), "constant"
)
elif len(combined_data) > len(data):
data = np.pad(
data, ((0, len(combined_data) - len(data)), (0, 0)), "constant"
)
combined_data += data
return combined_data, sample_rate
# Finds all .wav files located in folders that do not contain specified categories in their folder names
def files_to_categories(src_folder: str, categories: List[str]) -> Dict[str, List[str]]:
"""
Finds all .wav files located in folders that do not contain specified categories
in their folder names, within the given src_folder directory.
Parameters:
- src_folder (str): Path to the main directory containing subdirectories with files.
- categories (List[str]): Keywords that should not be part of the folder's name.
Returns:
- Dict[str, List[str]]: A Dict with keys as categories, values as lists of paths to .wav files found.
"""
files = {category: [] for category in categories + ["other"]}
for folder in os.listdir(src_folder):
folder_path = os.path.join(src_folder, folder)
if os.path.isdir(folder_path):
if folder.lower() in categories:
stem = folder.lower()
else:
stem = "other"
for f in os.listdir(folder_path):
if f.endswith(".wav"):
files[stem].append(os.path.join(folder_path, f))
return files
# Processes a folder containing audio tracks, copying and combining necessary files into the target structure
def process_folder(
src_folder: str, dest_folder: str, stems: List[str], trim: bool = False
) -> None:
"""
Processes a folder containing audio tracks, copying and combining necessary files into the target structure.
Parameters:
- src_folder (str): Path to the source folder of MoisesDB.
- dest_folder (str): Path to the target folder for MUSDB18.
- stems (List[str]): List of stem categories to process.
- trim (bool): If True, trim all stems to the length of the shortest one.
"""
if not os.path.exists(dest_folder):
os.makedirs(dest_folder)
categories = stems
if trim:
# First pass: load all stems and find the minimum length
stem_data = {}
sample_rate = None
min_length = float("inf")
all_files = files_to_categories(src_folder, categories)
# Using tqdm to display progress for categories
for category in tqdm(
categories, desc=f"Processing categories in {os.path.basename(src_folder)}"
):
files = all_files[category]
if files:
if len(files) > 1:
combined_data, sr = combine_audio_files(files)
else:
combined_data, sr = sf.read(files[0])
stem_data[category] = combined_data
sample_rate = sr
min_length = min(min_length, len(combined_data))
# Process 'other' files
other_files = all_files["other"]
if other_files:
other_combined_data, sr = combine_audio_files(other_files)
stem_data["other"] = other_combined_data
sample_rate = sr
min_length = min(min_length, len(other_combined_data))
# If no stems were found, set a default sample rate
if sample_rate is None:
sample_rate = 44100
min_length = 0
# Second pass: trim all stems to min_length and save
for category in categories:
if category in stem_data:
trimmed_data = stem_data[category][:min_length]
sf.write(
os.path.join(dest_folder, f"{category}.wav"),
trimmed_data,
sample_rate,
)
else:
# Create silence with min_length
silence = np.zeros((min_length, 2), dtype=np.float32)
sf.write(
os.path.join(dest_folder, f"{category}.wav"), silence, sample_rate
)
# Save 'other' stem
if "other" in stem_data:
trimmed_other = stem_data["other"][:min_length]
sf.write(os.path.join(dest_folder, "other.wav"), trimmed_other, sample_rate)
else:
silence = np.zeros((min_length, 2), dtype=np.float32)
sf.write(os.path.join(dest_folder, "other.wav"), silence, sample_rate)
# Create mixture.wav from all files, then trim to min_length
all_files_list = [file for sublist in all_files.values() for file in sublist]
if all_files_list:
mixture_data, sample_rate = combine_audio_files(all_files_list)
mixture_data = mixture_data[:min_length]
sf.write(
os.path.join(dest_folder, "mixture.wav"), mixture_data, sample_rate
)
else:
# If no files at all, create silent mixture
silence = np.zeros((min_length, 2), dtype=np.float32)
sf.write(os.path.join(dest_folder, "mixture.wav"), silence, sample_rate)
else:
# Original behavior: If the required stem does not exist in the source folder (src_folder),
# we add silence instead of the file with the same duration as the standard file.
problem_categories = []
duration = 0
all_files = files_to_categories(src_folder, categories)
# Using tqdm to display progress for categories
for category in tqdm(
categories, desc=f"Processing categories in {os.path.basename(src_folder)}"
):
files = all_files[category]
if files:
if len(files) > 1:
combined_data, sample_rate = combine_audio_files(files)
else:
combined_data, sample_rate = sf.read(files[0])
sf.write(
os.path.join(dest_folder, f"{category}.wav"),
combined_data,
sample_rate,
)
duration = max(duration, len(combined_data) / sample_rate)
else:
problem_categories.append(category)
other_files = all_files["other"]
if other_files:
other_combined_data, sample_rate = combine_audio_files(other_files)
sf.write(
os.path.join(dest_folder, "other.wav"), other_combined_data, sample_rate
)
else:
problem_categories.append("other")
for category in problem_categories:
silence = np.zeros((int(duration * sample_rate), 2), dtype=np.float32)
sf.write(os.path.join(dest_folder, f"{category}.wav"), silence, sample_rate)
# mixture.wav
all_files_list = [file for sublist in all_files.values() for file in sublist]
mixture_data, sample_rate = combine_audio_files(all_files_list)
sf.write(os.path.join(dest_folder, "mixture.wav"), mixture_data, sample_rate)
# Wrapper function for 'process_folder' that unpacks the arguments
def process_folder_wrapper(args: Tuple[str, str, List[str], bool]) -> None:
"""
A wrapper function for 'process_folder' that unpacks the arguments.
Parameters:
- args (Tuple[str, str, List[str], bool]): A Tuple containing the source folder, destination folder paths, stems, and trim flag.
"""
src_folder, dest_folder, stems, trim = args
return process_folder(src_folder, dest_folder, stems, trim)
# Converts MoisesDB dataset to MUSDB18 format for a specified number of folders
def convert_dataset(
src_root: str,
dest_root: str,
stems: List[str],
max_folders: int = 240,
num_workers: int = 4,
trim: bool = False,
) -> None:
"""
Converts MoisesDB dataset to MUSDB18 format for a specified number of folders.
Parameters:
- src_root (str): Root directory of the MoisesDB dataset.
- dest_root (str): Root directory where the new dataset will be saved.
- max_folders (int): Maximum number of folders to process.
- num_workers (int): Number of parallel workers for processing.
- trim (bool): If True, trim all stems to the length of the shortest one.
"""
folders_to_process = []
for folder in os.listdir(src_root):
if len(folders_to_process) >= max_folders:
break
src_folder = os.path.join(src_root, folder)
dest_folder = os.path.join(dest_root, folder)
if os.path.isdir(src_folder):
folders_to_process.append((src_folder, dest_folder, stems, trim))
else:
print(f"Skip {src_folder} — not dir")
with Pool(num_workers) as pool:
pool.map(process_folder_wrapper, folders_to_process)
# Count number of subfolders in a folder
def count_folders_in_folder(args_to_func) -> Dict[str, int]:
"""
Counts the number of subfolders inside a given folder.
Parameters:
- folder_path (str): Path to the folder where the count is needed.
Returns:
- Dict[str, int]: A dictionary with folder paths as keys and subfolder counts as values.
"""
folder_count = 0
folder_path, stems = args_to_func
if os.path.isdir(folder_path):
# Count subfolders in stems
folder_count = len(
[
f
for f in os.listdir(folder_path)
if os.path.isdir(os.path.join(folder_path, f)) and f in stems
]
)
# For other.wav
if any(
os.path.isdir(os.path.join(folder_path, f)) and f not in stems
for f in os.listdir(folder_path)
):
folder_count += 1
return {folder_path: folder_count}
# Parallel count of subfolders in each folder inside src_folder
def count_folders_parallel(
src_folder: str, stems, num_workers: int = 4
) -> Dict[str, int]:
"""
Parallelly counts the number of subfolders in each folder inside src_folder.
Parameters:
- src_folder (str): Root folder containing subfolders to count.
Returns:
- Dict[str, int]: Dictionary with folder paths as keys and subfolder counts as values.
"""
# Get list of all folders inside src_folder
folders_to_process = [
os.path.join(src_folder, folder)
for folder in os.listdir(src_folder)
if os.path.isdir(os.path.join(src_folder, folder))
]
args_to_func = [(folder, stems) for folder in folders_to_process]
# Parallelly process each folder using pool.map
with Pool(num_workers) as pool:
results = pool.map(count_folders_in_folder, args_to_func)
# Merge results from different processes
merged_counts = {}
for result in results:
merged_counts.update(result)
return merged_counts
def parse_args(dict_args: Union[Dict, None]) -> argparse.Namespace:
"""
Parse command-line arguments for configuring the model, dataset, and training parameters.
Args:
dict_args: Dict of command-line arguments. If None, arguments will be parsed from sys.argv.
Returns:
Namespace object containing parsed arguments and their values.
"""
parser = argparse.ArgumentParser(
description="Copy mixture files from VALID_DIR to INFERENCE_DIR"
)
parser.add_argument(
"--src_dir",
type=str,
required=True,
help="Source directory with MoisesDB tracks",
)
parser.add_argument(
"--dest_dir",
type=str,
required=True,
help="Directory to save tracks in MUSDB18",
)
parser.add_argument(
"--num_workers", type=int, default=os.cpu_count(), help="Num of processors"
)
parser.add_argument(
"--max_folders", type=int, default=240, help="Num of folders to use"
)
parser.add_argument(
"--create_valid", action="store_true", help="Create valid folders or not"
)
parser.add_argument(
"--valid_dir", type=str, default=r"\valid", help="Directory for valid"
)
parser.add_argument(
"--valid_size", type=int, default=10, help="Num of folders to use in valitd"
)
parser.add_argument(
"--stems",
nargs="+",
type=str,
default=["bass", "drums", "vocals"],
choices=[
"drums",
"guitar",
"vocals",
"bass",
"other_keys",
"piano",
"percussion",
"bowed_strings",
"wind",
"other_plucked",
],
help="List of stems to use.",
)
parser.add_argument(
"--mixture_name", type=str, default="mixture.wav", help="Name of mixture tracks"
)
parser.add_argument(
"--trim",
action="store_true",
help="Trim all stems to the length of the shortest one",
)
if dict_args is not None:
args = parser.parse_args([])
args_dict = vars(args)
args_dict.update(dict_args)
args = argparse.Namespace(**args_dict)
else:
args = parser.parse_args()
return args
def main(args: Optional[argparse.Namespace] = None) -> None:
start = time.time()
args = parse_args(args)
source_directory = args.src_dir
destination_directory = args.dest_dir
num_workers = args.num_workers
stems = args.stems
max_folders = args.max_folders
trim = args.trim
print(f"num_workers: {num_workers}, categories: {stems + ['other']}, trim: {trim}")
convert_dataset(
source_directory,
destination_directory,
stems,
max_folders=max_folders,
num_workers=num_workers,
trim=trim,
)
print(
f"All {max_folders} files have been processed, time: {time.time() - start:.2f} sec"
)
if args.create_valid:
# Count folders in the MoisesDB dataset
result = count_folders_parallel(source_directory, stems)
result = dict(sorted(result.items(), key=lambda item: item[1], reverse=True))
# valid_size = min(args.valid_size, max_folders)
valid_size = 10
list_folders = list(result.keys())
print(f"Top {valid_size} folders:")
for track in list(result.items())[:valid_size]:
print(track)
valid_folder = args.valid_dir
train_tracks_folder = destination_directory
# Create valid folder if not exists
if not os.path.exists(valid_folder):
os.makedirs(valid_folder)
num_val = 0
# Copy folders from train_tracks to valid folder
for folder in list_folders:
folder_name = os.path.basename(folder) # Get folder name
# Form the path to the folder in train_tracks
source_folder = os.path.join(train_tracks_folder, folder_name)
# If the folder exists in train_tracks, copy it to valid
if os.path.exists(source_folder):
destination = os.path.join(valid_folder, folder_name)
shutil.copytree(source_folder, destination)
shutil.rmtree(source_folder)
num_val += 1
print(f"Folder: {folder}, num_stems: {result[folder]}")
if num_val >= valid_size:
break
else:
print(f"Folder {source_folder} not found.")
print("The end!")
if __name__ == "__main__":
main(None)
|