mirror of
https://github.com/migatu/conjurer.git
synced 2026-07-14 21:38:38 +00:00
FX
This commit is contained in:
@@ -45,7 +45,7 @@
|
||||
],
|
||||
[
|
||||
"compress_release5",
|
||||
170.0
|
||||
120.0
|
||||
],
|
||||
[
|
||||
"compress_attack5",
|
||||
@@ -69,7 +69,7 @@
|
||||
],
|
||||
[
|
||||
"compress_release4",
|
||||
180.0
|
||||
130.0
|
||||
],
|
||||
[
|
||||
"compress_attack4",
|
||||
@@ -81,7 +81,7 @@
|
||||
],
|
||||
[
|
||||
"compress_gain3",
|
||||
8.2
|
||||
5.5
|
||||
],
|
||||
[
|
||||
"compress_ratio3",
|
||||
@@ -93,7 +93,7 @@
|
||||
],
|
||||
[
|
||||
"compress_release3",
|
||||
180.0
|
||||
140.0
|
||||
],
|
||||
[
|
||||
"compress_attack3",
|
||||
@@ -105,7 +105,7 @@
|
||||
],
|
||||
[
|
||||
"compress_gain2",
|
||||
7.4
|
||||
3.3
|
||||
],
|
||||
[
|
||||
"compress_ratio2",
|
||||
@@ -117,7 +117,7 @@
|
||||
],
|
||||
[
|
||||
"compress_release2",
|
||||
190.0
|
||||
120.0
|
||||
],
|
||||
[
|
||||
"compress_attack2",
|
||||
@@ -129,7 +129,7 @@
|
||||
],
|
||||
[
|
||||
"compress_gain1",
|
||||
11.1
|
||||
5.6
|
||||
],
|
||||
[
|
||||
"compress_ratio1",
|
||||
@@ -137,11 +137,11 @@
|
||||
],
|
||||
[
|
||||
"compress_threshold1",
|
||||
-12.7
|
||||
-12.2
|
||||
],
|
||||
[
|
||||
"compress_release1",
|
||||
170.0
|
||||
120.0
|
||||
],
|
||||
[
|
||||
"compress_attack1",
|
||||
@@ -153,7 +153,7 @@
|
||||
],
|
||||
[
|
||||
"compress_gain0",
|
||||
16.0
|
||||
7.5
|
||||
],
|
||||
[
|
||||
"compress_ratio0",
|
||||
@@ -161,15 +161,15 @@
|
||||
],
|
||||
[
|
||||
"compress_threshold0",
|
||||
-15.3
|
||||
-13.1
|
||||
],
|
||||
[
|
||||
"compress_release0",
|
||||
200.0
|
||||
110.0
|
||||
],
|
||||
[
|
||||
"compress_attack0",
|
||||
90.0
|
||||
140.0
|
||||
],
|
||||
[
|
||||
"compress_frequency0",
|
||||
@@ -185,11 +185,11 @@
|
||||
],
|
||||
[
|
||||
"g",
|
||||
9.5
|
||||
1.0
|
||||
],
|
||||
[
|
||||
"f",
|
||||
64.2
|
||||
106.4
|
||||
]
|
||||
]
|
||||
}
|
||||
@@ -3,7 +3,7 @@ from file_serv import bp as uploader_bp
|
||||
from waitress import serve
|
||||
|
||||
app = Flask(__name__)
|
||||
HOST_ADDRESS = "192.168.1.15"
|
||||
HOST_ADDRESS = "127.0.0.1"
|
||||
PORT_ADDRESS = 49151
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
@@ -86,7 +86,7 @@ def upload_to_drive(local_path: Path, filename: str) -> Optional[Dict[str, Any]]
|
||||
|
||||
@bp.get("/health")
|
||||
def health():
|
||||
return jsonify(ok=True)
|
||||
return jsonify(ok=True, info="Okidokie")
|
||||
|
||||
@bp.post("/upload")
|
||||
def upload():
|
||||
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
cd ../conjurer/ && git pull && cp ./gpt_interface/* ../gpt_interf_serv/ && cd -
|
||||
Reference in New Issue
Block a user