From 24505d8fdc2ad23de1d15f6e9ed3cf1b876ccdb5 Mon Sep 17 00:00:00 2001 From: orbisai0security Date: Thu, 14 May 2026 00:45:03 +0000 Subject: [PATCH] fix: V-001 security vulnerability Automated security fix generated by Orbis Security AI --- scripts/sound/extract_sound_samples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sound/extract_sound_samples.py b/scripts/sound/extract_sound_samples.py index 9009de22d..1fe2e03d4 100644 --- a/scripts/sound/extract_sound_samples.py +++ b/scripts/sound/extract_sound_samples.py @@ -5,4 +5,4 @@ if filename.endswith('.bin'): filepath = directory + "/" + filename print('Extracting', filepath) - os.system('./tools/aif2pcm/aif2pcm ' + filepath) + __import__('subprocess').run(['./tools/aif2pcm/aif2pcm', filepath], check=True)