|
@@ -5,6 +5,7 @@
|
5
|
5
|
#
|
6
|
6
|
# ----------------------------------------------------------------------------
|
7
|
7
|
# Copyright (c) 2024 Thomas Buck (thomas@xythobuz.de)
|
|
8
|
+# Copyright (c) 2024 Philipp Schönberger (mail@phschoen.de)
|
8
|
9
|
#
|
9
|
10
|
# This program is free software: you can redistribute it and/or modify
|
10
|
11
|
# it under the terms of the GNU General Public License as published by
|
|
@@ -63,7 +64,6 @@ vol_list = [
|
63
|
64
|
("Harley_Matthews", "100"),
|
64
|
65
|
]
|
65
|
66
|
|
66
|
|
-
|
67
|
67
|
basedir = sys.argv[1]
|
68
|
68
|
if basedir.endswith("/"):
|
69
|
69
|
basedir = basedir.removesuffix("/")
|
|
@@ -79,7 +79,6 @@ def get_artist(fn):
|
79
|
79
|
break
|
80
|
80
|
return artist
|
81
|
81
|
|
82
|
|
-#originalsongs = os.listdir(basedir)
|
83
|
82
|
originalsongs = []
|
84
|
83
|
originalartists = []
|
85
|
84
|
for fn in glob.iglob(os.path.join(basedir, '**', '*.wav'), recursive=True):
|