Added opus support for files because pyglet supports it.
This commit is contained in:
parent
23b3e5792e
commit
ea0dcd9ce9
2
menu.py
2
menu.py
@ -176,7 +176,7 @@ class Menu:
|
||||
# Get list of available sounds, excluding special sounds
|
||||
soundFiles = [f for f in os.listdir("sounds/")
|
||||
if isfile(join("sounds/", f))
|
||||
and (f.split('.')[1].lower() in ["ogg", "wav"])
|
||||
and (f.split('.')[1].lower() in ["ogg", "opus", "wav"])
|
||||
and (f.split('.')[0].lower() not in ["game-intro", "music_menu"])
|
||||
and (not f.lower().startswith("_"))]
|
||||
|
||||
|
2
sound.py
2
sound.py
@ -49,7 +49,7 @@ class Sound:
|
||||
try:
|
||||
soundFiles = [f for f in os.listdir("sounds/")
|
||||
if isfile(join("sounds/", f))
|
||||
and f.lower().endswith(('.wav', '.ogg'))]
|
||||
and f.lower().endswith(('.wav', '.ogg', '.opus'))]
|
||||
for f in soundFiles:
|
||||
name = os.path.splitext(f)[0]
|
||||
sounds[name] = pyglet.media.load(f"sounds/{f}", streaming=False)
|
||||
|
Loading…
x
Reference in New Issue
Block a user