There was an error while loading. Please reload this page.
1 parent 9a93c33 commit 72c0ff3Copy full SHA for 72c0ff3
spatialmedia/gui.py
@@ -151,8 +151,10 @@ def action_inject_delay(self):
151
extension = split_filename[1]
152
153
# Create output filename for each file
154
+ # Fix: Use self.save_file directly as it's already the correct directory path
155
output_file = os.path.join(
- os.path.dirname(self.save_file),
156
+ #os.path.dirname(self.save_file), # Remove os.path.dirname() call to fix directory path issue
157
+ self.save_file, # Remove os.path.dirname() call
158
f"{base_filename}_injected{extension}"
159
)
160
0 commit comments