-
Notifications
You must be signed in to change notification settings - Fork 39
/
stemgen.py
471 lines (394 loc) · 12.4 KB
/
stemgen.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
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
461
462
463
464
465
466
467
468
469
470
471
#!/usr/bin/env python3
import argparse
import os
import shutil
import sys
import subprocess
from pathlib import Path
import unicodedata
import torch
from metadata import get_cover, get_metadata
LOGO = r"""
_____ _____ _____ _____ _____ _____ _____
| __|_ _| __| | __| __| | |
|__ | | | | __| | | | | | __| | | |
|_____| |_| |_____|_|_|_|_____|_____|_|___|
"""
SUPPORTED_FILES = [".wave", ".wav", ".aiff", ".aif", ".flac"]
REQUIRED_PACKAGES = ["ffmpeg", "sox"]
USAGE = f"""{LOGO}
Stemgen is a Stem file generator. Convert any track into a stem and have fun with Traktor.
Usage: python3 stemgen.py -i [INPUT_PATH] -o [OUTPUT_PATH]
Supported input file format: {SUPPORTED_FILES}
"""
VERSION = "6.0.0"
INSTALL_DIR = Path(__file__).parent.absolute()
PROCESS_DIR = os.getcwd()
parser = argparse.ArgumentParser(
description=USAGE, formatter_class=argparse.RawTextHelpFormatter
)
parser.add_argument(
dest="POSITIONAL_INPUT_PATH", nargs="?", help="the path to the input file"
)
parser.add_argument(
"-i", "--input", dest="INPUT_PATH", help="the path to the input file"
)
parser.add_argument(
"-o",
"--output",
dest="OUTPUT_PATH",
default=(
"output"
if str(INSTALL_DIR) == PROCESS_DIR or INSTALL_DIR.as_posix() == PROCESS_DIR
else "."
),
help="the path to the output folder",
)
parser.add_argument("-f", "--format", dest="FORMAT", default="alac", help="aac or alac")
parser.add_argument("-d", "--device", dest="DEVICE", help="cpu or cuda or mps")
parser.add_argument("-v", "--version", action="version", version=VERSION)
parser.add_argument(
"-n", "--model_name", dest="MODEL_NAME", help="name of the model to use"
)
parser.add_argument(
"-s",
"--model_shifts",
dest="MODEL_SHIFTS",
help="number of shifts for demucs to use",
)
args = parser.parse_args()
INPUT_PATH = args.POSITIONAL_INPUT_PATH or args.INPUT_PATH
OUTPUT_PATH = (
args.OUTPUT_PATH
if os.path.isabs(args.OUTPUT_PATH)
else os.path.join(PROCESS_DIR, args.OUTPUT_PATH)
)
FORMAT = args.FORMAT
# Automatically set DEVICE to "cuda" if CUDA is available or "mps" if Metal is available, otherwise set it to "cpu"
DEVICE = (
args.DEVICE
if args.DEVICE is not None
else (
"cuda"
if torch.cuda.is_available()
else "mps" if torch.backends.mps.is_available() else "cpu"
)
)
if DEVICE == "cuda":
print("Using GPU for processing.")
elif DEVICE == "mps":
print("Using Metal for processing.")
else:
print("Using CPU for processing.")
PYTHON_EXEC = sys.executable if not None else "python3"
MODEL_NAME = args.MODEL_NAME if args.MODEL_NAME is not None else "htdemucs"
MODEL_SHIFTS = args.MODEL_SHIFTS if args.MODEL_SHIFTS is not None else "1"
# CONVERSION AND GENERATION
def convert():
print("Converting to wav and/or downsampling...")
# We downsample to 44.1kHz to avoid problems with the separation software
# because the models are trained on 44.1kHz audio files
# QUALITY WIDTH REJ dB TYPICAL USE
# -v very high 95% 175 24-bit mastering
# -M/-I/-L Phase response = minimum/intermediate/linear(default)
# -s Steep filter (band-width = 99%)
# -a Allow aliasing above the pass-band
global BIT_DEPTH
global SAMPLE_RATE
converted_file_path = os.path.join(OUTPUT_PATH, FILE_NAME, FILE_NAME + ".wav")
if BIT_DEPTH == 32:
# Downconvert to 24-bit
if FILE_PATH == converted_file_path:
subprocess.run(
[
"sox",
FILE_PATH,
"--show-progress",
"-b",
"24",
os.path.join(OUTPUT_PATH, FILE_NAME, FILE_NAME + ".24bit.wav"),
"rate",
"-v",
"-a",
"-I",
"-s",
"44100",
],
check=True,
)
os.remove(converted_file_path)
os.rename(
os.path.join(OUTPUT_PATH, FILE_NAME, FILE_NAME + ".24bit.wav"),
converted_file_path,
)
else:
subprocess.run(
[
"sox",
FILE_PATH,
"--show-progress",
"-b",
"24",
converted_file_path,
"rate",
"-v",
"-a",
"-I",
"-s",
"44100",
],
check=True,
)
BIT_DEPTH = 24
else:
if (
FILE_EXTENSION == ".wav" or FILE_EXTENSION == ".wave"
) and SAMPLE_RATE == 44100:
print("No conversion needed.")
else:
if FILE_PATH == converted_file_path:
subprocess.run(
[
"sox",
FILE_PATH,
"--show-progress",
"--no-dither",
os.path.join(
OUTPUT_PATH, FILE_NAME, FILE_NAME + ".44100Hz.wav"
),
"rate",
"-v",
"-a",
"-I",
"-s",
"44100",
],
check=True,
)
os.remove(converted_file_path)
os.rename(
os.path.join(OUTPUT_PATH, FILE_NAME, FILE_NAME + ".44100Hz.wav"),
converted_file_path,
)
else:
subprocess.run(
[
"sox",
FILE_PATH,
"--show-progress",
"--no-dither",
converted_file_path,
"rate",
"-v",
"-a",
"-I",
"-s",
"44100",
],
check=True,
)
print("Done.")
def split_stems():
print("Splitting stems...")
if BIT_DEPTH == 24:
print("Using 24-bit model...")
subprocess.run(
[
PYTHON_EXEC,
"-m",
"demucs",
"--int24",
"-n",
MODEL_NAME,
"--shifts",
MODEL_SHIFTS,
"-d",
DEVICE,
FILE_PATH,
"-o",
f"{OUTPUT_PATH}/{FILE_NAME}",
]
)
else:
print("Using 16-bit model...")
subprocess.run(
[
PYTHON_EXEC,
"-m",
"demucs",
"-n",
MODEL_NAME,
"--shifts",
MODEL_SHIFTS,
"-d",
DEVICE,
FILE_PATH,
"-o",
f"{OUTPUT_PATH}/{FILE_NAME}",
]
)
print("Done.")
def create_stem():
print("Creating stem...")
os.chdir(INSTALL_DIR)
stem_args = [PYTHON_EXEC, "ni-stem/ni-stem", "create", "-s"]
stem_args += [
f"{OUTPUT_PATH}/{FILE_NAME}/{MODEL_NAME}/{FILE_NAME}/drums.wav",
f"{OUTPUT_PATH}/{FILE_NAME}/{MODEL_NAME}/{FILE_NAME}/bass.wav",
f"{OUTPUT_PATH}/{FILE_NAME}/{MODEL_NAME}/{FILE_NAME}/other.wav",
f"{OUTPUT_PATH}/{FILE_NAME}/{MODEL_NAME}/{FILE_NAME}/vocals.wav",
]
stem_args += [
"-x",
f"{OUTPUT_PATH}/{FILE_NAME}/{FILE_NAME}.wav",
"-t",
f"{OUTPUT_PATH}/{FILE_NAME}/tags.json",
"-m",
"metadata.json",
"-f",
FORMAT,
]
subprocess.run(stem_args)
print("Done.")
# SETUP
def setup():
for package in REQUIRED_PACKAGES:
if not shutil.which(package):
print(f"Please install {package} before running Stemgen.")
sys.exit(2)
if not os.path.exists(os.path.join(INSTALL_DIR, "ni-stem/ni-stem")):
print("Please install ni-stem before running Stem.")
sys.exit(2)
if (
subprocess.run(
[PYTHON_EXEC, "-m", "demucs", "-h"], capture_output=True, text=True
).stdout.strip()
== ""
):
print("Please install demucs before running Stemgen.")
sys.exit(2)
if not os.path.exists(OUTPUT_PATH):
os.mkdir(OUTPUT_PATH)
print("Output dir created.")
else:
print("Output dir already exists.")
global BASE_PATH, FILE_EXTENSION
BASE_PATH = os.path.basename(INPUT_PATH)
FILE_EXTENSION = os.path.splitext(BASE_PATH)[1]
if FILE_EXTENSION not in SUPPORTED_FILES:
print("Invalid input file format. File should be one of:", SUPPORTED_FILES)
sys.exit(1)
setup_file()
get_bit_depth()
get_sample_rate()
get_cover(FILE_EXTENSION, FILE_PATH, OUTPUT_PATH, FILE_NAME)
get_metadata(FILE_PATH, OUTPUT_PATH, FILE_NAME)
convert()
print("Ready!")
def run():
print(f"Creating a Stem file for {FILE_NAME}...")
split_stems()
create_stem()
clean_dir()
print("Success! Have fun :)")
def get_bit_depth():
print("Extracting bit depth...")
global BIT_DEPTH
if FILE_EXTENSION == ".flac":
BIT_DEPTH = int(
subprocess.check_output(
[
"ffprobe",
"-v",
"error",
"-select_streams",
"a",
"-show_entries",
"stream=bits_per_raw_sample",
"-of",
"default=noprint_wrappers=1:nokey=1",
FILE_PATH,
]
)
)
else:
BIT_DEPTH = int(
subprocess.check_output(
[
"ffprobe",
"-v",
"error",
"-select_streams",
"a",
"-show_entries",
"stream=bits_per_sample",
"-of",
"default=noprint_wrappers=1:nokey=1",
FILE_PATH,
]
)
)
print(f"bits_per_sample={BIT_DEPTH}")
print("Done.")
def get_sample_rate():
print("Extracting sample rate...")
global SAMPLE_RATE
SAMPLE_RATE = int(
subprocess.check_output(
[
"ffprobe",
"-v",
"error",
"-select_streams",
"a",
"-show_entries",
"stream=sample_rate",
"-of",
"default=noprint_wrappers=1:nokey=1",
FILE_PATH,
]
)
)
print(f"sample_rate={SAMPLE_RATE}")
print("Done.")
def strip_accents(text):
text = unicodedata.normalize("NFKD", text)
text = text.encode("ascii", "ignore")
text = text.decode("utf-8")
return str(text)
def setup_file():
global FILE_NAME, INPUT_DIR, FILE_PATH
FILE_NAME = strip_accents(BASE_PATH.removesuffix(FILE_EXTENSION))
INPUT_DIR = os.path.join(PROCESS_DIR, os.path.dirname(INPUT_PATH))
if os.path.exists(f"{OUTPUT_PATH}/{FILE_NAME}"):
print("Working dir already exists.")
else:
os.mkdir(f"{OUTPUT_PATH}/{FILE_NAME}")
print("Working dir created.")
shutil.copy(INPUT_PATH, f"{OUTPUT_PATH}/{FILE_NAME}/{FILE_NAME}{FILE_EXTENSION}")
FILE_PATH = f"{OUTPUT_PATH}/{FILE_NAME}/{FILE_NAME}{FILE_EXTENSION}"
print("Done.")
def clean_dir():
print("Cleaning...")
os.chdir(OUTPUT_PATH)
for file in os.listdir(INPUT_DIR):
if file.endswith(".m4a"):
os.remove(os.path.join(INPUT_DIR, file))
if os.path.isfile(os.path.join(OUTPUT_PATH, FILE_NAME, f"{FILE_NAME}.stem.m4a")):
os.rename(
os.path.join(OUTPUT_PATH, FILE_NAME, f"{FILE_NAME}.stem.m4a"),
os.path.join(OUTPUT_PATH, f"{FILE_NAME}.stem.m4a"),
)
try:
shutil.rmtree(os.path.join(OUTPUT_PATH, FILE_NAME))
except PermissionError:
print(
f"Permission error encountered. Directory {os.path.join(OUTPUT_PATH, FILE_NAME)} might still be in use."
)
print("Done.")
def main():
setup()
run()
if __name__ == "__main__":
os.chdir(PROCESS_DIR)
main()