From ea0dcd9ce9915f1908f6e8198b9a67ef416bf7fd Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Wed, 5 Mar 2025 14:44:14 -0500 Subject: [PATCH] Added opus support for files because pyglet supports it. --- menu.py | 2 +- sound.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/menu.py b/menu.py index 6e700a8..59a1436 100644 --- a/menu.py +++ b/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("_"))] diff --git a/sound.py b/sound.py index 36dfcfe..b2fcf92 100644 --- a/sound.py +++ b/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)