-
Notifications
You must be signed in to change notification settings - Fork 39
/
stem.py
293 lines (235 loc) · 8.41 KB
/
stem.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
#!/usr/bin/env python3
import argparse
import os
import shutil
import sys
import subprocess
from pathlib import Path
import json
import unicodedata
from metadata import get_cover, get_metadata
LOGO = r"""
_____ _____ _____ _____
| __|_ _| __| |
|__ | | | | __| | | |
|_____| |_| |_____|_|_|_|
"""
SUPPORTED_FILES = [".wave", ".wav", ".aiff", ".aif", ".flac"]
REQUIRED_PACKAGES = ["ffmpeg"]
USAGE = f"""{LOGO}
Stem is a Stem file creator. Convert your multitrack into a stem (or two) and have fun with Traktor.
Usage: python3 stem.py -i [INPUT_PATH] -o [OUTPUT_PATH]
To create a stem, simply pass the master track in input.
Example: python3 stem.py -i track.0.wav
Supported input file format: {SUPPORTED_FILES}
Naming convention for input files: [TRACK_NAME].[TRACK_NUMBER].[FILE_EXTENSION]
TRACK_NAME should be identical for all files.
Please use 0 as the TRACK_NUMBER for the master file.
Example: 'track.0.wav' for the master file then 'track.1.wav' for the first stem, etc...
You can also use ableton.py to automatically create the stems from Ableton Live.
"""
VERSION = "2.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("-v", "--version", action="version", version=VERSION)
args = parser.parse_args()
INPUT_PATH = (
args.POSITIONAL_INPUT_PATH or args.INPUT_PATH
if os.path.isabs(args.POSITIONAL_INPUT_PATH or args.INPUT_PATH)
else os.path.join(PROCESS_DIR, 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
PYTHON_EXEC = sys.executable if not None else "python3"
# CREATION
def create_stem():
print("Creating stem...")
os.chdir(INSTALL_DIR)
is_double_stem = False
# Create another stem if we have more than 4 stems in the folder
if os.path.exists(f"{INPUT_DIR}/{FILE_NAME}.5{FILE_EXTENSION}"):
is_double_stem = True
if is_double_stem:
# Open tags.json and edit the title
with open(f"{OUTPUT_PATH}/{FILE_NAME}/tags.json", "r+") as f:
tags = json.load(f)
tags["title"] = f"{tags['title']} [part 1]"
f.seek(0)
json.dump(tags, f)
f.truncate()
stem_args = [PYTHON_EXEC, "ni-stem/ni-stem", "create", "-s"]
stem_args += [
f"{INPUT_DIR}/{FILE_NAME}.1{FILE_EXTENSION}",
f"{INPUT_DIR}/{FILE_NAME}.2{FILE_EXTENSION}",
f"{INPUT_DIR}/{FILE_NAME}.3{FILE_EXTENSION}",
f"{INPUT_DIR}/{FILE_NAME}.4{FILE_EXTENSION}",
]
stem_args += [
"-x",
INPUT_PATH,
"-t",
f"{OUTPUT_PATH}/{FILE_NAME}/tags.json",
"-m",
"metadata.part1.json",
"-f",
FORMAT,
"-o",
f"{OUTPUT_PATH}/{FILE_NAME}/{FILE_NAME} [part 1].stem.m4a",
]
subprocess.run(stem_args)
# Open tags.json and edit the title (again)
with open(f"{OUTPUT_PATH}/{FILE_NAME}/tags.json", "r+") as f:
tags = json.load(f)
tags["title"] = tags["title"].replace(" [part 1]", " [part 2]")
f.seek(0)
json.dump(tags, f)
f.truncate()
stem_args = [PYTHON_EXEC, "ni-stem/ni-stem", "create", "-s"]
stem_args += [
f"{INPUT_DIR}/{FILE_NAME}.5{FILE_EXTENSION}",
f"{INPUT_DIR}/{FILE_NAME}.6{FILE_EXTENSION}",
f"{INPUT_DIR}/{FILE_NAME}.7{FILE_EXTENSION}",
f"{INPUT_DIR}/{FILE_NAME}.8{FILE_EXTENSION}",
]
stem_args += [
"-x",
INPUT_PATH,
"-t",
f"{OUTPUT_PATH}/{FILE_NAME}/tags.json",
"-m",
"metadata.part2.json",
"-f",
FORMAT,
"-o",
f"{OUTPUT_PATH}/{FILE_NAME}/{FILE_NAME} [part 2].stem.m4a",
]
subprocess.run(stem_args)
else:
stem_args = [PYTHON_EXEC, "ni-stem/ni-stem", "create", "-s"]
stem_args += [
f"{INPUT_DIR}/{FILE_NAME}.1{FILE_EXTENSION}",
f"{INPUT_DIR}/{FILE_NAME}.2{FILE_EXTENSION}",
f"{INPUT_DIR}/{FILE_NAME}.3{FILE_EXTENSION}",
f"{INPUT_DIR}/{FILE_NAME}.4{FILE_EXTENSION}",
]
stem_args += [
"-x",
INPUT_PATH,
"-t",
f"{OUTPUT_PATH}/{FILE_NAME}/tags.json",
"-m",
"metadata.json",
"-f",
FORMAT,
"-o",
f"{OUTPUT_PATH}/{FILE_NAME}/{FILE_NAME}.stem.m4a",
]
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 Stem.")
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 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_cover(FILE_EXTENSION, FILE_PATH, OUTPUT_PATH, FILE_NAME)
get_metadata(FILE_PATH, OUTPUT_PATH, FILE_NAME)
print("Ready!")
def run():
print(f"Creating a Stem file for {FILE_NAME}...")
create_stem()
clean_dir()
print("Success! Have fun :)")
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 = BASE_PATH.removesuffix(FILE_EXTENSION).removesuffix(".0")
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"),
)
if os.path.isfile(
os.path.join(OUTPUT_PATH, FILE_NAME, f"{FILE_NAME} [part 1].stem.m4a")
):
os.rename(
os.path.join(OUTPUT_PATH, FILE_NAME, f"{FILE_NAME} [part 1].stem.m4a"),
os.path.join(OUTPUT_PATH, f"{FILE_NAME} [part 1].stem.m4a"),
)
if os.path.isfile(
os.path.join(OUTPUT_PATH, FILE_NAME, f"{FILE_NAME} [part 2].stem.m4a")
):
os.rename(
os.path.join(OUTPUT_PATH, FILE_NAME, f"{FILE_NAME} [part 2].stem.m4a"),
os.path.join(OUTPUT_PATH, f"{FILE_NAME} [part 2].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()