We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36511c9 commit dd5d434Copy full SHA for dd5d434
src/murfey/server/gain.py
@@ -3,6 +3,7 @@
3
import asyncio
4
import logging
5
import os
6
+import shutil
7
from enum import Enum
8
from pathlib import Path
9
from typing import Dict, Tuple
@@ -130,4 +131,6 @@ async def prepare_eer_gain(
130
131
f"{stderr.decode('utf-8').strip()}"
132
)
133
return None, None
134
+ # Also copy the gain as a .gain file
135
+ shutil.copy(gain_path, gain_out.with_suffix(".gain"))
136
return gain_out, None
0 commit comments