Added opus support for files because pyglet supports it.

This commit is contained in:
Storm Dragon 2025-03-05 14:44:14 -05:00
parent 23b3e5792e
commit ea0dcd9ce9
2 changed files with 2 additions and 2 deletions

View File

@ -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("_"))]

View File

@ -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)