We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce8bdf3 commit 5648088Copy full SHA for 5648088
2 files changed
spp_config.json
@@ -2,5 +2,6 @@
2
"KEY_INSTRUMENTALS": "1",
3
"KEY_VOCALS": "2",
4
"KEY_BASS": "3",
5
- "KEY_DRUMS": "4"
+ "KEY_DRUMS": "4",
6
+ "MP3_WAV": "MP3"
7
}
stemplayerplayer.py
@@ -22,7 +22,13 @@
22
23
folder_path = filedialog.askdirectory(initialdir=os.path.normpath("%UserProfile%\Documents"), title="Select Tracks Folder")
24
print(folder_path)
25
-stem_list = glob.glob(folder_path + "/*.mp3")
+if SPP_CONFIG["MP3_WAV"] == "WAV":
26
+ print("Using WAV...")
27
+ stem_list = glob.glob(folder_path + "/*.wav")
28
+else:
29
+ stem_list = glob.glob(folder_path + "/*.mp3")
30
+ print("Using MP3...")
31
+
32
33
pg.mixer.init()
34
pg.init()
0 commit comments