Spaces:
Running
Running
Mark Duppenthaler
commited on
Commit
·
0b598b9
1
Parent(s):
f762ee5
Added basic file loading
Browse files- Dockerfile +15 -6
- README.md +12 -3
- backend/app.py +19 -1
- backend/data/ravdess_1k_audio_attacks_variations.csv +211 -0
- backend/data/ravdess_1k_audio_benchmark.csv +319 -0
- backend/data/sav_val_full_video_attacks_variations.csv +26 -0
- backend/data/val2014_1k_image_attacks_variations.csv +203 -0
- backend/data/voxpopuli_1k_audio_attacks_variations.csv +209 -0
- backend/environment.yml +11 -0
- backend/requirements.txt +0 -3
- frontend/package-lock.json +0 -0
- frontend/src/API.ts +15 -0
- frontend/src/App.tsx +48 -2
- package.json +0 -6
Dockerfile
CHANGED
@@ -6,16 +6,25 @@ RUN npm install
|
|
6 |
COPY frontend/ ./
|
7 |
RUN npm run build
|
8 |
|
9 |
-
FROM
|
10 |
|
11 |
WORKDIR /app/backend
|
12 |
|
13 |
-
# Copy
|
14 |
-
COPY
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
-
# Copy
|
17 |
COPY backend/ .
|
18 |
-
|
|
|
|
|
19 |
|
20 |
# Set environment variables
|
21 |
ENV PYTHONUNBUFFERED=1
|
@@ -29,4 +38,4 @@ EXPOSE 7860
|
|
29 |
WORKDIR /app
|
30 |
|
31 |
# Command to run the application
|
32 |
-
CMD ["
|
|
|
6 |
COPY frontend/ ./
|
7 |
RUN npm run build
|
8 |
|
9 |
+
FROM continuumio/miniconda3:24.1.2-0
|
10 |
|
11 |
WORKDIR /app/backend
|
12 |
|
13 |
+
# Copy backend environment.yml
|
14 |
+
COPY backend/environment.yml ./
|
15 |
+
|
16 |
+
# Create conda environment
|
17 |
+
RUN conda env create -f environment.yml
|
18 |
+
|
19 |
+
# Activate conda environment by default
|
20 |
+
SHELL ["/bin/bash", "-c"]
|
21 |
+
ENV PATH /opt/conda/envs/omniseal-benchmark-backend/bin:$PATH
|
22 |
|
23 |
+
# Copy backend code
|
24 |
COPY backend/ .
|
25 |
+
|
26 |
+
# Copy frontend build
|
27 |
+
COPY --from=frontend-build /app/frontend/dist /app/frontend/dist
|
28 |
|
29 |
# Set environment variables
|
30 |
ENV PYTHONUNBUFFERED=1
|
|
|
38 |
WORKDIR /app
|
39 |
|
40 |
# Command to run the application
|
41 |
+
CMD ["/bin/bash", "-c", "conda run --no-capture-output -n omniseal-benchmark-backend flask run --host=0.0.0.0 --port=7860"]
|
README.md
CHANGED
@@ -17,7 +17,11 @@ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-
|
|
17 |
- Docker installed on your system
|
18 |
- Git repository cloned locally
|
19 |
|
20 |
-
### Build Steps
|
|
|
|
|
|
|
|
|
21 |
|
22 |
1. Navigate to the project directory:
|
23 |
```bash
|
@@ -26,12 +30,17 @@ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-
|
|
26 |
|
27 |
2. Build the Docker image:
|
28 |
```bash
|
29 |
-
docker build -t omniseal-
|
|
|
|
|
|
|
|
|
|
|
30 |
```
|
31 |
|
32 |
3. Run the container (this runs in auto-reload mode when you update python files in the backend directory):
|
33 |
```bash
|
34 |
-
docker run -p 7860:7860 -v $(pwd)/backend:/app/backend
|
35 |
```
|
36 |
|
37 |
4. Access the application at `http://localhost:7860`
|
|
|
17 |
- Docker installed on your system
|
18 |
- Git repository cloned locally
|
19 |
|
20 |
+
### Build Steps (no docker)
|
21 |
+
|
22 |
+
flask run --host=0.0.0.0 --port=7860 --reload
|
23 |
+
|
24 |
+
### Build Steps (Docker, huggingface)
|
25 |
|
26 |
1. Navigate to the project directory:
|
27 |
```bash
|
|
|
30 |
|
31 |
2. Build the Docker image:
|
32 |
```bash
|
33 |
+
docker build -t omniseal-benchmark .
|
34 |
+
```
|
35 |
+
|
36 |
+
OR
|
37 |
+
```bash
|
38 |
+
docker buildx build -t omniseal-benchmark .
|
39 |
```
|
40 |
|
41 |
3. Run the container (this runs in auto-reload mode when you update python files in the backend directory):
|
42 |
```bash
|
43 |
+
docker run -p 7860:7860 -v $(pwd)/backend:/app/backend omniseal-benchmark
|
44 |
```
|
45 |
|
46 |
4. Access the application at `http://localhost:7860`
|
backend/app.py
CHANGED
@@ -3,15 +3,33 @@ import os
|
|
3 |
import logging
|
4 |
|
5 |
logger = logging.getLogger(__name__)
|
6 |
-
|
|
|
|
|
|
|
7 |
|
8 |
logger.setLevel(logging.INFO)
|
9 |
|
|
|
|
|
10 |
|
11 |
@app.route("/")
|
12 |
def index():
|
13 |
return send_from_directory(app.static_folder, "index.html")
|
14 |
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
if __name__ == "__main__":
|
17 |
app.run(host="0.0.0.0", port=7860, debug=True, use_reloader=True)
|
|
|
3 |
import logging
|
4 |
|
5 |
logger = logging.getLogger(__name__)
|
6 |
+
if not logger.hasHandlers():
|
7 |
+
handler = logging.StreamHandler()
|
8 |
+
handler.setFormatter(logging.Formatter("%(levelname)s:%(name)s:%(message)s"))
|
9 |
+
logger.addHandler(handler)
|
10 |
|
11 |
logger.setLevel(logging.INFO)
|
12 |
|
13 |
+
app = Flask(__name__, static_folder="../frontend/dist", static_url_path="")
|
14 |
+
|
15 |
|
16 |
@app.route("/")
|
17 |
def index():
|
18 |
return send_from_directory(app.static_folder, "index.html")
|
19 |
|
20 |
|
21 |
+
@app.route("/data/<path:filename>")
|
22 |
+
def data_files(filename):
|
23 |
+
"""
|
24 |
+
Serve any csv or JSON file from the data directory.
|
25 |
+
"""
|
26 |
+
data_dir = os.path.join(os.path.dirname(__file__), "data")
|
27 |
+
file_path = os.path.join(data_dir, filename)
|
28 |
+
if os.path.isfile(file_path):
|
29 |
+
return send_from_directory(data_dir, filename)
|
30 |
+
|
31 |
+
return "File not found", 404
|
32 |
+
|
33 |
+
|
34 |
if __name__ == "__main__":
|
35 |
app.run(host="0.0.0.0", port=7860, debug=True, use_reloader=True)
|
backend/data/ravdess_1k_audio_attacks_variations.csv
ADDED
@@ -0,0 +1,211 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
strength,model,attack,bit_acc,log10_p_value,TPR,FPR,watermark_det_score,pesq
|
2 |
+
0.5,audioseal,speed,0.500625,-0.34089309911368937,0.0,0.0,0.024966249556385996,3.5550205515623094
|
3 |
+
0.6,audioseal,speed,0.494875,-0.3275281501501374,0.0,0.0,0.02015117467315,3.735170446038246
|
4 |
+
0.7,audioseal,speed,0.490875,-0.32677356866328694,0.0,0.0,0.006340149883165999,3.6943479254245757
|
5 |
+
0.8,audioseal,speed,0.4891875,-0.3229291833792298,0.0,0.0,0.019920437227524,3.5712071738243103
|
6 |
+
0.9,audioseal,speed,0.5134375,-0.37612879341005684,0.0,0.0,0.002023812467496,3.504472818732262
|
7 |
+
1.0,audioseal,speed,1.0,-4.816479930623699,1.0,0.0,1.0,3.452721855759621
|
8 |
+
1.1,audioseal,speed,0.4831875,-0.2961054894160578,0.025,0.0,0.11671555874895001,3.460404544234276
|
9 |
+
1.2,audioseal,speed,0.4963125,-0.33179244271545005,0.0,0.0,0.005616376958889999,3.433519125699997
|
10 |
+
1.25,audioseal,speed,0.49775,-0.343130298277595,0.0,0.0,0.00014068750621000001,3.4280464265346526
|
11 |
+
1.3,audioseal,speed,0.492625,-0.32572631708281746,0.0,0.0,0.000155884887636,3.4347622705698013
|
12 |
+
1.4,audioseal,speed,0.494,-0.33159334306401217,0.0,0.0,0.00029049928553000003,3.427298019051552
|
13 |
+
1.5,audioseal,speed,0.5010625,-0.3425986426434317,0.0,0.0,0.00263807331568,3.4186278252601623
|
14 |
+
0.001,audioseal,random_noise,0.9981875,-4.78144526645493,0.722,0.0,0.574539677725,3.2732301855087282
|
15 |
+
0.01,audioseal,random_noise,0.675875,-1.2168207952182242,0.0,0.0,0.058410711564066,1.8725254222154617
|
16 |
+
0.05,audioseal,random_noise,0.5145,-0.38958960120068004,0.0,0.0,0.008434587375949999,1.2849895355701446
|
17 |
+
0.1,audioseal,random_noise,0.5043125,-0.35431594653795623,0.0,0.0,0.003374112434392,1.3982202883958816
|
18 |
+
0.3,audioseal,random_noise,0.5054375,-0.348128084634169,0.0,0.0,0.0032378374366719997,1.6058883122205734
|
19 |
+
500,audioseal,lowpass_filter,0.4976875,-0.3402366782210702,0.0,0.0,0.004621874915110001,4.327816670179367
|
20 |
+
1000,audioseal,lowpass_filter,0.8105625,-2.1249174715590087,0.117,0.0,0.25578555800439,3.9173457112312318
|
21 |
+
1500,audioseal,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,0.99999555,3.561496246099472
|
22 |
+
2000,audioseal,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,1.0,3.545590359210968
|
23 |
+
3000,audioseal,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,1.0,3.5220830581188203
|
24 |
+
4000,audioseal,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,1.0,3.5019816663265226
|
25 |
+
5000,audioseal,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,1.0,3.484840331673622
|
26 |
+
500,audioseal,highpass_filter,1.0,-4.816479930623699,1.0,0.0,1.0,3.3748832857608795
|
27 |
+
1000,audioseal,highpass_filter,0.8888125,-2.9769188739747285,1.0,0.0,0.9993275727100001,3.265556354403496
|
28 |
+
1500,audioseal,highpass_filter,0.489375,-0.3174887161419503,0.0,0.0,0.02783207451186,4.182814824223518
|
29 |
+
2000,audioseal,highpass_filter,0.496875,-0.3398368420392104,0.0,0.0,0.016505487216172,4.2581592473983765
|
30 |
+
4000,audioseal,highpass_filter,0.495,-0.3335413629750066,0.0,0.0,0.01089823728208,2.1549205424785614
|
31 |
+
8000,audioseal,highpass_filter,0.5008125,-0.3444576990574476,0.0,0.0,0.000275,2.063074156522751
|
32 |
+
10,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,3.452727394580841
|
33 |
+
20,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,3.452764313340187
|
34 |
+
30,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,3.452763600349426
|
35 |
+
40,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,3.4527219997644423
|
36 |
+
50,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,3.452765192747116
|
37 |
+
60,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,3.452722472548485
|
38 |
+
70,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,3.452725873708725
|
39 |
+
80,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,3.4527236925363542
|
40 |
+
90,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,3.4527253423929216
|
41 |
+
10,audioseal,duck_audio,1.0,-4.816479930623699,1.0,0.0,1.0,3.4527236925363542
|
42 |
+
20,audioseal,duck_audio,1.0,-4.816479930623699,1.0,0.0,1.0,3.452722472548485
|
43 |
+
30,audioseal,duck_audio,0.9996875,-4.810651863292408,1.0,0.0,0.99999887496,3.4527219997644423
|
44 |
+
40,audioseal,duck_audio,0.9994375,-4.806054244882494,1.0,0.0,0.9991496747999999,3.452764313340187
|
45 |
+
50,audioseal,duck_audio,0.9984375,-4.786691239416043,1.0,0.0,0.99238641109,3.452721855759621
|
46 |
+
60,audioseal,duck_audio,0.991375,-4.654608917276048,0.984,0.0,0.9332163038199999,3.452722472548485
|
47 |
+
70,audioseal,duck_audio,0.9756875,-4.380213055857585,0.61,0.0,0.5822662399569999,3.452764313340187
|
48 |
+
80,audioseal,duck_audio,0.9303125,-3.663006970004879,0.109,0.0,0.32391851936980004,3.452722472548485
|
49 |
+
90,audioseal,duck_audio,0.833625,-2.445396754652813,0.051,0.0,0.2044212589076,3.452722472548485
|
50 |
+
0.001,audioseal,shush,1.0,-4.816479930623699,1.0,0.0,0.99880115566,3.4526154572963716
|
51 |
+
0.01,audioseal,shush,0.9999375,-4.815249481702321,1.0,0.0,0.98967202015,3.4665340806245806
|
52 |
+
0.1,audioseal,shush,0.9998125,-4.813112761135164,1.0,0.0,0.8997566620999999,3.502708883047104
|
53 |
+
0.3,audioseal,shush,0.999875,-4.814019032780943,1.0,0.0,0.6999046152599999,3.312327645897865
|
54 |
+
2,audioseal,smooth,0.9989375,-4.795562298960269,1.0,0.0,1.0,3.482044697165489
|
55 |
+
4,audioseal,smooth,0.9895625,-4.619598697040004,1.0,0.0,1.0,3.536221053004265
|
56 |
+
8,audioseal,smooth,0.9963125,-4.745704090075218,1.0,0.0,0.9999964625,3.672382586121559
|
57 |
+
10,audioseal,smooth,0.9470625,-3.8631068605277465,1.0,0.0,0.99223089833,3.774712325692177
|
58 |
+
20,audioseal,smooth,0.7401875,-1.4978677380531134,0.232,0.0,0.35851323218389997,3.873764958739281
|
59 |
+
40,audioseal,smooth,0.502875,-0.3420276645872683,0.0,0.0,0.015928437269726002,3.62562871325016
|
60 |
+
12k,audioseal,aac_compression,0.601875,-0.8902397147782045,0.933,0.0,0.81484528716,2.9843639008998872
|
61 |
+
24k,audioseal,aac_compression,0.602875,-0.8924060767866466,0.948,0.0,0.8522791137060001,3.0431446530818937
|
62 |
+
32k,audioseal,aac_compression,0.605,-0.9178176246454927,0.958,0.0,0.8774500513950001,3.1431907395124434
|
63 |
+
64k,audioseal,aac_compression,0.608625,-0.94009045191052,0.969,0.0,0.91726751533,3.3512348146438597
|
64 |
+
128k,audioseal,aac_compression,0.6099375,-0.9400852580193808,0.968,0.0,0.917509652094,3.3493177464008332
|
65 |
+
256k,audioseal,aac_compression,0.6099375,-0.9400852580193808,0.968,0.0,0.917509652094,3.3493177464008332
|
66 |
+
12k,audioseal,mp3_compression,1.0,-4.816479930623699,1.0,0.0,0.99980261189,2.9778598886728287
|
67 |
+
24k,audioseal,mp3_compression,1.0,-4.816479930623699,1.0,0.0,0.99980261189,2.9778598886728287
|
68 |
+
32k,audioseal,mp3_compression,1.0,-4.816479930623699,1.0,0.0,0.99980261189,2.9778598886728287
|
69 |
+
64k,audioseal,mp3_compression,1.0,-4.816479930623699,1.0,0.0,0.99980261189,2.9778598886728287
|
70 |
+
128k,audioseal,mp3_compression,1.0,-4.816479930623699,1.0,0.0,0.99980261189,2.9778598886728287
|
71 |
+
256k,audioseal,mp3_compression,1.0,-4.816479930623699,1.0,0.0,0.99980261189,2.9778598886728287
|
72 |
+
0.5,wavmark_fast,speed,0.49825,-0.339774497623986,0.007,0.0,0.40535201935,2.9108156719207763
|
73 |
+
0.6,wavmark_fast,speed,0.4948125,-0.3324386791219861,0.998,0.0,0.6159749921300001,2.910453072786331
|
74 |
+
0.7,wavmark_fast,speed,0.5024375,-0.3547021369802111,0.0,0.0,0.31334424308000003,2.874184755682945
|
75 |
+
0.8,wavmark_fast,speed,0.498,-0.3480868406790924,0.081,0.0,0.42949608303000003,2.7533165649175646
|
76 |
+
0.9,wavmark_fast,speed,0.596875,-0.6664176724611368,1.0,0.0,0.6810999882600001,2.6862181518077852
|
77 |
+
1.0,wavmark_fast,speed,1.0,-4.816479930623699,1.0,0.0,0.9999749999,2.568849658727646
|
78 |
+
1.1,wavmark_fast,speed,0.946875,-3.8539937810091516,1.0,0.0,0.71190810504,2.57184674346447
|
79 |
+
1.2,wavmark_fast,speed,0.4954375,-0.33650641742439225,0.0,0.0,0.39985860016999997,2.554588121533394
|
80 |
+
1.25,wavmark_fast,speed,0.4923125,-0.342012530095483,0.738,0.0,0.5396578193499999,2.546125455498695
|
81 |
+
1.3,wavmark_fast,speed,0.4979375,-0.33760000162351866,0.0,0.0,0.3150613137,2.5541522566080093
|
82 |
+
1.4,wavmark_fast,speed,0.492,-0.32053156941356836,0.0,0.0,0.34972977133999994,2.5593534524440766
|
83 |
+
1.5,wavmark_fast,speed,0.4853125,-0.3063867783474745,0.953,0.0,0.61009864205,2.537753090262413
|
84 |
+
0.001,wavmark_fast,random_noise,0.5906875,-1.0479354555782865,0.291,0.0,0.48377883828,3.284544333100319
|
85 |
+
0.01,wavmark_fast,random_noise,0.51,-0.3761086541193674,0.033,0.002,0.43758065051,1.8904775412082673
|
86 |
+
0.05,wavmark_fast,random_noise,0.503125,-0.3498562192463146,0.239,0.218,0.46411201483000003,1.307384011030197
|
87 |
+
0.1,wavmark_fast,random_noise,0.501125,-0.3529029697603398,0.181,0.196,0.45033027722999996,1.4100552792549133
|
88 |
+
0.3,wavmark_fast,random_noise,0.494625,-0.3263049042425274,0.0,0.0,0.37224179958000003,1.6247414025068283
|
89 |
+
500,wavmark_fast,lowpass_filter,0.494625,-0.3263049042425274,0.0,0.0,0.375,2.9322809007167816
|
90 |
+
1000,wavmark_fast,lowpass_filter,0.494625,-0.3263049042425274,0.0,0.0,0.375,3.0511439764499664
|
91 |
+
1500,wavmark_fast,lowpass_filter,0.494625,-0.3263049042425274,0.0,0.0,0.37624682591999997,2.9622697180509565
|
92 |
+
2000,wavmark_fast,lowpass_filter,0.5415,-0.4630163086180511,0.639,0.0,0.52015941633,2.865707051753998
|
93 |
+
3000,wavmark_fast,lowpass_filter,0.9615625,-4.101350142194335,1.0,0.0,0.91367498838,2.7700017148256304
|
94 |
+
4000,wavmark_fast,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,0.99996249985,2.704656456589699
|
95 |
+
5000,wavmark_fast,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,0.9999749999,2.6589737058877945
|
96 |
+
500,wavmark_fast,highpass_filter,1.0,-4.816479930623699,1.0,0.0,0.9999624998500001,2.698294492125511
|
97 |
+
1000,wavmark_fast,highpass_filter,1.0,-4.816479930623699,1.0,0.0,0.9999624998500001,2.5805401233434675
|
98 |
+
1500,wavmark_fast,highpass_filter,1.0,-4.816479930623699,1.0,0.0,0.9999749999,2.44643310379982
|
99 |
+
2000,wavmark_fast,highpass_filter,1.0,-4.816479930623699,1.0,0.0,0.9999124997100001,2.3517225874662397
|
100 |
+
4000,wavmark_fast,highpass_filter,0.943875,-3.787374925265207,1.0,0.0,0.9756624913499999,1.1026383196115495
|
101 |
+
8000,wavmark_fast,highpass_filter,0.494625,-0.3263049042425274,0.0,0.0,0.375,1.945168897151947
|
102 |
+
10,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9999749999,2.5688794403076174
|
103 |
+
20,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9999749999,2.568895636558533
|
104 |
+
30,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9999624998500001,2.5688628710508348
|
105 |
+
40,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9999624998500001,2.568866145849228
|
106 |
+
50,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9999624998500001,2.5688517018556594
|
107 |
+
60,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9999624998500001,2.5688586049079896
|
108 |
+
70,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9999624998500001,2.568846869945526
|
109 |
+
80,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9999374997499999,2.5688548616170883
|
110 |
+
90,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9999249996999999,2.5688593499660493
|
111 |
+
10,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9999749999,2.5688548616170883
|
112 |
+
20,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9999749999,2.5688586049079896
|
113 |
+
30,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.99998749995,2.568866145849228
|
114 |
+
40,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.99998749995,2.568895636558533
|
115 |
+
50,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.99998749995,2.568849658727646
|
116 |
+
60,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9999749999,2.5688586049079896
|
117 |
+
70,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9999749999,2.568895636558533
|
118 |
+
80,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9985249972300001,2.5688586049079896
|
119 |
+
90,wavmark_fast,duck_audio,0.994,-4.702346747005388,1.0,0.0,0.87586248235,2.5688586049079896
|
120 |
+
0.001,wavmark_fast,shush,1.0,-4.816479930623699,1.0,0.0,0.9999749999,2.5687240823507307
|
121 |
+
0.01,wavmark_fast,shush,1.0,-4.816479930623699,1.0,0.0,0.9999749999,2.5564408214092254
|
122 |
+
0.1,wavmark_fast,shush,1.0,-4.816479930623699,1.0,0.0,0.99818749311,2.587128930091858
|
123 |
+
0.3,wavmark_fast,shush,0.7200625,-1.3646844660989228,1.0,0.0,0.6584396364199999,2.3930876450538636
|
124 |
+
2,wavmark_fast,smooth,1.0,-4.816479930623699,1.0,0.0,0.99998749995,2.6523767989873885
|
125 |
+
4,wavmark_fast,smooth,0.9984375,-4.7857187075892424,1.0,0.0,0.9393874910599999,2.7472589781284333
|
126 |
+
8,wavmark_fast,smooth,0.9504375,-3.9362251589039032,1.0,0.0,0.8026124817900001,2.822040607571602
|
127 |
+
10,wavmark_fast,smooth,0.8280625,-2.28602158475001,1.0,0.0,0.7803124824300001,2.821490167140961
|
128 |
+
20,wavmark_fast,smooth,0.5341875,-0.46475609049727157,0.137,0.0,0.4411218685,2.6467681522369384
|
129 |
+
40,wavmark_fast,smooth,0.494625,-0.3263049042425274,0.0,0.0,0.38912522815,2.314035158753395
|
130 |
+
12k,wavmark_fast,aac_compression,0.6130625,-0.7237703936007571,0.999,0.0,0.6613499904800001,2.491404357433319
|
131 |
+
24k,wavmark_fast,aac_compression,0.9998125,-4.8127885838595645,1.0,0.0,0.98841248685,2.400919094324112
|
132 |
+
32k,wavmark_fast,aac_compression,1.0,-4.816479930623699,1.0,0.0,0.99473749149,2.452804540157318
|
133 |
+
64k,wavmark_fast,aac_compression,1.0,-4.816479930623699,1.0,0.0,0.9999374998099999,2.582824453353882
|
134 |
+
128k,wavmark_fast,aac_compression,1.0,-4.816479930623699,1.0,0.0,0.9999499998599999,2.581820041298866
|
135 |
+
256k,wavmark_fast,aac_compression,1.0,-4.816479930623699,1.0,0.0,0.9999499998599999,2.581820041298866
|
136 |
+
12k,wavmark_fast,mp3_compression,1.0,-4.816479930623699,1.0,0.0,0.99239998916,2.358161727428436
|
137 |
+
24k,wavmark_fast,mp3_compression,1.0,-4.816479930623699,1.0,0.0,0.99239998916,2.358161727428436
|
138 |
+
32k,wavmark_fast,mp3_compression,1.0,-4.816479930623699,1.0,0.0,0.99239998916,2.358161727428436
|
139 |
+
64k,wavmark_fast,mp3_compression,1.0,-4.816479930623699,1.0,0.0,0.99239998916,2.358161727428436
|
140 |
+
128k,wavmark_fast,mp3_compression,1.0,-4.816479930623699,1.0,0.0,0.99239998916,2.358161727428436
|
141 |
+
256k,wavmark_fast,mp3_compression,1.0,-4.816479930623699,1.0,0.0,0.99239998916,2.358161727428436
|
142 |
+
0.5,timbre,speed,0.5057143080830574,-0.35789276362076017,0.0,0.0,0.4880625,3.1603474576473234
|
143 |
+
0.6,timbre,speed,0.48785716319084166,-0.2929926834498275,0.0,0.0,0.5219375,3.214474179148674
|
144 |
+
0.7,timbre,speed,0.526142880268395,-0.3958947636807436,0.0,0.0,0.4823125,3.2351451125144957
|
145 |
+
0.8,timbre,speed,0.48421430636942386,-0.28933162338074053,0.0,0.0,0.4631875,3.2535631746053695
|
146 |
+
0.9,timbre,speed,0.5164285944700241,-0.3808611688388628,0.0,0.0,0.5055625,3.324016175031662
|
147 |
+
1.0,timbre,speed,0.9997857143878937,-4.210891665518569,0.996,0.0,0.99975,3.427657922744751
|
148 |
+
1.1,timbre,speed,0.5247143094018102,-0.39761516576396766,0.0,0.0,0.5035,3.4475234587192536
|
149 |
+
1.2,timbre,speed,0.4662143059670925,-0.26877535292684274,0.0,0.0,0.507125,3.4491779897212984
|
150 |
+
1.25,timbre,speed,0.4732857346907258,-0.268957995592809,0.0,0.0,0.45875,3.4521795535087585
|
151 |
+
1.3,timbre,speed,0.4932143063247204,-0.3185999783565413,0.0,0.0,0.48975,3.459662773489952
|
152 |
+
1.4,timbre,speed,0.4991428781747818,-0.3365441996992098,0.0,0.0,0.4975,3.460218893647194
|
153 |
+
1.5,timbre,speed,0.4772143065929413,-0.2796409968026199,0.0,0.0,0.4886875,3.4645172936916353
|
154 |
+
0.001,timbre,random_noise,0.8917143127024174,-2.8749805216932005,0.338,0.0,0.8963125,2.952757246375084
|
155 |
+
0.01,timbre,random_noise,0.5685714549869298,-0.588419885989292,0.002,0.0,0.5718125,1.7305930228233337
|
156 |
+
0.05,timbre,random_noise,0.5037143079042434,-0.3422142338361114,0.0,0.0,0.5031875,1.1907869672775269
|
157 |
+
0.1,timbre,random_noise,0.4975714508071542,-0.3421954483512061,0.0,0.0,0.5020625,1.2559098212718964
|
158 |
+
0.3,timbre,random_noise,0.5025714517310261,-0.3479706071860989,0.0,0.0,0.496875,1.4438213286399841
|
159 |
+
500,timbre,lowpass_filter,0.6449286028146743,-0.8192749738322862,0.0,0.0,0.6025625,3.8939410974979403
|
160 |
+
1000,timbre,lowpass_filter,0.7163571797609329,-1.203143556602777,0.0,0.0,0.72025,3.884629855632782
|
161 |
+
1500,timbre,lowpass_filter,0.7873571841716767,-1.7183878009084614,0.01,0.0,0.7880625,3.8095764722824095
|
162 |
+
2000,timbre,lowpass_filter,0.8405714712142944,-2.1851615840254217,0.093,0.0,0.8636875,3.7471435346603394
|
163 |
+
3000,timbre,lowpass_filter,0.918142887353897,-3.0633591366002064,0.489,0.0,0.953625,3.647822267651558
|
164 |
+
4000,timbre,lowpass_filter,0.968857156932354,-3.733040789773956,0.867,0.0,0.9904375,3.578006113052368
|
165 |
+
5000,timbre,lowpass_filter,0.998714286327362,-4.193577173285581,0.988,0.0,0.99925,3.52396496963501
|
166 |
+
500,timbre,highpass_filter,0.9936428601145745,-4.112238376423245,0.96,0.0,0.9973125,3.469923873066902
|
167 |
+
1000,timbre,highpass_filter,0.967000013768673,-3.7183567390983625,0.657,0.0,0.97225,3.2253190402984617
|
168 |
+
1500,timbre,highpass_filter,0.9225714585185051,-3.1039839668799303,0.286,0.0,0.921375,3.0398818677663804
|
169 |
+
2000,timbre,highpass_filter,0.8761428955197335,-2.5656290259722954,0.111,0.0,0.87175,2.89998916888237
|
170 |
+
4000,timbre,highpass_filter,0.7624286114573479,-1.517476381607738,0.001,0.0,0.7313125,1.091416949033737
|
171 |
+
8000,timbre,highpass_filter,0.49485716454684736,-0.3321224178671162,0.0,0.0,0.49425,2.032082499504089
|
172 |
+
10,timbre,boost_audio,0.9997857143878937,-4.210891665518569,0.996,0.0,0.99975,3.427659059524536
|
173 |
+
20,timbre,boost_audio,0.9996428573131562,-4.208539483000459,0.995,0.0,0.9996875,3.4276586334705352
|
174 |
+
30,timbre,boost_audio,0.9995714287757873,-4.207363391741403,0.995,0.0,0.9996875,3.4276602405309675
|
175 |
+
40,timbre,boost_audio,0.9993571431636811,-4.2038351179642355,0.994,0.0,0.999625,3.4276580410003663
|
176 |
+
50,timbre,boost_audio,0.9992142860889435,-4.2014829354461245,0.993,0.0,0.9995625,3.4276588045358656
|
177 |
+
60,timbre,boost_audio,0.9992142860889435,-4.2014829354461245,0.99,0.0,0.9993125,3.4276593123674393
|
178 |
+
70,timbre,boost_audio,0.9992142860889435,-4.2014829354461245,0.99,0.0,0.9993125,3.42765957403183
|
179 |
+
80,timbre,boost_audio,0.9991428575515747,-4.200306844187069,0.989,0.0,0.99925,3.427659175157547
|
180 |
+
90,timbre,boost_audio,0.9990000004768371,-4.197954661668957,0.988,0.0,0.9991875,3.4276590449810027
|
181 |
+
10,timbre,duck_audio,0.9997857143878937,-4.210891665518569,0.997,0.0,0.9998125,3.427659175157547
|
182 |
+
20,timbre,duck_audio,0.9998571429252624,-4.212067756777626,0.997,0.0,0.9998125,3.4276593123674393
|
183 |
+
30,timbre,duck_audio,0.9997857143878937,-4.210891665518569,0.997,0.0,0.9998125,3.4276580410003663
|
184 |
+
40,timbre,duck_audio,0.9998571429252624,-4.212067756777626,0.998,0.0,0.999875,3.4276586334705352
|
185 |
+
50,timbre,duck_audio,0.9998571429252624,-4.212067756777626,0.998,0.0,0.999875,3.427657922744751
|
186 |
+
60,timbre,duck_audio,0.9998571429252624,-4.212067756777626,0.998,0.0,0.999875,3.4276593123674393
|
187 |
+
70,timbre,duck_audio,0.9998571429252624,-4.212067756777626,0.997,0.0,0.9998125,3.4276586334705352
|
188 |
+
80,timbre,duck_audio,0.9998571429252624,-4.212067756777626,0.989,0.0,0.9993125,3.4276593123674393
|
189 |
+
90,timbre,duck_audio,0.9974285726547241,-4.173388160581119,0.884,0.0,0.991875,3.4276593123674393
|
190 |
+
0.001,timbre,shush,0.9997857143878937,-4.210891665518569,0.996,0.0,0.99975,3.4283130762577056
|
191 |
+
0.01,timbre,shush,0.9997857143878937,-4.210891665518569,0.996,0.0,0.99975,3.433981973052025
|
192 |
+
0.1,timbre,shush,0.998714286327362,-4.193250296632733,0.986,0.0,0.999125,3.5136044718027115
|
193 |
+
0.3,timbre,shush,0.9680000143647194,-3.7214207546902345,0.594,0.0,0.965625,1.4527076202630997
|
194 |
+
2,timbre,smooth,0.9992142860889435,-4.2014829354461245,0.995,0.0,0.9996875,3.530003172278404
|
195 |
+
4,timbre,smooth,0.9857142923474311,-3.988307748299227,0.837,0.0,0.988375,3.6500646693706513
|
196 |
+
8,timbre,smooth,0.9585714468955994,-3.5795904720442375,0.472,0.0,0.9535625,3.7342724434137344
|
197 |
+
10,timbre,smooth,0.9350000272393226,-3.255193716559153,0.449,0.0,0.9485,3.7468820136785506
|
198 |
+
20,timbre,smooth,0.851000042617321,-2.29187360453453,0.189,0.0,0.898125,3.6988526878356933
|
199 |
+
40,timbre,smooth,0.7810714699029923,-1.6615191799860711,0.029,0.0,0.8051875,3.4681881902217864
|
200 |
+
12k,timbre,aac_compression,0.839142897427082,-2.2009896442764227,0.079,0.0,0.8560625,3.1160832209587097
|
201 |
+
24k,timbre,aac_compression,0.9938571457862854,-4.1149104742811815,0.888,0.0,0.992375,2.973020835995674
|
202 |
+
32k,timbre,aac_compression,0.9960714304447174,-4.150715550006215,0.938,0.0,0.9958125,3.0795951340198515
|
203 |
+
64k,timbre,aac_compression,0.9978571438789368,-4.179464078176913,0.965,0.0,0.9975625,3.3715662537813187
|
204 |
+
128k,timbre,aac_compression,0.9978571438789368,-4.179790954829759,0.965,0.0,0.9975625,3.370518552184105
|
205 |
+
256k,timbre,aac_compression,0.9978571438789368,-4.179790954829759,0.965,0.0,0.9975625,3.370518552184105
|
206 |
+
12k,timbre,mp3_compression,0.9993571431636811,-4.2038351179642355,0.993,0.0,0.9995625,3.1555028420686724
|
207 |
+
24k,timbre,mp3_compression,0.9993571431636811,-4.2038351179642355,0.993,0.0,0.9995625,3.1555028420686724
|
208 |
+
32k,timbre,mp3_compression,0.9993571431636811,-4.2038351179642355,0.993,0.0,0.9995625,3.1555028420686724
|
209 |
+
64k,timbre,mp3_compression,0.9993571431636811,-4.2038351179642355,0.993,0.0,0.9995625,3.1555028420686724
|
210 |
+
128k,timbre,mp3_compression,0.9993571431636811,-4.2038351179642355,0.993,0.0,0.9995625,3.1555028420686724
|
211 |
+
256k,timbre,mp3_compression,0.9993571431636811,-4.2038351179642355,0.993,0.0,0.9995625,3.1555028420686724
|
backend/data/ravdess_1k_audio_benchmark.csv
ADDED
@@ -0,0 +1,319 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
model,attack_name,attack_variant,cat,snr,sisnr,stoi,pesq,bit_acc,log10_p_value,TPR,FPR,decoder_time
|
2 |
+
audioseal,aac_compression,bitrate_128k,Compression,-2.9966525373,-29.385850183486937,0.36245905999839306,3.3493177464008332,0.6099375,-0.9400852580193808,0.968,0.0,0.0021261653900146484
|
3 |
+
audioseal,aac_compression,bitrate_12k,Compression,-2.9879088141000003,-28.88708986186981,0.3756739369034767,2.9843639008998872,0.601875,-0.8902397147782045,0.933,0.0,0.0024816625118255615
|
4 |
+
audioseal,aac_compression,bitrate_24k,Compression,-2.9885579625,-29.269030123710632,0.3763916867822409,3.0431446530818937,0.602875,-0.8924060767866466,0.948,0.0,0.002126948833465576
|
5 |
+
audioseal,aac_compression,bitrate_256k,Compression,-2.9966525373,-29.385850183486937,0.36245905999839306,3.3493177464008332,0.6099375,-0.9400852580193808,0.968,0.0,0.0021324138641357422
|
6 |
+
audioseal,aac_compression,bitrate_32k,Compression,-2.9879591478000003,-29.350335392951965,0.3721828728914261,3.1431907395124434,0.605,-0.9178176246454927,0.958,0.0,0.002127878665924072
|
7 |
+
audioseal,aac_compression,bitrate_64k,Compression,-2.9965825269999997,-29.382882411956786,0.3623892508149147,3.3512348146438597,0.608625,-0.94009045191052,0.969,0.0,0.002133431911468506
|
8 |
+
audioseal,bandpass_filter,default,AmplitudeDomain,17.202709923,17.08964948749542,0.9494755900502205,3.4149550709724426,1.0,-4.816479930623699,1.0,0.0,0.0024866344928741453
|
9 |
+
audioseal,boost_audio,amount_10,AmplitudeDomain,19.9222274187,20.523651043891906,0.8694536861777306,3.452727394580841,1.0,-4.816479930623699,1.0,0.0,0.0026955485343933107
|
10 |
+
audioseal,boost_audio,amount_20,AmplitudeDomain,19.9222274455,20.523655391693115,0.8694536860585212,3.452764313340187,1.0,-4.816479930623699,1.0,0.0,0.0021400158405303956
|
11 |
+
audioseal,boost_audio,amount_30,AmplitudeDomain,19.922227425000003,20.523658804893493,0.8694536860585212,3.452763600349426,1.0,-4.816479930623699,1.0,0.0,0.002158716678619385
|
12 |
+
audioseal,boost_audio,amount_40,AmplitudeDomain,19.9222274214,20.5236614818573,0.8694536865353585,3.4527219997644423,1.0,-4.816479930623699,1.0,0.0,0.002208455324172974
|
13 |
+
audioseal,boost_audio,amount_50,AmplitudeDomain,19.9222273816,20.52366372013092,0.869453685849905,3.452765192747116,1.0,-4.816479930623699,1.0,0.0,0.0021862332820892336
|
14 |
+
audioseal,boost_audio,amount_60,AmplitudeDomain,19.922227429899998,20.52366551399231,0.8694536858201027,3.452722472548485,1.0,-4.816479930623699,1.0,0.0,0.00216186261177063
|
15 |
+
audioseal,boost_audio,amount_70,AmplitudeDomain,19.9222274163,20.523666993141173,0.8694536861479283,3.452725873708725,1.0,-4.816479930623699,1.0,0.0,0.002174028158187866
|
16 |
+
audioseal,boost_audio,amount_80,AmplitudeDomain,19.9222274368,20.523668217658997,0.8694536859095097,3.4527236925363542,1.0,-4.816479930623699,1.0,0.0,0.0021609492301940918
|
17 |
+
audioseal,boost_audio,amount_90,AmplitudeDomain,19.922227416000002,20.52366927909851,0.8694536861479283,3.4527253423929216,1.0,-4.816479930623699,1.0,0.0,0.0021662158966064453
|
18 |
+
audioseal,duck_audio,amount_10,AmplitudeDomain,19.9222274368,20.523637468338013,0.8694536859095097,3.4527236925363542,1.0,-4.816479930623699,1.0,0.0,0.002568897008895874
|
19 |
+
audioseal,duck_audio,amount_20,AmplitudeDomain,19.922227429899998,20.523626504898072,0.8694536858201027,3.452722472548485,1.0,-4.816479930623699,1.0,0.0,0.0021383633613586426
|
20 |
+
audioseal,duck_audio,amount_30,AmplitudeDomain,19.9222274214,20.523610646247864,0.8694536865353585,3.4527219997644423,0.9996875,-4.810651863292408,1.0,0.0,0.0021511778831481932
|
21 |
+
audioseal,duck_audio,amount_40,AmplitudeDomain,19.9222274455,20.5235861825943,0.8694536860585212,3.452764313340187,0.9994375,-4.806054244882494,1.0,0.0,0.00213543701171875
|
22 |
+
audioseal,duck_audio,amount_50,AmplitudeDomain,19.922227427,20.52354560279846,0.8694536858797073,3.452721855759621,0.9984375,-4.786691239416043,1.0,0.0,0.0021465747356414796
|
23 |
+
audioseal,duck_audio,amount_60,AmplitudeDomain,19.922227429899998,20.523470843315124,0.8694536858201027,3.452722472548485,0.991375,-4.654608917276048,0.984,0.0,0.00214023756980896
|
24 |
+
audioseal,duck_audio,amount_70,AmplitudeDomain,19.9222274455,20.523309502601624,0.8694536860585212,3.452764313340187,0.9756875,-4.380213055857585,0.61,0.0,0.002154120445251465
|
25 |
+
audioseal,duck_audio,amount_80,AmplitudeDomain,19.922227429899998,20.522848291397096,0.8694536858201027,3.452722472548485,0.9303125,-3.663006970004879,0.109,0.0,0.00214773154258728
|
26 |
+
audioseal,duck_audio,amount_90,AmplitudeDomain,19.922227429899998,20.520362939834595,0.8694536858201027,3.452722472548485,0.833625,-2.445396754652813,0.051,0.0,0.0021498355865478516
|
27 |
+
audioseal,echo,volume_duration_0.1_0.1,TimeDomain,19.741228199600002,20.387352085113527,0.8633521309792995,3.4538838460445405,1.0,-4.816479930623699,1.0,0.0,0.0033694045543670656
|
28 |
+
audioseal,echo,volume_duration_0.1_0.2,TimeDomain,19.7799262252,20.40136252117157,0.8726090438365937,3.4745385311841965,1.0,-4.816479930623699,1.0,0.0,0.0022262475490570067
|
29 |
+
audioseal,echo,volume_duration_0.1_0.3,TimeDomain,19.792366796000003,20.385315035820007,0.8813107970952988,3.4985796325206757,1.0,-4.816479930623699,1.0,0.0,0.0021562232971191406
|
30 |
+
audioseal,echo,volume_duration_0.1_0.4,TimeDomain,19.8062992168,20.37145345878601,0.8915250473618508,3.513807095527649,1.0,-4.816479930623699,1.0,0.0,0.0021787662506103514
|
31 |
+
audioseal,echo,volume_duration_0.1_0.5,TimeDomain,19.8275341058,20.366666043281555,0.9028469441533089,3.541406848907471,1.0,-4.816479930623699,1.0,0.0,0.002179206848144531
|
32 |
+
audioseal,echo,volume_duration_0.2_0.1,TimeDomain,19.5723393154,20.277264255523683,0.8509960818886757,3.4235249619483947,0.9999375,-4.815249481702321,1.0,0.0,0.002158923387527466
|
33 |
+
audioseal,echo,volume_duration_0.2_0.2,TimeDomain,19.6333880403,20.315905228614806,0.8620027116835117,3.446413929581642,0.9999375,-4.815249481702321,1.0,0.0,0.002154428243637085
|
34 |
+
audioseal,echo,volume_duration_0.2_0.3,TimeDomain,19.645202065,20.29683006095886,0.8721710862517357,3.4720551995038984,1.0,-4.816479930623699,1.0,0.0,0.0021961822509765625
|
35 |
+
audioseal,echo,volume_duration_0.2_0.4,TimeDomain,19.659777312899998,20.281141204833986,0.8845608711838723,3.492489429473877,1.0,-4.816479930623699,1.0,0.0,0.002144071817398071
|
36 |
+
audioseal,echo,volume_duration_0.2_0.5,TimeDomain,19.687937339,20.281863911628722,0.8965005732774735,3.5201649353504183,1.0,-4.816479930623699,1.0,0.0,0.002187239646911621
|
37 |
+
audioseal,echo,volume_duration_0.3_0.1,TimeDomain,19.4301554163,20.183204689025878,0.8397822793424129,3.3976208716630936,0.999875,-4.814019032780943,1.0,0.0,0.002191318988800049
|
38 |
+
audioseal,echo,volume_duration_0.3_0.2,TimeDomain,19.5097508828,20.242721334457396,0.8514381476938725,3.4227307238578795,0.999875,-4.814019032780943,1.0,0.0,0.0022081835269927978
|
39 |
+
audioseal,echo,volume_duration_0.3_0.3,TimeDomain,19.521001770900003,20.221080057144164,0.8628669810295105,3.4492433631420134,0.999875,-4.814019032780943,1.0,0.0,0.002161635398864746
|
40 |
+
audioseal,echo,volume_duration_0.3_0.4,TimeDomain,19.5361040396,20.20386573600769,0.8767420548200607,3.4717577043771746,0.9999375,-4.815249481702321,1.0,0.0,0.0021981792449951173
|
41 |
+
audioseal,echo,volume_duration_0.3_0.5,TimeDomain,19.570015770599994,20.209285313606262,0.8894276593327523,3.5009026720523835,0.999875,-4.814019032780943,1.0,0.0,0.00216976261138916
|
42 |
+
audioseal,echo,volume_duration_0.4_0.1,TimeDomain,19.3159307343,20.106855251312258,0.829551230698824,3.3782531245946883,0.99975,-4.811558134938187,1.0,0.0,0.0021654045581817626
|
43 |
+
audioseal,echo,volume_duration_0.4_0.2,TimeDomain,19.4102706037,20.183247725486755,0.8413837357461452,3.4041087486743926,0.9996875,-4.810327686016808,1.0,0.0,0.0021788570880889894
|
44 |
+
audioseal,echo,volume_duration_0.4_0.3,TimeDomain,19.4210561052,20.159547698020933,0.8536788837611675,3.432822736144066,0.9996875,-4.810327686016808,1.0,0.0,0.0022279181480407717
|
45 |
+
audioseal,echo,volume_duration_0.4_0.4,TimeDomain,19.4365809031,20.141125515937805,0.8692140201330185,3.4559129045009613,0.999875,-4.814019032780943,1.0,0.0,0.0021862051486968995
|
46 |
+
audioseal,echo,volume_duration_0.4_0.5,TimeDomain,19.4750650413,20.150357557296754,0.8821247844099999,3.485855206847191,0.99975,-4.811558134938187,1.0,0.0,0.0021769320964813233
|
47 |
+
audioseal,echo,volume_duration_0.5_0.1,TimeDomain,19.2284550309,20.048029756546022,0.8212320478856564,3.3629363453388215,0.9991875,-4.800484094645782,1.0,0.0,0.0022026627063751222
|
48 |
+
audioseal,echo,volume_duration_0.5_0.2,TimeDomain,19.3340163258,20.137435332298278,0.8323261571526528,3.3907538299560547,0.9991875,-4.800484094645782,1.0,0.0,0.002193317890167236
|
49 |
+
audioseal,echo,volume_duration_0.5_0.3,TimeDomain,19.3444446169,20.112171312332155,0.8464943713247776,3.4196615335941316,0.9994375,-4.805405890331294,1.0,0.0,0.0021794400215148927
|
50 |
+
audioseal,echo,volume_duration_0.5_0.4,TimeDomain,19.360297529199997,20.09284061717987,0.8631743704676628,3.444122388124466,0.9995,-4.806636339252673,1.0,0.0,0.0022034263610839844
|
51 |
+
audioseal,echo,volume_duration_0.5_0.5,TimeDomain,19.402260495399997,20.105021456718443,0.8761658586859703,3.4750514187812804,0.9995625,-4.807866788174051,1.0,0.0,0.002177544355392456
|
52 |
+
audioseal,highpass_filter,cutoff_freq_1000,AmplitudeDomain,14.5233629598,14.312075835227967,0.9174666182994843,3.265556354403496,0.8888125,-2.9769188739747285,1.0,0.0,0.0021566240787506104
|
53 |
+
audioseal,highpass_filter,cutoff_freq_1500,AmplitudeDomain,42.482727113,42.45016612625122,0.9951205180883408,4.182814824223518,0.489375,-0.3174887161419503,0.0,0.0,0.0021706783771514894
|
54 |
+
audioseal,highpass_filter,cutoff_freq_2000,AmplitudeDomain,47.840911203,47.69450061607361,0.9945450511574745,4.2581592473983765,0.496875,-0.3398368420392104,0.0,0.0,0.002155773878097534
|
55 |
+
audioseal,highpass_filter,cutoff_freq_4000,AmplitudeDomain,55.156617541,53.14850438308716,0.9976060179471969,2.1549205424785614,0.495,-0.3335413629750066,0.0,0.0,0.0021364188194274904
|
56 |
+
audioseal,highpass_filter,cutoff_freq_500,AmplitudeDomain,17.372351069700002,17.26534629869461,0.9494902587234973,3.3748832857608795,1.0,-4.816479930623699,1.0,0.0,0.003307981252670288
|
57 |
+
audioseal,highpass_filter,cutoff_freq_8000,AmplitudeDomain,2.8004947795182997,5.373922283524735e-07,0.8065097709447145,2.063074156522751,0.5008125,-0.3444576990574476,0.0,0.0,0.0021769630908966063
|
58 |
+
audioseal,identity,default,None,19.922227427,20.52364523220062,0.8694536858797073,3.452721855759621,1.0,-4.816479930623699,1.0,0.0,0.002664550065994263
|
59 |
+
audioseal,lowpass_filter,cutoff_freq_1000,AmplitudeDomain,26.3808136881,28.715226073265075,0.8392909843027592,3.9173457112312318,0.8105625,-2.1249174715590087,0.117,0.0,0.0021723082065582275
|
60 |
+
audioseal,lowpass_filter,cutoff_freq_1500,AmplitudeDomain,19.4120309455,20.007899211883544,0.8535103391110898,3.561496246099472,1.0,-4.816479930623699,1.0,0.0,0.0021408662796020507
|
61 |
+
audioseal,lowpass_filter,cutoff_freq_2000,AmplitudeDomain,19.6148734678,20.213897852897645,0.8612294481694698,3.545590359210968,1.0,-4.816479930623699,1.0,0.0,0.0021550488471984864
|
62 |
+
audioseal,lowpass_filter,cutoff_freq_3000,AmplitudeDomain,19.7472138806,20.347316259384154,0.8685185651481152,3.5220830581188203,1.0,-4.816479930623699,1.0,0.0,0.0021687088012695313
|
63 |
+
audioseal,lowpass_filter,cutoff_freq_4000,AmplitudeDomain,19.809837550900003,20.410057689666747,0.8693939886689186,3.5019816663265226,1.0,-4.816479930623699,1.0,0.0,0.0021841392517089843
|
64 |
+
audioseal,lowpass_filter,cutoff_freq_500,AmplitudeDomain,27.3160699714,36.60189526367188,0.8104358286261558,4.327816670179367,0.4976875,-0.3402366782210702,0.0,0.0,0.0032931783199310304
|
65 |
+
audioseal,lowpass_filter,cutoff_freq_5000,AmplitudeDomain,19.8505190199,20.45098518371582,0.8694437844455242,3.484840331673622,1.0,-4.816479930623699,1.0,0.0,0.0021310722827911376
|
66 |
+
audioseal,mp3_compression,bitrate_128k,Compression,13.8045620022,13.954559062004089,0.8449881779551506,2.9778598886728287,1.0,-4.816479930623699,1.0,0.0,0.002111335277557373
|
67 |
+
audioseal,mp3_compression,bitrate_12k,Compression,13.8045620022,13.954559062004089,0.8449881779551506,2.9778598886728287,1.0,-4.816479930623699,1.0,0.0,0.0023212110996246337
|
68 |
+
audioseal,mp3_compression,bitrate_24k,Compression,13.8045620022,13.954559062004089,0.8449881779551506,2.9778598886728287,1.0,-4.816479930623699,1.0,0.0,0.002117380142211914
|
69 |
+
audioseal,mp3_compression,bitrate_256k,Compression,13.8045620022,13.954559062004089,0.8449881779551506,2.9778598886728287,1.0,-4.816479930623699,1.0,0.0,0.0021165523529052734
|
70 |
+
audioseal,mp3_compression,bitrate_32k,Compression,13.8045620022,13.954559062004089,0.8449881779551506,2.9778598886728287,1.0,-4.816479930623699,1.0,0.0,0.0021100704669952393
|
71 |
+
audioseal,mp3_compression,bitrate_64k,Compression,13.8045620022,13.954559062004089,0.8449881779551506,2.9778598886728287,1.0,-4.816479930623699,1.0,0.0,0.002119641065597534
|
72 |
+
audioseal,pink_noise,noise_std_0.01,AmplitudeDomain,21.480233463999998,22.053241317749023,0.9688638741374016,4.330604051589966,1.0,-4.816479930623699,1.0,0.0,0.0026237807273864744
|
73 |
+
audioseal,pink_noise,noise_std_0.05,AmplitudeDomain,27.99116486,28.550665452957155,0.9946686893105506,4.442523458003998,0.9978125,-4.77438675020226,0.993,0.0,0.002153247594833374
|
74 |
+
audioseal,pink_noise,noise_std_0.1,AmplitudeDomain,31.91127317,32.46863585662842,0.997473405957222,4.457466048121453,0.9798125,-4.463168613390419,0.326,0.0,0.002150801181793213
|
75 |
+
audioseal,pink_noise,noise_std_0.2,AmplitudeDomain,37.606867656000006,38.09824272346496,0.9986447508335113,4.3610704803466795,0.8886875,-3.192874192921902,0.006,0.0,0.0021448373794555665
|
76 |
+
audioseal,pink_noise,noise_std_0.3,AmplitudeDomain,40.815468727,41.24652604103088,0.9990176287889481,4.3179535195827485,0.8034375,-2.2612447473042216,0.0,0.0,0.002152153253555298
|
77 |
+
audioseal,pink_noise,noise_std_0.5,AmplitudeDomain,45.174241445,45.60244520187378,0.9992995218634605,4.059159261703491,0.6985,-1.3652789070305809,0.0,0.0,0.0021375553607940675
|
78 |
+
audioseal,pink_noise,noise_std_1.0,AmplitudeDomain,51.098424221,51.58939804840088,0.9996148094534874,3.55553814470768,0.5885,-0.6799243600137652,0.0,0.0,0.002148566246032715
|
79 |
+
audioseal,random_noise,noise_std_0.001,AmplitudeDomain,13.578156630856,13.121299148585647,0.5270633103772998,3.2732301855087282,0.9981875,-4.78144526645493,0.722,0.0,0.003525285005569458
|
80 |
+
audioseal,random_noise,noise_std_0.01,AmplitudeDomain,1.08563241821777,-8.729029395543039,0.24556475187814794,1.8725254222154617,0.675875,-1.2168207952182242,0.0,0.0,0.002228518009185791
|
81 |
+
audioseal,random_noise,noise_std_0.05,AmplitudeDomain,-2.3654892752854004,-31.64123020742461,0.09472339484292024,1.2849895355701446,0.5145,-0.38958960120068004,0.0,0.0,0.002182680368423462
|
82 |
+
audioseal,random_noise,noise_std_0.1,AmplitudeDomain,-2.7910850845199997,-40.803694576263425,0.050206251290037474,1.3982202883958816,0.5043125,-0.35431594653795623,0.0,0.0,0.002172088861465454
|
83 |
+
audioseal,random_noise,noise_std_0.3,AmplitudeDomain,-2.9819426457,-50.16176889419555,0.013131150107668873,1.6058883122205734,0.5054375,-0.348128084634169,0.0,0.0,0.002184579133987427
|
84 |
+
audioseal,shush,fraction_0.001,AmplitudeDomain,19.9249592927,20.52979898262024,0.869450110912323,3.4526154572963716,1.0,-4.816479930623699,1.0,0.0,0.002624638795852661
|
85 |
+
audioseal,shush,fraction_0.01,AmplitudeDomain,19.939641199900002,20.54188569164276,0.8705841551721096,3.4665340806245806,0.9999375,-4.815249481702321,1.0,0.0,0.0021414926052093506
|
86 |
+
audioseal,shush,fraction_0.1,AmplitudeDomain,20.004432231,20.495005992889404,0.8790971035659313,3.502708883047104,0.9998125,-4.813112761135164,1.0,0.0,0.00215533185005188
|
87 |
+
audioseal,shush,fraction_0.3,AmplitudeDomain,20.1152281865,20.617956834316253,0.8185922524631023,3.312327645897865,0.999875,-4.814019032780943,1.0,0.0,0.002129279851913452
|
88 |
+
audioseal,smooth,window_size_10,AmplitudeDomain,23.474674938899998,25.38052799797058,0.8398385823071003,3.774712325692177,0.9470625,-3.8631068605277465,1.0,0.0,0.00215924072265625
|
89 |
+
audioseal,smooth,window_size_2,AmplitudeDomain,19.891449824,20.51336843109131,0.8682708195447921,3.482044697165489,0.9989375,-4.795562298960269,1.0,0.0,0.00258953332901001
|
90 |
+
audioseal,smooth,window_size_20,AmplitudeDomain,23.036792428499997,26.91401629447937,0.7865659213960171,3.873764958739281,0.7401875,-1.4978677380531134,0.232,0.0,0.0021284830570220945
|
91 |
+
audioseal,smooth,window_size_4,AmplitudeDomain,20.149681822999998,20.864844590187072,0.8638624195158482,3.536221053004265,0.9895625,-4.619598697040004,1.0,0.0,0.002153424024581909
|
92 |
+
audioseal,smooth,window_size_40,AmplitudeDomain,19.75629249297,26.381545477867128,0.7113740584850311,3.62562871325016,0.502875,-0.3420276645872683,0.0,0.0,0.002149775505065918
|
93 |
+
audioseal,smooth,window_size_8,AmplitudeDomain,21.910737464900002,23.159662158966064,0.8492589519023895,3.672382586121559,0.9963125,-4.745704090075218,1.0,0.0,0.002143552780151367
|
94 |
+
audioseal,speed,speed_factor_0.5,TimeDomain,20.255965085,20.603209289550783,0.9287772988677024,3.5550205515623094,0.500625,-0.34089309911368937,0.0,0.0,0.002318887233734131
|
95 |
+
audioseal,speed,speed_factor_0.6,TimeDomain,20.1879265745,20.56991160583496,0.9327527393698692,3.735170446038246,0.494875,-0.3275281501501374,0.0,0.0,0.0021375536918640135
|
96 |
+
audioseal,speed,speed_factor_0.7,TimeDomain,20.1170217915,20.556746523857118,0.9246786412000656,3.6943479254245757,0.490875,-0.32677356866328694,0.0,0.0,0.00216094708442688
|
97 |
+
audioseal,speed,speed_factor_0.8,TimeDomain,20.0496773215,20.547243344306946,0.9118631052970886,3.5712071738243103,0.4891875,-0.3229291833792298,0.0,0.0,0.002199692726135254
|
98 |
+
audioseal,speed,speed_factor_0.9,TimeDomain,19.981639791,20.534365633964537,0.887136805087328,3.504472818732262,0.5134375,-0.37612879341005684,0.0,0.0,0.002154271125793457
|
99 |
+
audioseal,speed,speed_factor_1.0,TimeDomain,19.922227427,20.52364523220062,0.8694536858797073,3.452721855759621,1.0,-4.816479930623699,1.0,0.0,0.002189189672470093
|
100 |
+
audioseal,speed,speed_factor_1.1,TimeDomain,19.9091193943,20.511282550811767,0.8709502119719982,3.460404544234276,0.4831875,-0.2961054894160578,0.025,0.0,0.0019967031478881837
|
101 |
+
audioseal,speed,speed_factor_1.2,TimeDomain,19.897697116199996,20.49976217842102,0.8723538846969604,3.433519125699997,0.4963125,-0.33179244271545005,0.0,0.0,0.0018605437278747558
|
102 |
+
audioseal,speed,speed_factor_1.25,TimeDomain,19.891477103299998,20.493473608970643,0.8756186406910419,3.4280464265346526,0.49775,-0.343130298277595,0.0,0.0,0.0018744623661041259
|
103 |
+
audioseal,speed,speed_factor_1.3,TimeDomain,19.885151148600002,20.487061354637145,0.8773373339176178,3.4347622705698013,0.492625,-0.32572631708281746,0.0,0.0,0.001820995569229126
|
104 |
+
audioseal,speed,speed_factor_1.4,TimeDomain,19.8723516324,20.474075744628905,0.8779106317162514,3.427298019051552,0.494,-0.33159334306401217,0.0,0.0,0.001694446086883545
|
105 |
+
audioseal,speed,speed_factor_1.5,TimeDomain,19.8598111635,20.461308197021484,0.8797310717701912,3.4186278252601623,0.5010625,-0.3425986426434317,0.0,0.0,0.0016265187263488769
|
106 |
+
audioseal,speed_julius,speed_1.25,TimeDomain,19.9086821944,20.511275197029114,0.875783210426569,3.427087859272957,0.5053125,-0.3640080554893692,0.0,0.0,0.001942579746246338
|
107 |
+
audioseal,updownresample,default,TimeDomain,19.916373479399997,20.517747667312623,0.8694501421451568,3.457837793827057,1.0,-4.816479930623699,1.0,0.0,0.002360677003860474
|
108 |
+
timbre,aac_compression,bitrate_128k,Compression,-3.0262684371000006,-31.861602660179138,0.23170103377156193,3.370518552184105,0.9978571438789368,-4.179790954829759,0.965,0.0,0.00015617895126342774
|
109 |
+
timbre,aac_compression,bitrate_12k,Compression,-2.9856118510999994,-31.15933835887909,0.25531155333295463,3.1160832209587097,0.839142897427082,-2.2009896442764227,0.079,0.0,0.0013840093612670899
|
110 |
+
timbre,aac_compression,bitrate_24k,Compression,-3.0106032220999994,-31.74655760669708,0.24775133357848972,2.973020835995674,0.9938571457862854,-4.1149104742811815,0.888,0.0,0.00015683960914611816
|
111 |
+
timbre,aac_compression,bitrate_256k,Compression,-3.0262684371000006,-31.861602660179138,0.23170103377156193,3.370518552184105,0.9978571438789368,-4.179790954829759,0.965,0.0,0.00015485668182373046
|
112 |
+
timbre,aac_compression,bitrate_32k,Compression,-3.0152744245,-31.80578119468689,0.24331159405969083,3.0795951340198515,0.9960714304447174,-4.150715550006215,0.938,0.0,0.00014237856864929199
|
113 |
+
timbre,aac_compression,bitrate_64k,Compression,-3.0261321769999996,-31.865130234718322,0.231690319905887,3.3715662537813187,0.9978571438789368,-4.179464078176913,0.965,0.0,0.00015205144882202148
|
114 |
+
timbre,bandpass_filter,default,AmplitudeDomain,15.7913601934,15.920852505207062,0.9553828425109386,3.5930891400575637,0.9763571528196335,-3.8602647908195484,0.854,0.0,0.00131595778465271
|
115 |
+
timbre,boost_audio,amount_10,AmplitudeDomain,16.4761578019,16.432557541847228,0.9500892373919487,3.427659059524536,0.9997857143878937,-4.210891665518569,0.996,0.0,0.0014179842472076417
|
116 |
+
timbre,boost_audio,amount_20,AmplitudeDomain,16.4761578408,16.43255841112137,0.9500892376303672,3.4276586334705352,0.9996428573131562,-4.208539483000459,0.995,0.0,0.00015401649475097655
|
117 |
+
timbre,boost_audio,amount_30,AmplitudeDomain,16.4761578103,16.432559136390687,0.9500892372727394,3.4276602405309675,0.9995714287757873,-4.207363391741403,0.995,0.0,0.00012416982650756837
|
118 |
+
timbre,boost_audio,amount_40,AmplitudeDomain,16.476157826999998,16.432559725761415,0.9500892375707626,3.4276580410003663,0.9993571431636811,-4.2038351179642355,0.994,0.0,0.00016227531433105468
|
119 |
+
timbre,boost_audio,amount_50,AmplitudeDomain,16.4761577803,16.432560164928436,0.9500892378091812,3.4276588045358656,0.9992142860889435,-4.2014829354461245,0.993,0.0,0.00017994236946105956
|
120 |
+
timbre,boost_audio,amount_60,AmplitudeDomain,16.476157811500002,16.432560512542725,0.9500892372727394,3.4276593123674393,0.9992142860889435,-4.2014829354461245,0.99,0.0,0.00015826892852783203
|
121 |
+
timbre,boost_audio,amount_70,AmplitudeDomain,16.4761578272,16.432560841560363,0.9500892372131348,3.42765957403183,0.9992142860889435,-4.2014829354461245,0.99,0.0,0.00018814897537231445
|
122 |
+
timbre,boost_audio,amount_80,AmplitudeDomain,16.476157802000003,16.432561099529266,0.9500892373323441,3.427659175157547,0.9991428575515747,-4.200306844187069,0.989,0.0,0.0001792111396789551
|
123 |
+
timbre,boost_audio,amount_90,AmplitudeDomain,16.4761578165,16.432561379909515,0.9500892374515534,3.4276590449810027,0.9990000004768371,-4.197954661668957,0.988,0.0,0.00019344234466552734
|
124 |
+
timbre,duck_audio,amount_10,AmplitudeDomain,16.476157802000003,16.43255474948883,0.9500892373323441,3.427659175157547,0.9997857143878937,-4.210891665518569,0.997,0.0,0.001498887300491333
|
125 |
+
timbre,duck_audio,amount_20,AmplitudeDomain,16.476157811500002,16.432552444934846,0.9500892372727394,3.4276593123674393,0.9998571429252624,-4.212067756777626,0.997,0.0,0.00014486479759216308
|
126 |
+
timbre,duck_audio,amount_30,AmplitudeDomain,16.476157826999998,16.432549079418184,0.9500892375707626,3.4276580410003663,0.9997857143878937,-4.210891665518569,0.997,0.0,0.0001369755268096924
|
127 |
+
timbre,duck_audio,amount_40,AmplitudeDomain,16.4761578408,16.432543994903565,0.9500892376303672,3.4276586334705352,0.9998571429252624,-4.212067756777626,0.998,0.0,0.00016264057159423828
|
128 |
+
timbre,duck_audio,amount_50,AmplitudeDomain,16.476157791700004,16.432535492420197,0.9500892373323441,3.427657922744751,0.9998571429252624,-4.212067756777626,0.998,0.0,0.00012160205841064453
|
129 |
+
timbre,duck_audio,amount_60,AmplitudeDomain,16.476157811500002,16.43251993227005,0.9500892372727394,3.4276593123674393,0.9998571429252624,-4.212067756777626,0.998,0.0,0.00018983912467956544
|
130 |
+
timbre,duck_audio,amount_70,AmplitudeDomain,16.4761578408,16.432486285686494,0.9500892376303672,3.4276586334705352,0.9998571429252624,-4.212067756777626,0.997,0.0,0.00013454771041870116
|
131 |
+
timbre,duck_audio,amount_80,AmplitudeDomain,16.476157811500002,16.432390098094942,0.9500892372727394,3.4276593123674393,0.9998571429252624,-4.212067756777626,0.989,0.0,0.00019002532958984375
|
132 |
+
timbre,duck_audio,amount_90,AmplitudeDomain,16.476157811500002,16.431870948314668,0.9500892372727394,3.4276593123674393,0.9974285726547241,-4.173388160581119,0.884,0.0,0.00016967225074768067
|
133 |
+
timbre,echo,volume_duration_0.1_0.1,TimeDomain,16.476888865999996,16.43294725751877,0.9500743228495121,3.5596070141792295,0.9992857146263122,-4.20265902670518,0.995,0.0,0.001397777795791626
|
134 |
+
timbre,echo,volume_duration_0.1_0.2,TimeDomain,16.4754676263,16.43207183456421,0.9501711184680461,3.525955931663513,0.9996428573131562,-4.208539483000459,0.993,0.0,0.00020249390602111817
|
135 |
+
timbre,echo,volume_duration_0.1_0.3,TimeDomain,16.475305199500003,16.4318633146286,0.950556410074234,3.5090483001470565,0.9996428573131562,-4.208539483000459,0.997,0.0,0.00017629504203796385
|
136 |
+
timbre,echo,volume_duration_0.1_0.4,TimeDomain,16.476508843099996,16.433030497550963,0.9501887465715408,3.5037299407720566,0.9995000002384186,-4.206187300482347,0.992,0.0,0.00018448781967163086
|
137 |
+
timbre,echo,volume_duration_0.1_0.5,TimeDomain,16.4759169998,16.43226329755783,0.9501423077583313,3.5043467466831206,0.9997142858505249,-4.209715574259514,0.997,0.0,0.00017330169677734375
|
138 |
+
timbre,echo,volume_duration_0.2_0.1,TimeDomain,16.4774757693,16.433310088157654,0.9493478109240532,3.5923489367961885,0.998714286327362,-4.193577173285581,0.984,0.0,0.00019740438461303712
|
139 |
+
timbre,echo,volume_duration_0.2_0.2,TimeDomain,16.4748500403,16.43169464969635,0.9501798659265042,3.5552480260133743,0.9995000002384186,-4.206187300482347,0.988,0.0,0.00015517807006835938
|
140 |
+
timbre,echo,volume_duration_0.2_0.3,TimeDomain,16.4745469756,16.431297974586485,0.9508844598829747,3.5371165473461152,0.9995000002384186,-4.206187300482347,0.992,0.0,0.00018958067893981933
|
141 |
+
timbre,echo,volume_duration_0.2_0.4,TimeDomain,16.4769068573,16.433581115722657,0.9512644701898098,3.524344115138054,0.9994285717010498,-4.205011209223291,0.991,0.0,0.00018399333953857423
|
142 |
+
timbre,echo,volume_duration_0.2_0.5,TimeDomain,16.475787644,16.432122776508333,0.9521464922726154,3.5318402943611145,0.9997142858505249,-4.209715574259514,0.995,0.0,0.00026514649391174317
|
143 |
+
timbre,echo,volume_duration_0.3_0.1,TimeDomain,16.477922816899998,16.43363698387146,0.948557292163372,3.607356920003891,0.9981428580284119,-4.184495319865983,0.979,0.0,0.00015439629554748536
|
144 |
+
timbre,echo,volume_duration_0.3_0.2,TimeDomain,16.4743457575,16.431440962314607,0.9490581220090389,3.5699120942354203,0.999071429014206,-4.199130752928013,0.984,0.0,0.00021511554718017578
|
145 |
+
timbre,echo,volume_duration_0.3_0.3,TimeDomain,16.4739395498,16.430893851757048,0.9508140445947647,3.5507304196357725,0.9992142860889435,-4.2014829354461245,0.99,0.0,0.00020188450813293457
|
146 |
+
timbre,echo,volume_duration_0.3_0.4,TimeDomain,16.477361857800002,16.43419595336914,0.9518607076704502,3.5290585030317305,0.9992142860889435,-4.2014829354461245,0.988,0.0,0.0002297060489654541
|
147 |
+
timbre,echo,volume_duration_0.3_0.5,TimeDomain,16.4758165262,16.432163279533388,0.9527445858120919,3.5416568248271942,0.9996428573131562,-4.208539483000459,0.995,0.0,0.00018866252899169922
|
148 |
+
timbre,echo,volume_duration_0.4_0.1,TimeDomain,16.4782518415,16.433923254489898,0.9469932383000851,3.615805200099945,0.9972857155799866,-4.170382224757314,0.968,0.0,0.00015276551246643067
|
149 |
+
timbre,echo,volume_duration_0.4_0.2,TimeDomain,16.473970978,16.431303465366362,0.94799847728014,3.579102786540985,0.9985714292526245,-4.19122499076747,0.98,0.0,0.00017437171936035157
|
150 |
+
timbre,echo,volume_duration_0.4_0.3,TimeDomain,16.4735002852,16.430648388385773,0.9503563130199909,3.559740610361099,0.9989285719394684,-4.1967785704099025,0.987,0.0,0.00019637227058410644
|
151 |
+
timbre,echo,volume_duration_0.4_0.4,TimeDomain,16.4778490628,16.434834991455077,0.952050401121378,3.530354287981987,0.9992142860889435,-4.2014829354461245,0.986,0.0,0.00017743229866027833
|
152 |
+
timbre,echo,volume_duration_0.4_0.5,TimeDomain,16.475984399100003,16.43235640144348,0.9531384029388428,3.5472861415147783,0.9996428573131562,-4.208539483000459,0.994,0.0,0.00015444469451904297
|
153 |
+
timbre,echo,volume_duration_0.5_0.1,TimeDomain,16.478494210199997,16.434169669628144,0.9458777547776699,3.619850592255592,0.9966428587436676,-4.159797403425813,0.953,0.0,0.00015747857093811036
|
154 |
+
timbre,echo,volume_duration_0.5_0.2,TimeDomain,16.4737265986,16.431264951705934,0.9463697646558284,3.586513218998909,0.9980000009536744,-4.181816260695024,0.972,0.0,0.00015909337997436522
|
155 |
+
timbre,echo,volume_duration_0.5_0.3,TimeDomain,16.4732275768,16.43054481267929,0.9497829223573208,3.5650632833242417,0.9986428577899933,-4.192074205373679,0.984,0.0,0.00015312838554382325
|
156 |
+
timbre,echo,volume_duration_0.5_0.4,TimeDomain,16.4783456511,16.435463206768034,0.9520021752417087,3.5277701199054716,0.999071429014206,-4.199130752928013,0.985,0.0,0.0001399543285369873
|
157 |
+
timbre,echo,volume_duration_0.5_0.5,TimeDomain,16.4762627385,16.43266440629959,0.9533396974205971,3.5502158360481264,0.9996428573131562,-4.208539483000459,0.989,0.0,0.00015445375442504883
|
158 |
+
timbre,highpass_filter,cutoff_freq_1000,AmplitudeDomain,12.3889061427,13.217602618217468,0.9329735818803311,3.2253190402984617,0.967000013768673,-3.7183567390983625,0.657,0.0,0.0001283726692199707
|
159 |
+
timbre,highpass_filter,cutoff_freq_1500,AmplitudeDomain,10.54692032474,12.006117494106293,0.9247581675350666,3.0398818677663804,0.9225714585185051,-3.1039839668799303,0.286,0.0,0.00013101744651794435
|
160 |
+
timbre,highpass_filter,cutoff_freq_2000,AmplitudeDomain,9.6849771018,11.579845222473145,0.9214992200732232,2.89998916888237,0.8761428955197335,-2.5656290259722954,0.111,0.0,0.00017052483558654784
|
161 |
+
timbre,highpass_filter,cutoff_freq_4000,AmplitudeDomain,7.888495396550001,11.31791073203087,0.9286024495959282,1.091416949033737,0.7624286114573479,-1.517476381607738,0.001,0.0,0.0001792454719543457
|
162 |
+
timbre,highpass_filter,cutoff_freq_500,AmplitudeDomain,15.345041325099999,15.53888392829895,0.9553232814371586,3.469923873066902,0.9936428601145745,-4.112238376423245,0.96,0.0,0.0013106286525726319
|
163 |
+
timbre,highpass_filter,cutoff_freq_8000,AmplitudeDomain,0.3563506357625,5.011519385789143e-07,0.7253111168146134,2.032082499504089,0.49485716454684736,-0.3321224178671162,0.0,0.0,0.0001466045379638672
|
164 |
+
timbre,identity,default,None,16.476157791700004,16.432556299686432,0.9500892373323441,3.427657922744751,0.9997857143878937,-4.210891665518569,0.996,0.0,0.001519716501235962
|
165 |
+
timbre,lowpass_filter,cutoff_freq_1000,AmplitudeDomain,18.0950391785,18.09421231889725,0.9608870418667793,3.884629855632782,0.7163571797609329,-1.203143556602777,0.0,0.0,0.00014201045036315918
|
166 |
+
timbre,lowpass_filter,cutoff_freq_1500,AmplitudeDomain,17.887179303200003,17.867012839317322,0.9571822667121888,3.8095764722824095,0.7873571841716767,-1.7183878009084614,0.01,0.0,0.00018918681144714354
|
167 |
+
timbre,lowpass_filter,cutoff_freq_2000,AmplitudeDomain,17.6439213299,17.61113205242157,0.9540757195353508,3.7471435346603394,0.8405714712142944,-2.1851615840254217,0.093,0.0,0.0001818873882293701
|
168 |
+
timbre,lowpass_filter,cutoff_freq_3000,AmplitudeDomain,17.2829348157,17.2381917552948,0.9518389447927474,3.647822267651558,0.918142887353897,-3.0633591366002064,0.489,0.0,0.0001688246726989746
|
169 |
+
timbre,lowpass_filter,cutoff_freq_4000,AmplitudeDomain,17.0122975019,16.962205876350403,0.951374426484108,3.578006113052368,0.968857156932354,-3.733040789773956,0.867,0.0,0.000171783447265625
|
170 |
+
timbre,lowpass_filter,cutoff_freq_500,AmplitudeDomain,17.4834598294,17.548346735954286,0.9627698853313923,3.8939410974979403,0.6449286028146743,-0.8192749738322862,0.0,0.0,0.001320693016052246
|
171 |
+
timbre,lowpass_filter,cutoff_freq_5000,AmplitudeDomain,16.8228256996,16.772962472438813,0.9504798774123192,3.52396496963501,0.998714286327362,-4.193577173285581,0.988,0.0,0.0001449892520904541
|
172 |
+
timbre,mp3_compression,bitrate_128k,Compression,11.9099903731,11.720055736541749,0.9229748222827912,3.1555028420686724,0.9993571431636811,-4.2038351179642355,0.993,0.0,7.854914665222168e-05
|
173 |
+
timbre,mp3_compression,bitrate_12k,Compression,11.9099903731,11.720055736541749,0.9229748222827912,3.1555028420686724,0.9993571431636811,-4.2038351179642355,0.993,0.0,0.0009676604270935058
|
174 |
+
timbre,mp3_compression,bitrate_24k,Compression,11.9099903731,11.720055736541749,0.9229748222827912,3.1555028420686724,0.9993571431636811,-4.2038351179642355,0.993,0.0,7.94980525970459e-05
|
175 |
+
timbre,mp3_compression,bitrate_256k,Compression,11.9099903731,11.720055736541749,0.9229748222827912,3.1555028420686724,0.9993571431636811,-4.2038351179642355,0.993,0.0,7.809638977050781e-05
|
176 |
+
timbre,mp3_compression,bitrate_32k,Compression,11.9099903731,11.720055736541749,0.9229748222827912,3.1555028420686724,0.9993571431636811,-4.2038351179642355,0.993,0.0,7.793617248535156e-05
|
177 |
+
timbre,mp3_compression,bitrate_64k,Compression,11.9099903731,11.720055736541749,0.9229748222827912,3.1555028420686724,0.9993571431636811,-4.2038351179642355,0.993,0.0,7.836747169494629e-05
|
178 |
+
timbre,pink_noise,noise_std_0.01,AmplitudeDomain,18.750365408999997,18.61252519416809,0.9463075894713402,4.04663741672039,0.9997142858505249,-4.209715574259514,0.994,0.0,0.0014480783939361571
|
179 |
+
timbre,pink_noise,noise_std_0.05,AmplitudeDomain,26.454524317000004,26.281986154556275,0.9845673467516899,4.2531668858528136,0.9937142885923386,-4.11557815021292,0.912,0.0,0.00014635562896728516
|
180 |
+
timbre,pink_noise,noise_std_0.1,AmplitudeDomain,31.059352192,30.936323825836183,0.9897545347809792,4.294112782716751,0.9612142997384071,-3.666086568980941,0.646,0.001,0.00012282681465148926
|
181 |
+
timbre,pink_noise,noise_std_0.2,AmplitudeDomain,36.224076567,36.10272550582886,0.992856247484684,4.330495083212853,0.8671428850293159,-2.6710550103336703,0.312,0.0,0.00012061047554016114
|
182 |
+
timbre,pink_noise,noise_std_0.3,AmplitudeDomain,39.726069321000004,39.56204014968872,0.9943212150335312,4.273126076459885,0.7972857458293438,-2.0475003748517273,0.152,0.0,0.00013987398147583007
|
183 |
+
timbre,pink_noise,noise_std_0.5,AmplitudeDomain,43.992101303000005,43.78595704078674,0.9955255471467972,4.225643427610398,0.7298571752682328,-1.5116476222879176,0.069,0.0,0.00013651061058044434
|
184 |
+
timbre,pink_noise,noise_std_1.0,AmplitudeDomain,50.337515676,50.14357429504395,0.9976202115416527,3.730060446023941,0.6000714557170868,-0.7350843128972593,0.011,0.0,0.0001279122829437256
|
185 |
+
timbre,random_noise,noise_std_0.001,AmplitudeDomain,11.295707323384999,10.413323044020682,0.377068773843348,2.952757246375084,0.8917143127024174,-2.8749805216932005,0.338,0.0,0.0014898431301116942
|
186 |
+
timbre,random_noise,noise_std_0.01,AmplitudeDomain,0.03452341115050001,-12.874849083806389,0.125071030641353,1.7305930228233337,0.5685714549869298,-0.588419885989292,0.002,0.0,0.0001542823314666748
|
187 |
+
timbre,random_noise,noise_std_0.05,AmplitudeDomain,-2.60497823763,-36.50786865247786,0.049413840422686914,1.1907869672775269,0.5037143079042434,-0.3422142338361114,0.0,0.0,0.0001439816951751709
|
188 |
+
timbre,random_noise,noise_std_0.1,AmplitudeDomain,-2.88473829582,-45.37106685686111,0.026091459776620467,1.2559098212718964,0.4975714508071542,-0.3421954483512061,0.0,0.0,0.0001649024486541748
|
189 |
+
timbre,random_noise,noise_std_0.3,AmplitudeDomain,-2.9950783563999996,-54.03764498519897,0.0076794895601397005,1.4438213286399841,0.5025714517310261,-0.3479706071860989,0.0,0.0,0.00015874695777893066
|
190 |
+
timbre,shush,fraction_0.001,AmplitudeDomain,16.476391343299998,16.43279865217209,0.9500964255332947,3.4283130762577056,0.9997857143878937,-4.210891665518569,0.996,0.0,0.0015447516441345216
|
191 |
+
timbre,shush,fraction_0.01,AmplitudeDomain,16.478015169,16.434420325279238,0.9509692361950874,3.433981973052025,0.9997857143878937,-4.210891665518569,0.996,0.0,0.000135159969329834
|
192 |
+
timbre,shush,fraction_0.1,AmplitudeDomain,16.4983274778,16.455008231163024,0.9533156640529633,3.5136044718027115,0.998714286327362,-4.193250296632733,0.986,0.0,0.00013392043113708495
|
193 |
+
timbre,shush,fraction_0.3,AmplitudeDomain,-0.2674551926851,4.961682896956801,0.3423656065787363,1.4527076202630997,0.9680000143647194,-3.7214207546902345,0.594,0.0,0.0001333017349243164
|
194 |
+
timbre,smooth,window_size_10,AmplitudeDomain,17.90491797,17.912950060367585,0.9550392818152904,3.7468820136785506,0.9350000272393226,-3.255193716559153,0.449,0.0,0.00016261887550354003
|
195 |
+
timbre,smooth,window_size_2,AmplitudeDomain,17.0162806853,16.968479553699492,0.9516458397507668,3.530003172278404,0.9992142860889435,-4.2014829354461245,0.995,0.0,0.0013991241455078125
|
196 |
+
timbre,smooth,window_size_20,AmplitudeDomain,17.4136449475,17.483432758808135,0.9520749304890632,3.6988526878356933,0.851000042617321,-2.29187360453453,0.189,0.0,0.00014120149612426757
|
197 |
+
timbre,smooth,window_size_4,AmplitudeDomain,17.579357595599998,17.547168019771576,0.9541191861629487,3.6500646693706513,0.9857142923474311,-3.988307748299227,0.837,0.0,0.00013007664680480957
|
198 |
+
timbre,smooth,window_size_40,AmplitudeDomain,16.5064790934,16.69157867383957,0.9354435525238514,3.4681881902217864,0.7810714699029923,-1.6615191799860711,0.029,0.0,0.00013765335083007813
|
199 |
+
timbre,smooth,window_size_8,AmplitudeDomain,17.8993405569,17.895600038528443,0.9551310976445675,3.7342724434137344,0.9585714468955994,-3.5795904720442375,0.472,0.0,0.00013924717903137206
|
200 |
+
timbre,speed,speed_factor_0.5,TimeDomain,16.5174647316,16.47231732940674,0.9324244644641876,3.1603474576473234,0.5057143080830574,-0.35789276362076017,0.0,0.0,0.0012461977005004882
|
201 |
+
timbre,speed,speed_factor_0.6,TimeDomain,16.5170575742,16.471979776382447,0.9381562359929084,3.214474179148674,0.48785716319084166,-0.2929926834498275,0.0,0.0,0.00017672252655029296
|
202 |
+
timbre,speed,speed_factor_0.7,TimeDomain,16.516645131599997,16.471672634124754,0.9422999610304832,3.2351451125144957,0.526142880268395,-0.3958947636807436,0.0,0.0,0.00015818095207214354
|
203 |
+
timbre,speed,speed_factor_0.8,TimeDomain,16.5162324932,16.47138735961914,0.9458739325404167,3.2535631746053695,0.48421430636942386,-0.28933162338074053,0.0,0.0,0.00017274284362792967
|
204 |
+
timbre,speed,speed_factor_0.9,TimeDomain,16.5158135883,16.4710847196579,0.9486505846381188,3.324016175031662,0.5164285944700241,-0.3808611688388628,0.0,0.0,0.00016758155822753907
|
205 |
+
timbre,speed,speed_factor_1.0,TimeDomain,16.476157791700004,16.432556299686432,0.9500892373323441,3.427657922744751,0.9997857143878937,-4.210891665518569,0.996,0.0,0.00018973517417907715
|
206 |
+
timbre,speed,speed_factor_1.1,TimeDomain,16.5661011474,16.519954078674317,0.9501869044303894,3.4475234587192536,0.5247143094018102,-0.39761516576396766,0.0,0.0,0.0009930143356323242
|
207 |
+
timbre,speed,speed_factor_1.2,TimeDomain,16.619316855500003,16.57184512233734,0.9494843310713768,3.4491779897212984,0.4662143059670925,-0.26877535292684274,0.0,0.0,0.0006234395503997803
|
208 |
+
timbre,speed,speed_factor_1.25,TimeDomain,16.6473922153,16.599316322803496,0.948842634677887,3.4521795535087585,0.4732857346907258,-0.268957995592809,0.0,0.0,0.0002450401782989502
|
209 |
+
timbre,speed,speed_factor_1.3,TimeDomain,16.6759799803,16.627471359729768,0.9478925923109055,3.459662773489952,0.4932143063247204,-0.3185999783565413,0.0,0.0,0.00021885895729064942
|
210 |
+
timbre,speed,speed_factor_1.4,TimeDomain,16.733686575199997,16.684401342868806,0.9458993269205094,3.460218893647194,0.4991428781747818,-0.3365441996992098,0.0,0.0,0.00026358461380004885
|
211 |
+
timbre,speed,speed_factor_1.5,TimeDomain,16.790225829700002,16.740480814933775,0.9441303115487099,3.4645172936916353,0.4772143065929413,-0.2796409968026199,0.0,0.0,0.00022157955169677733
|
212 |
+
timbre,speed_julius,speed_1.25,TimeDomain,16.5958740005,16.53707978606224,0.948833370923996,3.3836678898334505,0.4759285911023617,-0.2694328683279484,0.0,0.0,0.0006680920124053955
|
213 |
+
timbre,updownresample,default,TimeDomain,16.514515669700003,16.470059605121612,0.9500892140865326,3.4465828204154967,0.9996428573131562,-4.208539483000459,0.995,0.0,0.0012176036834716797
|
214 |
+
wavmark_fast,aac_compression,bitrate_128k,Compression,-3.0239647537,-29.584131747245788,0.38276558397710325,2.581820041298866,1.0,-4.816479930623699,1.0,0.0,0.08817680072784424
|
215 |
+
wavmark_fast,aac_compression,bitrate_12k,Compression,-3.0136193905,-28.838835165023802,0.3963482639789581,2.491404357433319,0.6130625,-0.7237703936007571,0.999,0.0,0.08814441227912903
|
216 |
+
wavmark_fast,aac_compression,bitrate_24k,Compression,-3.0166343160999998,-29.37460724067688,0.39459260292351245,2.400919094324112,0.9998125,-4.8127885838595645,1.0,0.0,0.08837447929382324
|
217 |
+
wavmark_fast,aac_compression,bitrate_256k,Compression,-3.0239647537,-29.584131747245788,0.38276558397710325,2.581820041298866,1.0,-4.816479930623699,1.0,0.0,0.08814734935760499
|
218 |
+
wavmark_fast,aac_compression,bitrate_32k,Compression,-3.0181963468,-29.446647537231446,0.3906984763890505,2.452804540157318,1.0,-4.816479930623699,1.0,0.0,0.08808825302124024
|
219 |
+
wavmark_fast,aac_compression,bitrate_64k,Compression,-3.0239084333,-29.610465297698976,0.38280686101317407,2.582824453353882,1.0,-4.816479930623699,1.0,0.0,0.08815125918388367
|
220 |
+
wavmark_fast,bandpass_filter,default,AmplitudeDomain,25.9675483265,25.964552648782732,0.9154103935658932,2.82129727602005,1.0,-4.816479930623699,1.0,0.0,0.0885802025794983
|
221 |
+
wavmark_fast,boost_audio,amount_10,AmplitudeDomain,27.516191957000004,27.532402770996093,0.8799754661619663,2.5688794403076174,1.0,-4.816479930623699,1.0,0.0,0.08865707325935364
|
222 |
+
wavmark_fast,boost_audio,amount_20,AmplitudeDomain,27.5161919565,27.53241041135788,0.8799754665195942,2.568895636558533,1.0,-4.816479930623699,1.0,0.0,0.08870701789855957
|
223 |
+
wavmark_fast,boost_audio,amount_30,AmplitudeDomain,27.516191952,27.53241644859314,0.8799754664599896,2.5688628710508348,1.0,-4.816479930623699,1.0,0.0,0.08883182978630066
|
224 |
+
wavmark_fast,boost_audio,amount_40,AmplitudeDomain,27.516191989499998,27.53242129898071,0.8799754666388034,2.568866145849228,1.0,-4.816479930623699,1.0,0.0,0.08860247206687927
|
225 |
+
wavmark_fast,boost_audio,amount_50,AmplitudeDomain,27.516191986,27.532425148963927,0.8799754668474198,2.5688517018556594,1.0,-4.816479930623699,1.0,0.0,0.08860829997062683
|
226 |
+
wavmark_fast,boost_audio,amount_60,AmplitudeDomain,27.5161919705,27.53242826271057,0.8799754665195942,2.5688586049079896,1.0,-4.816479930623699,1.0,0.0,0.09042973470687866
|
227 |
+
wavmark_fast,boost_audio,amount_70,AmplitudeDomain,27.516191923999997,27.53243091726303,0.879975466221571,2.568846869945526,1.0,-4.816479930623699,1.0,0.0,0.09043652915954589
|
228 |
+
wavmark_fast,boost_audio,amount_80,AmplitudeDomain,27.516191954499998,27.532433040618898,0.8799754663705825,2.5688548616170883,1.0,-4.816479930623699,1.0,0.0,0.09055806040763854
|
229 |
+
wavmark_fast,boost_audio,amount_90,AmplitudeDomain,27.5161920005,27.532434952259063,0.8799754662513732,2.5688593499660493,1.0,-4.816479930623699,1.0,0.0,0.09043293166160583
|
230 |
+
wavmark_fast,duck_audio,amount_10,AmplitudeDomain,27.516191954499998,27.532378730773925,0.8799754663705825,2.5688548616170883,1.0,-4.816479930623699,1.0,0.0,0.08878700590133667
|
231 |
+
wavmark_fast,duck_audio,amount_20,AmplitudeDomain,27.5161919705,27.532359539031983,0.8799754665195942,2.5688586049079896,1.0,-4.816479930623699,1.0,0.0,0.08885055422782898
|
232 |
+
wavmark_fast,duck_audio,amount_30,AmplitudeDomain,27.516191989499998,27.53233152961731,0.8799754666388034,2.568866145849228,1.0,-4.816479930623699,1.0,0.0,0.08884502911567688
|
233 |
+
wavmark_fast,duck_audio,amount_40,AmplitudeDomain,27.5161919565,27.532288292884825,0.8799754665195942,2.568895636558533,1.0,-4.816479930623699,1.0,0.0,0.088590487241745
|
234 |
+
wavmark_fast,duck_audio,amount_50,AmplitudeDomain,27.5161919425,27.53221657037735,0.8799754661619663,2.568849658727646,1.0,-4.816479930623699,1.0,0.0,0.08893462204933167
|
235 |
+
wavmark_fast,duck_audio,amount_60,AmplitudeDomain,27.5161919705,27.53208452796936,0.8799754665195942,2.5688586049079896,1.0,-4.816479930623699,1.0,0.0,0.08874498963356019
|
236 |
+
wavmark_fast,duck_audio,amount_70,AmplitudeDomain,27.5161919565,27.531799483776094,0.8799754665195942,2.568895636558533,1.0,-4.816479930623699,1.0,0.0,0.08887641835212708
|
237 |
+
wavmark_fast,duck_audio,amount_80,AmplitudeDomain,27.5161919705,27.53098506832123,0.8799754665195942,2.5688586049079896,1.0,-4.816479930623699,1.0,0.0,0.09020740270614624
|
238 |
+
wavmark_fast,duck_audio,amount_90,AmplitudeDomain,27.5161919705,27.52659025478363,0.8799754665195942,2.5688586049079896,0.994,-4.702346747005388,1.0,0.0,0.0902538468837738
|
239 |
+
wavmark_fast,echo,volume_duration_0.1_0.1,TimeDomain,27.524285670999998,27.541017834663393,0.8840575933158398,2.6458539345264436,1.0,-4.816479930623699,1.0,0.0,0.08868211102485657
|
240 |
+
wavmark_fast,echo,volume_duration_0.1_0.2,TimeDomain,27.566231515400002,27.583044407367705,0.8933159874975681,2.699273901939392,1.0,-4.816479930623699,1.0,0.0,0.08856785130500794
|
241 |
+
wavmark_fast,echo,volume_duration_0.1_0.3,TimeDomain,27.577555267399998,27.59432523918152,0.8957806061804294,2.7141821303367615,1.0,-4.816479930623699,1.0,0.0,0.08845035076141357
|
242 |
+
wavmark_fast,echo,volume_duration_0.1_0.4,TimeDomain,27.600956147599998,27.617666400432586,0.9037640126645565,2.7519680429697035,1.0,-4.816479930623699,1.0,0.0,0.09100225114822388
|
243 |
+
wavmark_fast,echo,volume_duration_0.1_0.5,TimeDomain,27.612090001800002,27.628743485450745,0.9115352505147457,2.8021532307863235,1.0,-4.816479930623699,1.0,0.0,0.09080295062065125
|
244 |
+
wavmark_fast,echo,volume_duration_0.2_0.1,TimeDomain,27.501343311999996,27.5185975651741,0.8814387585520744,2.665764300942421,1.0,-4.816479930623699,1.0,0.0,0.09089499640464782
|
245 |
+
wavmark_fast,echo,volume_duration_0.2_0.2,TimeDomain,27.5575769033,27.575004114151,0.8927313917577266,2.7210300298929213,1.0,-4.816479930623699,1.0,0.0,0.09130070710182189
|
246 |
+
wavmark_fast,echo,volume_duration_0.2_0.3,TimeDomain,27.569618018999996,27.58698053455353,0.8963168503046036,2.736406337976456,0.999875,-4.814019032780943,1.0,0.0,0.09131835770606994
|
247 |
+
wavmark_fast,echo,volume_duration_0.2_0.4,TimeDomain,27.5903006833,27.607569017410277,0.9049101991057396,2.7763909131288527,1.0,-4.816479930623699,1.0,0.0,0.09129069256782532
|
248 |
+
wavmark_fast,echo,volume_duration_0.2_0.5,TimeDomain,27.592358204199996,27.60952584695816,0.9130147606730461,2.825483720779419,0.9998125,-4.8127885838595645,1.0,0.0,0.09068503451347351
|
249 |
+
wavmark_fast,echo,volume_duration_0.3_0.1,TimeDomain,27.4805339695,27.4982580037117,0.8778310561478138,2.6736386029720305,1.0,-4.816479930623699,1.0,0.0,0.09059293198585511
|
250 |
+
wavmark_fast,echo,volume_duration_0.3_0.2,TimeDomain,27.5492891267,27.567269492149354,0.8904604187309741,2.7312704581022262,1.0,-4.816479930623699,1.0,0.0,0.09075461196899413
|
251 |
+
wavmark_fast,echo,volume_duration_0.3_0.3,TimeDomain,27.5620804852,27.579976838588713,0.894378238350153,2.7472647281885147,0.998875,-4.7943318500388905,1.0,0.0,0.0909632487297058
|
252 |
+
wavmark_fast,echo,volume_duration_0.3_0.4,TimeDomain,27.580570236699998,27.59834270334244,0.9032584207952022,2.787114468455315,0.9985,-4.787273333786221,1.0,0.0,0.09124559450149536
|
253 |
+
wavmark_fast,echo,volume_duration_0.3_0.5,TimeDomain,27.5746809995,27.592315183639528,0.9113510656952858,2.8333127844333648,0.999125,-4.799253645724403,1.0,0.0,0.09088137245178222
|
254 |
+
wavmark_fast,echo,volume_duration_0.4_0.1,TimeDomain,27.462666901699997,27.480789537906645,0.8732888046205044,2.6777812966108323,1.0,-4.816479930623699,1.0,0.0,0.09105049014091492
|
255 |
+
wavmark_fast,echo,volume_duration_0.4_0.2,TimeDomain,27.541757584,27.56020768547058,0.8870682150125504,2.7357111349105834,1.0,-4.816479930623699,1.0,0.0,0.09077500176429748
|
256 |
+
wavmark_fast,echo,volume_duration_0.4_0.3,TimeDomain,27.555289886399997,27.573639960289,0.8914580954611302,2.752654785990715,0.9954375,-4.727305513914286,1.0,0.0,0.09096633315086365
|
257 |
+
wavmark_fast,echo,volume_duration_0.4_0.4,TimeDomain,27.5721543382,27.59035674715042,0.900051540017128,2.7921111754179,0.9935,-4.690009711337596,1.0,0.0,0.09093197631835938
|
258 |
+
wavmark_fast,echo,volume_duration_0.4_0.5,TimeDomain,27.5596958695,27.577730180740357,0.908512399405241,2.8366816643476485,0.99575,-4.733133581245577,1.0,0.0,0.08854569101333618
|
259 |
+
wavmark_fast,echo,volume_duration_0.5_0.1,TimeDomain,27.4481136322,27.466554978847505,0.8679397057294845,2.681022644519806,1.0,-4.816479930623699,1.0,0.0,0.0886958065032959
|
260 |
+
wavmark_fast,echo,volume_duration_0.5_0.2,TimeDomain,27.535223799400004,27.55404946899414,0.8827894394695759,2.737868946313858,0.999875,-4.814019032780943,1.0,0.0,0.08850848984718322
|
261 |
+
wavmark_fast,echo,volume_duration_0.5_0.3,TimeDomain,27.549454773500003,27.568168563842775,0.887516017705202,2.7568004469871523,0.9843125,-4.514320556304592,1.0,0.0,0.088643399477005
|
262 |
+
wavmark_fast,echo,volume_duration_0.5_0.4,TimeDomain,27.565240688000003,27.583789613723756,0.8964603414833545,2.793514140844345,0.9815625,-4.46374675379555,1.0,0.0,0.09031139683723449
|
263 |
+
wavmark_fast,echo,volume_duration_0.5_0.5,TimeDomain,27.5476580584,27.566016167640687,0.9047833929657936,2.836442997813225,0.987125,-4.567745694113013,1.0,0.0,0.09022047114372253
|
264 |
+
wavmark_fast,highpass_filter,cutoff_freq_1000,AmplitudeDomain,21.2024263659,21.148077213048936,0.9017314867079258,2.5805401233434675,1.0,-4.816479930623699,1.0,0.0,0.0886313784122467
|
265 |
+
wavmark_fast,highpass_filter,cutoff_freq_1500,AmplitudeDomain,18.645377125,18.55308524119854,0.8856204532980919,2.44643310379982,1.0,-4.816479930623699,1.0,0.0,0.08848265075683594
|
266 |
+
wavmark_fast,highpass_filter,cutoff_freq_2000,AmplitudeDomain,17.6034115305,17.494367447853087,0.8807472125589848,2.3517225874662397,1.0,-4.816479930623699,1.0,0.0,0.09026919269561767
|
267 |
+
wavmark_fast,highpass_filter,cutoff_freq_4000,AmplitudeDomain,16.6602862339,16.54178469967842,0.9279950231015682,1.1026383196115495,0.943875,-3.787374925265207,1.0,0.0,0.09013792753219604
|
268 |
+
wavmark_fast,highpass_filter,cutoff_freq_500,AmplitudeDomain,25.3813318158,25.371826104164125,0.9154127485752106,2.698294492125511,1.0,-4.816479930623699,1.0,0.0,0.08857030558586121
|
269 |
+
wavmark_fast,highpass_filter,cutoff_freq_8000,AmplitudeDomain,5.555310887605001,7.217000293167075e-07,0.7817437274307013,1.945168897151947,0.494625,-0.3263049042425274,0.0,0.0,1.4171658978462218
|
270 |
+
wavmark_fast,identity,default,None,27.5161919425,27.53239252090454,0.8799754661619663,2.568849658727646,1.0,-4.816479930623699,1.0,0.0,0.08875872254371643
|
271 |
+
wavmark_fast,lowpass_filter,cutoff_freq_1000,AmplitudeDomain,31.720931314,31.76104567909241,0.8906444782018661,3.0511439764499664,0.494625,-0.3263049042425274,0.0,0.0,1.3864813055992127
|
272 |
+
wavmark_fast,lowpass_filter,cutoff_freq_1500,AmplitudeDomain,31.6369388482,31.673927229881286,0.8907409076690673,2.9622697180509565,0.494625,-0.3263049042425274,0.0,0.0,1.4180616164207458
|
273 |
+
wavmark_fast,lowpass_filter,cutoff_freq_2000,AmplitudeDomain,30.783575996499998,30.815733229637146,0.885975309073925,2.865707051753998,0.5415,-0.4630163086180511,0.639,0.0,0.13272201824188232
|
274 |
+
wavmark_fast,lowpass_filter,cutoff_freq_3000,AmplitudeDomain,29.387495134,29.413431708812713,0.8804419561624527,2.7700017148256304,0.9615625,-4.101350142194335,1.0,0.0,0.09026117467880249
|
275 |
+
wavmark_fast,lowpass_filter,cutoff_freq_4000,AmplitudeDomain,28.482229111000002,28.50468068218231,0.8806697332262993,2.704656456589699,1.0,-4.816479930623699,1.0,0.0,0.09017289566993714
|
276 |
+
wavmark_fast,lowpass_filter,cutoff_freq_500,AmplitudeDomain,30.031054337500002,30.08408983898163,0.8954042921662331,2.9322809007167816,0.494625,-0.3263049042425274,0.0,0.0,1.38625483417511
|
277 |
+
wavmark_fast,lowpass_filter,cutoff_freq_5000,AmplitudeDomain,28.1069177095,28.127418962955474,0.8802223254442215,2.6589737058877945,1.0,-4.816479930623699,1.0,0.0,0.09029996490478516
|
278 |
+
wavmark_fast,mp3_compression,bitrate_128k,Compression,14.8988312913,14.812677114486695,0.864026338070631,2.358161727428436,1.0,-4.816479930623699,1.0,0.0,0.08818099975585937
|
279 |
+
wavmark_fast,mp3_compression,bitrate_12k,Compression,14.8988312913,14.812677114486695,0.864026338070631,2.358161727428436,1.0,-4.816479930623699,1.0,0.0,0.08809084677696229
|
280 |
+
wavmark_fast,mp3_compression,bitrate_24k,Compression,14.8988312913,14.812677114486695,0.864026338070631,2.358161727428436,1.0,-4.816479930623699,1.0,0.0,0.08838754105567932
|
281 |
+
wavmark_fast,mp3_compression,bitrate_256k,Compression,14.8988312913,14.812677114486695,0.864026338070631,2.358161727428436,1.0,-4.816479930623699,1.0,0.0,0.08811200547218323
|
282 |
+
wavmark_fast,mp3_compression,bitrate_32k,Compression,14.8988312913,14.812677114486695,0.864026338070631,2.358161727428436,1.0,-4.816479930623699,1.0,0.0,0.08805549240112305
|
283 |
+
wavmark_fast,mp3_compression,bitrate_64k,Compression,14.8988312913,14.812677114486695,0.864026338070631,2.358161727428436,1.0,-4.816479930623699,1.0,0.0,0.088096449136734
|
284 |
+
wavmark_fast,pink_noise,noise_std_0.01,AmplitudeDomain,29.114010249,29.090851301193236,0.8568862896561623,3.712512553930283,1.0,-4.816479930623699,1.0,0.0,0.08876974654197693
|
285 |
+
wavmark_fast,pink_noise,noise_std_0.05,AmplitudeDomain,35.430563543,35.33188851356506,0.9814756003022194,4.345211743354797,0.98775,-4.591190832468109,1.0,0.0,0.08910666799545289
|
286 |
+
wavmark_fast,pink_noise,noise_std_0.1,AmplitudeDomain,39.941674395,39.81698440551758,0.9934460526108742,4.458491499662399,0.87775,-3.370124948399979,0.836,0.0,0.19984569144248962
|
287 |
+
wavmark_fast,pink_noise,noise_std_0.2,AmplitudeDomain,45.177280677000006,45.03576000213623,0.9976350783109665,4.421470484852791,0.6665,-1.4840606020765565,0.42,0.0,0.37571126675605776
|
288 |
+
wavmark_fast,pink_noise,noise_std_0.3,AmplitudeDomain,48.462675536,48.315087512969974,0.9986910640001297,4.3329127745628355,0.613125,-1.042015670173581,0.307,0.0,0.43782227802276613
|
289 |
+
wavmark_fast,pink_noise,noise_std_0.5,AmplitudeDomain,52.744236228,52.592215824127194,0.9993816055655479,4.045773741722107,0.5525,-0.6211334253526201,0.167,0.001,0.4985783698558807
|
290 |
+
wavmark_fast,pink_noise,noise_std_1.0,AmplitudeDomain,58.68570788299999,58.531253875732425,0.9997819685339928,3.4576956421136855,0.517625,-0.42437191114944767,0.048,0.002,0.485085884809494
|
291 |
+
wavmark_fast,random_noise,noise_std_0.001,AmplitudeDomain,15.506113649875,15.045818018853664,0.5280715150088072,3.284544333100319,0.5906875,-1.0479354555782865,0.291,0.0,0.6326981585025787
|
292 |
+
wavmark_fast,random_noise,noise_std_0.01,AmplitudeDomain,1.13390355522725,-8.599618325842544,0.24520299952846836,1.8904775412082673,0.51,-0.3761086541193674,0.033,0.002,1.1560351574420928
|
293 |
+
wavmark_fast,random_noise,noise_std_0.05,AmplitudeDomain,-2.3634238741586002,-31.342779673033977,0.09529843601463289,1.307384011030197,0.503125,-0.3498562192463146,0.239,0.218,0.3834023678302765
|
294 |
+
wavmark_fast,random_noise,noise_std_0.1,AmplitudeDomain,-2.7917941987159995,-40.79194270884991,0.05006658700392109,1.4100552792549133,0.501125,-0.3529029697603398,0.181,0.196,0.48062926411628726
|
295 |
+
wavmark_fast,random_noise,noise_std_0.3,AmplitudeDomain,-2.9815351007,-50.30239683532715,0.013138370981485422,1.6247414025068283,0.494625,-0.3263049042425274,0.0,0.0,1.418356606721878
|
296 |
+
wavmark_fast,shush,fraction_0.001,AmplitudeDomain,27.5165250543,27.53272404575348,0.8799754357337952,2.5687240823507307,1.0,-4.816479930623699,1.0,0.0,0.08870564031600953
|
297 |
+
wavmark_fast,shush,fraction_0.01,AmplitudeDomain,27.5189073053,27.535099514961242,0.8800164567232132,2.5564408214092254,1.0,-4.816479930623699,1.0,0.0,0.08864747047424316
|
298 |
+
wavmark_fast,shush,fraction_0.1,AmplitudeDomain,27.622284988,27.638639117717744,0.8862961289286614,2.587128930091858,1.0,-4.816479930623699,1.0,0.0,0.08883126616477967
|
299 |
+
wavmark_fast,shush,fraction_0.3,AmplitudeDomain,27.259563089877,27.283736191131176,0.8204946999102831,2.3930876450538636,0.7200625,-1.3646844660989228,1.0,0.0,0.379479971408844
|
300 |
+
wavmark_fast,smooth,window_size_10,AmplitudeDomain,31.0919440185,31.135175099372862,0.8747475103139878,2.821490167140961,0.8280625,-2.28602158475001,1.0,0.0,0.09047648787498475
|
301 |
+
wavmark_fast,smooth,window_size_2,AmplitudeDomain,28.6444922122,28.667367396354674,0.8807354097664356,2.6523767989873885,1.0,-4.816479930623699,1.0,0.0,0.08857663202285766
|
302 |
+
wavmark_fast,smooth,window_size_20,AmplitudeDomain,29.634425914499996,29.693780376434326,0.8684602085053921,2.6467681522369384,0.5341875,-0.46475609049727157,0.137,0.0,0.6983446185588836
|
303 |
+
wavmark_fast,smooth,window_size_4,AmplitudeDomain,30.3493929717,30.380771122455595,0.8806597226858139,2.7472589781284333,0.9984375,-4.7857187075892424,1.0,0.0,0.08867331433296204
|
304 |
+
wavmark_fast,smooth,window_size_40,AmplitudeDomain,26.871238839500002,26.960000593185423,0.8579617601335049,2.314035158753395,0.494625,-0.3263049042425274,0.0,0.0,1.0981106486320495
|
305 |
+
wavmark_fast,smooth,window_size_8,AmplitudeDomain,31.208818378999997,31.24925317287445,0.8774199251830578,2.822040607571602,0.9504375,-3.9362251589039032,1.0,0.0,0.08852027988433837
|
306 |
+
wavmark_fast,speed,speed_factor_0.5,TimeDomain,28.1901025185,28.20679905414581,0.9049324025213719,2.9108156719207763,0.49825,-0.339774497623986,0.007,0.0,0.7194670519828796
|
307 |
+
wavmark_fast,speed,speed_factor_0.6,TimeDomain,28.0440894165,28.0623152885437,0.9086620480418205,2.910453072786331,0.4948125,-0.3324386791219861,0.998,0.0,0.0884519817829132
|
308 |
+
wavmark_fast,speed,speed_factor_0.7,TimeDomain,27.926171525900003,27.943957964897155,0.9081884962022304,2.874184755682945,0.5024375,-0.3547021369802111,0.0,0.0,1.3884644067287446
|
309 |
+
wavmark_fast,speed,speed_factor_0.8,TimeDomain,27.7809023547,27.798263434410096,0.8977225870788097,2.7533165649175646,0.498,-0.3480868406790924,0.081,0.0,0.36317251896858216
|
310 |
+
wavmark_fast,speed,speed_factor_0.9,TimeDomain,27.7008738179,27.71787504196167,0.8934222210049629,2.6862181518077852,0.596875,-0.6664176724611368,1.0,0.0,0.08844751858711243
|
311 |
+
wavmark_fast,speed,speed_factor_1.0,TimeDomain,27.5161919425,27.53239252090454,0.8799754661619663,2.568849658727646,1.0,-4.816479930623699,1.0,0.0,0.08832948589324952
|
312 |
+
wavmark_fast,speed,speed_factor_1.1,TimeDomain,27.671367892499998,27.68876439523697,0.883370516359806,2.57184674346447,0.946875,-3.8539937810091516,1.0,0.0,0.17532082295417786
|
313 |
+
wavmark_fast,speed,speed_factor_1.2,TimeDomain,27.766258702800002,27.78437978363037,0.8854942656457424,2.554588121533394,0.4954375,-0.33650641742439225,0.0,0.0,0.15670745301246644
|
314 |
+
wavmark_fast,speed,speed_factor_1.25,TimeDomain,27.8131094835,27.831580666065214,0.8854607383906842,2.546125455498695,0.4923125,-0.342012530095483,0.738,0.0,0.07111974310874938
|
315 |
+
wavmark_fast,speed,speed_factor_1.3,TimeDomain,27.8631499716,27.881977015018464,0.8858497027754784,2.5541522566080093,0.4979375,-0.33760000162351866,0.0,0.0,0.9777826814651489
|
316 |
+
wavmark_fast,speed,speed_factor_1.4,TimeDomain,27.9583134345,27.9778191075325,0.8866623947322368,2.5593534524440766,0.492,-0.32053156941356836,0.0,0.0,0.8917198030948639
|
317 |
+
wavmark_fast,speed,speed_factor_1.5,TimeDomain,28.0513233438,28.071436262607573,0.8869549765884877,2.537753090262413,0.4853125,-0.3063867783474745,0.953,0.0,0.053572376012802125
|
318 |
+
wavmark_fast,speed_julius,speed_1.25,TimeDomain,27.8129970023,27.831126385211945,0.8863002945482731,2.542216213107109,0.4811875,-0.3057716971899371,0.78,0.0,0.08994231629371643
|
319 |
+
wavmark_fast,updownresample,default,TimeDomain,27.573544741099997,27.590200270175934,0.8799759677350522,2.5800678007602693,1.0,-4.816479930623699,1.0,0.0,0.08841353917121887
|
backend/data/sav_val_full_video_attacks_variations.csv
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
strength,model,attack,bit_acc,log10_p_value,TPR,FPR,watermark_det_score,vmaf
|
2 |
+
10,videoseal_0.0,Rotate,0.9381510528425375,-17.10844228502611,0.23958333333333334,0.0,0.923828125,
|
3 |
+
90,videoseal_0.0,Rotate,0.5110677148525914,-0.4356897813412122,0.0,0.0,0.5553385416666666,
|
4 |
+
0.55,videoseal_0.0,Resize,0.9891927173982064,-22.584066906143118,0.9375,0.0,0.99609375,
|
5 |
+
0.71,videoseal_0.0,Resize,0.9894531350582838,-22.61095164976307,0.9375,0.0,0.99609375,
|
6 |
+
0.55,videoseal_0.0,Crop,0.7180989719927311,-5.084022903082193,0.0,0.0,0.7161458333333334,
|
7 |
+
0.71,videoseal_0.0,Crop,0.9520833479861418,-18.83922559512217,0.5416666666666666,0.0,0.9563802083333334,
|
8 |
+
0.5,videoseal_0.0,Brightness,0.9877604258557161,-22.39911645779745,0.8020833333333334,0.0,0.9876302083333334,0.6847622812499999
|
9 |
+
1.5,videoseal_0.0,Brightness,0.9782552175844709,-21.862761259598727,0.8333333333333334,0.0,0.9837239583333334,91.48575708333333
|
10 |
+
0.5,videoseal_0.0,Contrast,0.9880208428949118,-22.43751910161488,0.8333333333333334,0.0,0.9895833333333334,0.6737453020833334
|
11 |
+
1.5,videoseal_0.0,Contrast,0.9828125089406967,-22.060089082185865,0.8645833333333334,0.0,0.9876302083333334,99.27316893749999
|
12 |
+
0.5,videoseal_0.0,Saturation,0.9872395930190881,-22.325443424433285,0.8020833333333334,0.0,0.9876302083333334,82.37308011458333
|
13 |
+
1.5,videoseal_0.0,Saturation,0.9891927186399698,-22.574382076523154,0.9375,0.0,0.99609375,87.21965684375
|
14 |
+
23,videoseal_0.0,H264,0.9773437529802322,-21.254674812157564,0.6770833333333334,0.0,0.9720052083333334,93.4950784375
|
15 |
+
30,videoseal_0.0,H264,0.9298177100718021,-16.948903400945508,0.2916666666666667,0.0,0.9016927083333334,90.57634715625
|
16 |
+
40,videoseal_0.0,H264,0.7444010442122817,-6.524993251353135,0.0,0.0,0.7018229166666666,77.12887388541667
|
17 |
+
50,videoseal_0.0,H264,0.5953125000620881,-1.6307919905700874,0.0,0.0,0.5748697916666666,42.544007739583336
|
18 |
+
23,videoseal_0.0,H264rgb,0.9869791685293118,-22.30228143979824,0.8645833333333334,0.0,0.9895833333333334,94.04945610416667
|
19 |
+
30,videoseal_0.0,H264rgb,0.9799479190260172,-21.489114757416896,0.6979166666666666,0.0,0.9778645833333334,92.73585030208335
|
20 |
+
40,videoseal_0.0,H264rgb,0.9144531264901161,-15.596305555499745,0.2604166666666667,0.0,0.9016927083333334,86.78819740624999
|
21 |
+
50,videoseal_0.0,H264rgb,0.7197916662941376,-5.245144452455555,0.010416666666666666,0.0,0.6946614583333334,68.91671463541667
|
22 |
+
default,videoseal_0.0,VP9,0.965234378973643,-20.019336430542744,0.4270833333333333,0.0,0.9466145833333334,93.01640629166666
|
23 |
+
"[23, 0.71, 0.5]",videoseal_0.0,H264_Crop_Brightness0,0.8328125017384688,-10.553013238178776,0.08333333333333333,0.0,0.80859375,
|
24 |
+
"[30, 0.71, 0.5]",videoseal_0.0,H264_Crop_Brightness1,0.6783854194606344,-3.9887163895481392,0.0,0.0,0.6484375,
|
25 |
+
"[40, 0.71, 0.5]",videoseal_0.0,H264_Crop_Brightness2,0.558203123199443,-1.0105757298040505,0.0,0.0,0.5501302083333334,
|
26 |
+
"[50, 0.71, 0.5]",videoseal_0.0,H264_Crop_Brightness3,0.5205729169150194,-0.5174883076741513,0.0,0.0,0.5377604166666666,
|
backend/data/val2014_1k_image_attacks_variations.csv
ADDED
@@ -0,0 +1,203 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
strength,model,attack,bit_acc,log10_p_value,TPR,FPR,watermark_det_score,psnr
|
2 |
+
40,dctdwt,jpeg,0.5020625,-0.3826146140818607,0.0,0.0,0.50625,29.497363302230834
|
3 |
+
80,dctdwt,jpeg,0.50665625,-0.41018963104978795,0.0,0.0,0.51825,32.97083967590332
|
4 |
+
1.5,dctdwt,brightness,0.5978125,-1.9191306399385262,0.099,0.0,0.6134375,14.646175559997559
|
5 |
+
2,dctdwt,brightness,0.4898125,-0.34018891538781537,0.0,0.0,0.5124375,10.881604486465454
|
6 |
+
1.5,dctdwt,contrast,0.62546875,-2.447305479356551,0.147,0.0,0.63775,21.041186895370483
|
7 |
+
2,dctdwt,contrast,0.493,-0.3944471596834818,0.003,0.0,0.516625,17.130134965896605
|
8 |
+
1.5,dctdwt,saturation,0.6079375,-2.4414515215618957,0.151,0.0,0.617375,28.590861644744873
|
9 |
+
2,dctdwt,saturation,0.472,-0.3452179077776427,0.003,0.0,0.4965625,24.03351840400696
|
10 |
+
1.5,dctdwt,sharpness,0.90575,-7.425334355548517,0.685,0.0,0.9000625,32.89536434936524
|
11 |
+
2,dctdwt,sharpness,0.9031875,-7.3604109030809415,0.664,0.0,0.897625,29.32010269546509
|
12 |
+
0.1,dctdwt,perspective,0.5094375,-0.4148919277292913,0.0,0.0,0.51975,
|
13 |
+
0.5,dctdwt,perspective,0.49571875,-0.34551440090266644,0.0,0.0,0.5189375,
|
14 |
+
3,dctdwt,median_filter,0.52965625,-0.5827200230159719,0.001,0.0,0.5355,
|
15 |
+
7,dctdwt,median_filter,0.52696875,-0.5416524306005963,0.001,0.0,0.53075,
|
16 |
+
-0.1,dctdwt,hue,0.685,-3.6290524452344743,0.277,0.0,0.6894375,26.185697172164918
|
17 |
+
0.1,dctdwt,hue,0.817625,-6.088935426143821,0.529,0.0,0.81825,26.28839067840576
|
18 |
+
3,dctdwt,gaussian_blur,0.7554375,-4.24479106449854,0.294,0.0,0.755875,29.359823127746584
|
19 |
+
17,dctdwt,gaussian_blur,0.49846875,-0.38040580612390384,0.0,0.0,0.5055625,23.000045793533324
|
20 |
+
0.1,fnns,center_crop,0.99215625,-9.332077256146167,0.924,0.0,0.9921875,
|
21 |
+
0.2,fnns,center_crop,0.9965,-9.49380218710162,0.955,0.0,0.995875,
|
22 |
+
0.5,fnns,center_crop,0.99821875,-9.558841561493942,0.972,0.0,0.997625,
|
23 |
+
40,fnns,jpeg,0.82709375,-4.214259600535113,0.064,0.0,0.8295625,29.31752152252197
|
24 |
+
80,fnns,jpeg,0.95403125,-7.771567083699816,0.502,0.001,0.9501875,32.3667008934021
|
25 |
+
1.5,fnns,brightness,0.99659375,-9.509029064634491,0.975,0.0,0.997125,14.666424600601196
|
26 |
+
2,fnns,brightness,0.98828125,-9.22717421456476,0.914,0.0,0.9890625,10.89384718132019
|
27 |
+
1.5,fnns,contrast,0.99815625,-9.552669354332867,0.965,0.0,0.9970625,21.08928023147583
|
28 |
+
2,fnns,contrast,0.9940625,-9.392927502610569,0.917,0.0,0.99125,17.15247671699524
|
29 |
+
1.5,fnns,saturation,0.99909375,-9.591195547282094,0.987,0.0,0.999,28.54383068084717
|
30 |
+
2,fnns,saturation,0.99871875,-9.575859766012146,0.984,0.0,0.998625,23.90470901298523
|
31 |
+
1.5,fnns,sharpness,0.99915625,-9.59435724319616,0.992,0.0,0.999375,33.518123767852785
|
32 |
+
2,fnns,sharpness,0.99896875,-9.586499370537702,0.99,0.0,0.99925,29.774914964675904
|
33 |
+
0.1,fnns,resize,0.4676875,-0.2618836687110853,0.0,0.0,0.47225,
|
34 |
+
0.5,fnns,resize,0.82228125,-4.392052658381943,0.142,0.0,0.8156875,
|
35 |
+
0.1,fnns,perspective,0.996375,-9.472621044609186,0.917,0.001,0.9925,
|
36 |
+
0.5,fnns,perspective,0.9118125,-6.591575849895768,0.276,0.0,0.883125,
|
37 |
+
3,fnns,median_filter,0.99915625,-9.594859719577293,0.987,0.0,0.999,
|
38 |
+
7,fnns,median_filter,0.89875,-5.967818774041979,0.315,0.0,0.913625,
|
39 |
+
-0.1,fnns,hue,0.99171875,-9.278746262161759,0.862,0.0,0.9875625,26.20327004623413
|
40 |
+
0.1,fnns,hue,0.99465625,-9.401950091789502,0.949,0.0,0.995875,26.221160842895507
|
41 |
+
3,fnns,gaussian_blur,0.95278125,-7.713495870490613,0.666,0.0,0.9649375,29.340129753112794
|
42 |
+
17,fnns,gaussian_blur,0.501875,-0.3548576072833981,0.0,0.0,0.5089375,23.001661640167235
|
43 |
+
0.1,hidden,center_crop,0.9074375,-6.347466337025129,0.245,0.0,0.891375,
|
44 |
+
0.2,hidden,center_crop,0.92946875,-7.017488963128573,0.373,0.0,0.917625,
|
45 |
+
0.5,hidden,center_crop,0.942375,-7.431960819750468,0.42,0.0,0.924,
|
46 |
+
40,hidden,jpeg,0.73696875,-2.634302581673334,0.008,0.0,0.725625,29.327193628311157
|
47 |
+
80,hidden,jpeg,0.8658125,-5.299139346263899,0.102,0.0,0.8325625,32.452746685028075
|
48 |
+
1.5,hidden,brightness,0.9644375,-8.305146735463047,0.66,0.0,0.958625,14.668389726638795
|
49 |
+
2,hidden,brightness,0.96040625,-8.249435268732869,0.667,0.0,0.95025,10.89320477104187
|
50 |
+
1.5,hidden,contrast,0.94975,-7.653379017435201,0.458,0.0,0.933125,21.11191944694519
|
51 |
+
2,hidden,contrast,0.94015625,-7.334541481094144,0.403,0.0,0.9239375,17.163515506744385
|
52 |
+
1.5,hidden,saturation,0.95834375,-7.99798803696701,0.541,0.0,0.944875,28.53894853782654
|
53 |
+
2,hidden,saturation,0.9626875,-8.198485659421427,0.587,0.0,0.9471875,23.863983478546142
|
54 |
+
1.5,hidden,sharpness,0.9565,-7.897718003173097,0.48,0.0,0.9400625,33.91716563034058
|
55 |
+
2,hidden,sharpness,0.9566875,-7.898313902122441,0.474,0.0,0.9410625,30.043136520385744
|
56 |
+
0.1,hidden,resize,0.588125,-0.8615945622307308,0.0,0.001,0.573625,
|
57 |
+
0.5,hidden,resize,0.85703125,-5.180355576112077,0.164,0.0,0.83525,
|
58 |
+
0.1,hidden,perspective,0.9314375,-7.046730361831291,0.37,0.0,0.9119375,
|
59 |
+
0.5,hidden,perspective,0.88640625,-5.735525309642246,0.095,0.0,0.8311875,
|
60 |
+
3,hidden,median_filter,0.94465625,-7.4924709514490715,0.45,0.0,0.931875,
|
61 |
+
7,hidden,median_filter,0.826875,-4.139066232474529,0.061,0.0,0.8146875,
|
62 |
+
-0.1,hidden,hue,0.77078125,-3.0402687884686643,0.017,0.0,0.7575625,26.263194860458373
|
63 |
+
0.1,hidden,hue,0.84275,-4.578824021509619,0.047,0.0,0.8075,26.285945333480836
|
64 |
+
3,hidden,gaussian_blur,0.8750625,-5.358207788862211,0.206,0.0,0.872125,29.30019935798645
|
65 |
+
17,hidden,gaussian_blur,0.5169375,-0.4356468352194895,0.0,0.0,0.5115625,22.999225114822387
|
66 |
+
0.1,ssl,center_crop,0.9768125,-8.678997241194127,0.735,0.0,0.9735625,
|
67 |
+
0.2,ssl,center_crop,0.98715625,-9.084324608293683,0.831,0.0,0.984125,
|
68 |
+
0.5,ssl,center_crop,0.99225,-9.29499658794747,0.873,0.0,0.9883125,
|
69 |
+
40,ssl,jpeg,0.806375,-3.8483989482909755,0.044,0.0,0.7999375,29.317452054977416
|
70 |
+
80,ssl,jpeg,0.94215625,-7.342269345541497,0.36,0.0,0.9344375,32.365828380584716
|
71 |
+
1.5,ssl,brightness,0.9898125,-9.208813414172605,0.861,0.0,0.9860625,14.666704242706299
|
72 |
+
2,ssl,brightness,0.9783125,-8.798077512801068,0.788,0.0,0.9755,10.894122716903686
|
73 |
+
1.5,ssl,contrast,0.990875,-9.240701388893402,0.868,0.0,0.9873125,21.090113580703736
|
74 |
+
2,ssl,contrast,0.9835,-8.94856919966525,0.815,0.0,0.9813125,17.152819324493407
|
75 |
+
1.5,ssl,saturation,0.99359375,-9.346210404385907,0.896,0.0,0.9909375,28.552481477737427
|
76 |
+
2,ssl,saturation,0.99365625,-9.347790890563363,0.896,0.0,0.99075,23.910604997634888
|
77 |
+
1.5,ssl,sharpness,0.99359375,-9.345360278345975,0.887,0.0,0.990375,33.538280977249144
|
78 |
+
2,ssl,sharpness,0.99303125,-9.320970672262485,0.876,0.0,0.9893125,29.78780319213867
|
79 |
+
0.1,ssl,resize,0.480625,-0.30077685691342126,0.0,0.0,0.46475,
|
80 |
+
0.5,ssl,resize,0.79834375,-3.8352954961692602,0.084,0.0,0.7988125,
|
81 |
+
0.1,ssl,perspective,0.98803125,-9.126225580495474,0.82,0.0,0.9835,
|
82 |
+
0.5,ssl,perspective,0.884375,-5.816851749177662,0.265,0.001,0.8745625,
|
83 |
+
3,ssl,median_filter,0.9938125,-9.355810893541028,0.891,0.0,0.9903125,
|
84 |
+
7,ssl,median_filter,0.88415625,-5.55413173196328,0.2,0.0,0.883875,
|
85 |
+
-0.1,ssl,hue,0.97959375,-8.757611514361445,0.729,0.0,0.974,26.20397741317749
|
86 |
+
0.1,ssl,hue,0.986,-9.036309155152695,0.794,0.0,0.98225,26.22026176071167
|
87 |
+
3,ssl,gaussian_blur,0.93284375,-7.012409162301727,0.379,0.0,0.931125,29.341009077072144
|
88 |
+
17,ssl,gaussian_blur,0.51284375,-0.43358824860475326,0.0,0.0,0.518125,23.00141637992859
|
89 |
+
0.1,trustmark,center_crop,0.49853125,-0.362972070852509,0.024,0.024,,
|
90 |
+
0.2,trustmark,center_crop,0.50109375,-0.37706022653399907,0.025,0.033,,
|
91 |
+
0.5,trustmark,center_crop,0.5830625,-0.9233145066916311,0.015,0.027,,
|
92 |
+
40,trustmark,jpeg,0.994125,-9.443292442445914,0.963,0.033,,29.29385005950928
|
93 |
+
80,trustmark,jpeg,0.9988125,-9.58921249128877,0.99,0.023,,32.549212696075436
|
94 |
+
1.5,trustmark,brightness,0.9735,-8.87156538487166,0.87,0.017,,14.797746950149536
|
95 |
+
2,trustmark,brightness,0.92015625,-7.316462404466016,0.612,0.022,,10.967200563430787
|
96 |
+
1.5,trustmark,contrast,0.97665625,-8.88007288698107,0.849,0.029,,21.22028749847412
|
97 |
+
2,trustmark,contrast,0.92528125,-7.392852184893115,0.605,0.024,,17.216852909088136
|
98 |
+
1.5,trustmark,saturation,0.99959375,-9.620244889254721,0.998,0.026,,29.69855445289612
|
99 |
+
2,trustmark,saturation,0.9988125,-9.595148644183382,0.993,0.031,,24.726748781204222
|
100 |
+
1.5,trustmark,sharpness,1.0,-9.632959861247398,1.0,0.026,,35.8256508026123
|
101 |
+
2,trustmark,sharpness,0.99996875,-9.631441347307522,0.999,0.032,,31.106086637496947
|
102 |
+
0.1,trustmark,resize,0.50834375,-0.41025264537352857,0.019,0.024,,
|
103 |
+
0.5,trustmark,resize,0.991,-9.443955472020585,0.978,0.023,,
|
104 |
+
0.1,trustmark,perspective,0.93209375,-7.587544652395137,0.639,0.027,,
|
105 |
+
0.5,trustmark,perspective,0.502,-0.3816433120333905,0.033,0.028,,
|
106 |
+
3,trustmark,median_filter,0.99890625,-9.61393852903663,0.998,0.025,,
|
107 |
+
7,trustmark,median_filter,0.99821875,-9.588934445709722,0.993,0.036,,
|
108 |
+
-0.1,trustmark,hue,0.99890625,-9.599538603967973,0.994,0.023,,26.659574853897094
|
109 |
+
0.1,trustmark,hue,0.99934375,-9.6082473390882,0.994,0.032,,26.680271739959718
|
110 |
+
3,trustmark,gaussian_blur,0.99978125,-9.624602853959406,0.998,0.018,,29.342174648284914
|
111 |
+
17,trustmark,gaussian_blur,0.9975,-9.565699842340388,0.989,0.027,,22.95456008529663
|
112 |
+
0.1,wam,center_crop,0.73115625,-3.1154344100965408,0.924,0.029,0.7161210215876,
|
113 |
+
0.2,wam,center_crop,0.96128125,-8.491957203316176,0.989,0.016,0.957098487409,
|
114 |
+
0.5,wam,center_crop,0.99203125,-9.3842039418357,0.998,0.015,0.9525076625910001,
|
115 |
+
40,wam,jpeg,0.9893125,-9.250217390456019,0.999,0.015,0.82504857937,29.23654267692566
|
116 |
+
80,wam,jpeg,0.9996875,-9.618401866264062,1.0,0.013,0.9968749403300001,32.21726478385925
|
117 |
+
1.5,wam,brightness,0.99965625,-9.620123013682628,1.0,0.039,0.9915141399599999,14.672207807540893
|
118 |
+
2,wam,brightness,0.99865625,-9.58886769805988,1.0,0.118,0.98874548748,10.897510557174682
|
119 |
+
1.5,wam,contrast,0.99984375,-9.62618334013686,1.0,0.013,0.99450493805,21.097586919784547
|
120 |
+
2,wam,contrast,0.99953125,-9.612441393742374,1.0,0.028,0.9918034836499999,17.155871156692506
|
121 |
+
1.5,wam,saturation,1.0,-9.632959861247398,1.0,0.016,0.99889707857,28.340535629272463
|
122 |
+
2,wam,saturation,1.0,-9.632959861247398,1.0,0.03,0.9986875794700001,23.703161268234254
|
123 |
+
1.5,wam,sharpness,1.0,-9.632959861247398,1.0,0.012,0.99881452993,34.35579618835449
|
124 |
+
2,wam,sharpness,1.0,-9.632959861247398,1.0,0.01,0.9986026414800001,30.462276391983032
|
125 |
+
0.1,wam,resize,0.999875,-9.626885805487888,1.0,0.012,0.99885361875,
|
126 |
+
0.5,wam,resize,1.0,-9.632959861247398,1.0,0.011,0.99898637745,
|
127 |
+
0.1,wam,perspective,0.99946875,-9.610509453662228,1.0,0.016,0.89152204546,
|
128 |
+
0.5,wam,perspective,0.85396875,-5.6154813489614,0.905,0.008,0.36549888610729997,
|
129 |
+
3,wam,median_filter,0.99996875,-9.631441347307522,1.0,0.012,0.99886443461,
|
130 |
+
7,wam,median_filter,0.99990625,-9.628404319427766,1.0,0.014,0.996002851,
|
131 |
+
-0.1,wam,hue,0.9998125,-9.624162349815851,1.0,0.013,0.99739046928,26.14288458442688
|
132 |
+
0.1,wam,hue,0.99996875,-9.631441347307522,1.0,0.017,0.99809510174,26.128018869400023
|
133 |
+
3,wam,gaussian_blur,1.0,-9.632959861247398,1.0,0.011,0.9988782663899999,29.077282075881957
|
134 |
+
17,wam,gaussian_blur,0.99896875,-9.586375780353464,1.0,0.009,0.99866567965,22.95761491012573
|
135 |
+
0.1,cine_jit,center_crop,0.4987143074721098,-0.3352273607556046,0.0,0.0,0.4945,
|
136 |
+
0.2,cine_jit,center_crop,0.49592859322577715,-0.33112507926489454,0.0,0.0,0.501125,
|
137 |
+
0.5,cine_jit,center_crop,0.5040714505165815,-0.3373113577495052,0.0,0.0,0.4945625,
|
138 |
+
40,cine_jit,jpeg,0.9393571620583534,-3.409343335671343,0.497,0.0,0.9390625,29.44433637237549
|
139 |
+
80,cine_jit,jpeg,0.9963571443557739,-4.158669019244395,0.93,0.0,0.99425,32.83987800598145
|
140 |
+
1.5,cine_jit,brightness,0.9981428577303887,-4.191011628767688,0.985,0.0,0.9983125,14.793723794937133
|
141 |
+
2,cine_jit,brightness,0.9960714295208454,-4.167917673642502,0.982,0.0,0.996875,10.968698310852051
|
142 |
+
1.5,cine_jit,contrast,0.9979285719394684,-4.189271843250608,0.984,0.0,0.997625,21.203966033935547
|
143 |
+
2,cine_jit,contrast,0.9970714294910431,-4.175135788491075,0.975,0.001,0.997125,17.20670739173889
|
144 |
+
1.5,cine_jit,saturation,0.9997857143878937,-4.210891665518569,0.997,0.0,0.9998125,29.795919807434082
|
145 |
+
2,cine_jit,saturation,0.9999285714626313,-4.21324384803668,0.998,0.0,0.999875,24.66211896324158
|
146 |
+
1.5,cine_jit,sharpness,0.9997142858505249,-4.209715574259513,0.993,0.0,0.9995,36.179243997573856
|
147 |
+
2,cine_jit,sharpness,0.9995714287757873,-4.2076902683942485,0.991,0.0,0.999375,31.19517758369446
|
148 |
+
0.1,cine_jit,resize,0.9991428574919701,-4.201489896759147,0.99,0.0,0.9993125,
|
149 |
+
0.5,cine_jit,resize,0.9996428573131562,-4.208539483000458,0.994,0.0,0.9995625,
|
150 |
+
0.1,cine_jit,perspective,0.5249285944625736,-0.47179957110970555,0.0,0.0,0.5093125,
|
151 |
+
0.5,cine_jit,perspective,0.5015000222399831,-0.349701211221236,0.0,0.0,0.5034375,
|
152 |
+
3,cine_jit,median_filter,0.9995000002384186,-4.2061873004823465,0.992,0.0,0.9994375,
|
153 |
+
7,cine_jit,median_filter,0.999071429014206,-4.19945762958086,0.984,0.0,0.9985,
|
154 |
+
-0.1,cine_jit,hue,0.976928575694561,-3.953951484600151,0.893,0.0,0.977875,26.82082160949707
|
155 |
+
0.1,cine_jit,hue,0.9948571441471576,-4.156042565949502,0.975,0.0,0.9946875,26.859237878799437
|
156 |
+
3,cine_jit,gaussian_blur,0.9997857143878937,-4.210891665518569,0.994,0.0,0.9995625,29.48486163520813
|
157 |
+
17,cine_jit,gaussian_blur,0.9962857156395912,-4.161671516710178,0.964,0.0,0.9960625,22.98837381362915
|
158 |
+
0.1,mbrs_jit,center_crop,0.49892086279392245,-0.3992944758629108,0.0,0.0,0.499625,
|
159 |
+
0.2,mbrs_jit,center_crop,0.5015000296831131,-0.4163618514094413,0.0,0.001,0.5034375,
|
160 |
+
0.5,mbrs_jit,center_crop,0.501454195767641,-0.42976865186104724,0.0,0.0,0.506375,
|
161 |
+
40,mbrs_jit,jpeg,0.9586042170524597,-56.5557176870814,0.589,0.0,0.95675,29.422522090911865
|
162 |
+
80,mbrs_jit,jpeg,0.9818833784461022,-64.56721281845707,0.814,0.0,0.9844375,32.79868677711487
|
163 |
+
1.5,mbrs_jit,brightness,0.9291833801269531,-50.020756475197636,0.516,0.0,0.891,14.794059349060058
|
164 |
+
2,mbrs_jit,brightness,0.8711417121887207,-37.18011360197734,0.361,0.0,0.8298125,10.971753702163696
|
165 |
+
1.5,mbrs_jit,contrast,0.9326958803534507,-50.13676659865939,0.48,0.0,0.8981875,21.20251899719238
|
166 |
+
2,mbrs_jit,contrast,0.8948125464320182,-41.165277216518675,0.369,0.0,0.8565,17.203935625076294
|
167 |
+
1.5,mbrs_jit,saturation,0.988458377122879,-66.92096639983883,0.851,0.0,0.988625,29.944995527267455
|
168 |
+
2,mbrs_jit,saturation,0.9868125441670418,-66.34252351918782,0.849,0.0,0.9884375,24.846499814987183
|
169 |
+
1.5,mbrs_jit,sharpness,0.9886000419855118,-67.01102738217817,0.857,0.0,0.988375,36.37889844322205
|
170 |
+
2,mbrs_jit,sharpness,0.9885625417232513,-67.03232498555793,0.862,0.0,0.9885,31.286748254776
|
171 |
+
0.1,mbrs_jit,resize,0.8911417133808136,-39.98036366345572,0.465,0.0,0.91925,
|
172 |
+
0.5,mbrs_jit,resize,0.9818125479221343,-64.30701206601205,0.811,0.0,0.9834375,
|
173 |
+
0.1,mbrs_jit,perspective,0.5033708624839782,-0.4569927616268258,0.0,0.0,0.5009375,
|
174 |
+
0.5,mbrs_jit,perspective,0.4955958615243435,-0.37052302701501766,0.0,0.0,0.509375,
|
175 |
+
3,mbrs_jit,median_filter,0.9683000485897064,-59.69739855062012,0.684,0.0,0.96625,
|
176 |
+
7,mbrs_jit,median_filter,0.8706125450134278,-35.792431247810356,0.338,0.0,0.88,
|
177 |
+
-0.1,mbrs_jit,hue,0.9757167153954506,-62.12744554865094,0.77,0.0,0.9799375,26.80436898612976
|
178 |
+
0.1,mbrs_jit,hue,0.977983382999897,-62.93878781407436,0.769,0.0,0.979375,26.853628866195677
|
179 |
+
3,mbrs_jit,gaussian_blur,0.9788875494599343,-63.19926317503318,0.774,0.0,0.979625,29.506669797897338
|
180 |
+
17,mbrs_jit,gaussian_blur,0.7640250397324562,-18.881354375187044,0.235,0.0,0.8343125,22.99119821166992
|
181 |
+
0.1,invismark,center_crop,0.504190485805273,-0.41988612053084645,0.0,0.0,0.504875,
|
182 |
+
0.2,invismark,center_crop,0.5263333438932896,-0.6297731029618481,0.0,0.0,0.533875,
|
183 |
+
0.5,invismark,center_crop,0.7017738223075867,-6.349929769617189,0.106,0.0,0.709375,
|
184 |
+
40,invismark,jpeg,0.5046190570294857,-0.4287540272089966,0.0,0.0,0.4994375,29.48294907569885
|
185 |
+
80,invismark,jpeg,0.5962381073236466,-2.7460936200689785,0.029,0.0,0.59925,32.96638896179199
|
186 |
+
1.5,invismark,brightness,0.9217381114959717,-16.870595611317132,0.564,0.0,0.9483125,14.738342275619507
|
187 |
+
2,invismark,brightness,0.8870238243937493,-14.34283482516149,0.371,0.0,0.911,10.926432598114014
|
188 |
+
1.5,invismark,contrast,0.9293214450478554,-17.359351795808255,0.583,0.0,0.95525,21.284102626800536
|
189 |
+
2,invismark,contrast,0.9044762061834335,-15.378894959062933,0.439,0.0,0.933625,17.240934774398802
|
190 |
+
1.5,invismark,saturation,0.9434762079119682,-18.561493958574186,0.713,0.0,0.971625,30.167457122802734
|
191 |
+
2,invismark,saturation,0.939928588449955,-18.268050526190144,0.683,0.0,0.967375,24.94753152656555
|
192 |
+
1.5,invismark,sharpness,0.9453095412254333,-18.713304501004895,0.727,0.0,0.9740625,36.77891961669922
|
193 |
+
2,invismark,sharpness,0.9447023984193802,-18.665347708247868,0.716,0.0,0.9734375,31.412074157714844
|
194 |
+
0.1,invismark,resize,0.9342381118834019,-18.00090341700723,0.718,0.0,0.966,
|
195 |
+
0.5,invismark,resize,0.9461904942393303,-18.784772085560732,0.74,0.0,0.974875,
|
196 |
+
0.1,invismark,perspective,0.9295595407485961,-17.44331711677961,0.613,0.0,0.9583125,
|
197 |
+
0.5,invismark,perspective,0.5367262020111084,-1.0716648781015674,0.009,0.0,0.5365,
|
198 |
+
3,invismark,median_filter,0.9445952557325363,-18.64258300141059,0.723,0.0,0.9725,
|
199 |
+
7,invismark,median_filter,0.937821446120739,-18.06399662769626,0.672,0.0,0.965875,
|
200 |
+
-0.1,invismark,hue,0.9269523967504502,-17.09118743325101,0.577,0.0,0.9569375,27.01629251098633
|
201 |
+
0.1,invismark,hue,0.9242023964524269,-16.895729777224606,0.545,0.0,0.951,27.031705299377442
|
202 |
+
3,invismark,gaussian_blur,0.946142874956131,-18.774471721181644,0.742,0.0,0.976125,29.54929346084595
|
203 |
+
17,invismark,gaussian_blur,0.630976201236248,-4.88192924623468,0.138,0.0,0.6375625,22.977614444732666
|
backend/data/voxpopuli_1k_audio_attacks_variations.csv
ADDED
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
strength,model,attack,bit_acc,log10_p_value,TPR,FPR,watermark_det_score,pesq
|
2 |
+
0.5,audioseal,speed,0.495125,-0.3277983642447605,0.0,0.0,0.0008276749898039999,4.301031017780304
|
3 |
+
0.6,audioseal,speed,0.495875,-0.3342249022039102,0.0,0.0,0.00045617498900600003,4.453170692205429
|
4 |
+
0.7,audioseal,speed,0.49875,-0.3428843529510275,0.0,0.0,0.000567049986092,4.467334972381591
|
5 |
+
0.8,audioseal,speed,0.491625,-0.32584173394627386,0.0,0.0,0.000868762483976,4.455290354013443
|
6 |
+
0.9,audioseal,speed,0.50625,-0.3645908462165224,0.001,0.0,0.0029456874570739995,4.452619766235352
|
7 |
+
1.0,audioseal,speed,1.0,-4.816479930623699,1.0,0.0,1.0,4.478912019014358
|
8 |
+
1.1,audioseal,speed,0.4853125,-0.31965282479094936,0.005,0.0,0.019769745200458,4.493088223218918
|
9 |
+
1.2,audioseal,speed,0.494,-0.3322072774475455,0.0,0.0,0.0007285613613499999,4.482866108894348
|
10 |
+
1.25,audioseal,speed,0.4953125,-0.33058643464321036,0.0,0.0,0.00031579688380000006,4.4835970284938815
|
11 |
+
1.3,audioseal,speed,0.4931875,-0.332114835723429,0.0,0.0,0.00034300200485200006,4.481552858352661
|
12 |
+
1.4,audioseal,speed,0.4971875,-0.33556284909890227,0.0,0.0,0.0007487531537940001,4.481344126701355
|
13 |
+
1.5,audioseal,speed,0.4965,-0.3363599923106193,0.0,0.0,0.001113529879736,4.46924634385109
|
14 |
+
0.001,audioseal,random_noise,1.0,-4.816479930623699,0.992,0.0,0.9463958056799999,4.370451912403107
|
15 |
+
0.01,audioseal,random_noise,0.90675,-3.3756597422500048,0.17,0.0,0.34171801957900005,3.355803730249405
|
16 |
+
0.1,audioseal,random_noise,0.5255,-0.42707083373794374,0.0,0.0,0.011285899831606,1.6723893641233445
|
17 |
+
0.3,audioseal,random_noise,0.51,-0.36732513540540546,0.0,0.0,0.004856799894964001,0.9522688180208206
|
18 |
+
500,audioseal,lowpass_filter,0.4923125,-0.3285815995913821,0.001,0.0,0.0054214748514199995,4.615413725614547
|
19 |
+
1000,audioseal,lowpass_filter,0.774875,-1.8080355632818192,0.402,0.0,0.3993347064985,4.541482497692108
|
20 |
+
1500,audioseal,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,0.99992636234,4.471128947734833
|
21 |
+
2000,audioseal,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,1.0,4.473192329168319
|
22 |
+
3000,audioseal,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,1.0,4.47677370262146
|
23 |
+
4000,audioseal,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,1.0,4.4782840220928195
|
24 |
+
5000,audioseal,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,1.0,4.478620184898377
|
25 |
+
500,audioseal,highpass_filter,1.0,-4.816479930623699,1.0,0.0,0.99997986237,4.4466781709194185
|
26 |
+
1000,audioseal,highpass_filter,0.8926875,-3.0257773361566067,1.0,0.0,0.99526725719,4.398876127243042
|
27 |
+
1500,audioseal,highpass_filter,0.49625,-0.3276821801025292,0.0,0.0,0.012253012323834,4.615612954139709
|
28 |
+
2000,audioseal,highpass_filter,0.4955,-0.3302751821125191,0.0,0.0,0.008783412346468001,4.629414543151856
|
29 |
+
4000,audioseal,highpass_filter,0.4946875,-0.32844608888249216,0.0,0.0,0.001294737479924,4.30457623898983
|
30 |
+
8000,audioseal,highpass_filter,0.5008125,-0.3444576990574476,0.0,0.0,0.000275,3.0075866129398348
|
31 |
+
10,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,4.478912364006042
|
32 |
+
20,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,4.478912389755249
|
33 |
+
30,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,4.478912400722503
|
34 |
+
40,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,4.478912075281143
|
35 |
+
50,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,4.478912303447723
|
36 |
+
60,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,4.478912333250046
|
37 |
+
70,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,4.478912398815155
|
38 |
+
80,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,4.478912457942963
|
39 |
+
90,audioseal,boost_audio,1.0,-4.816479930623699,1.0,0.0,1.0,4.478912031412125
|
40 |
+
10,audioseal,duck_audio,1.0,-4.816479930623699,1.0,0.0,1.0,4.478912457942963
|
41 |
+
20,audioseal,duck_audio,1.0,-4.816479930623699,1.0,0.0,1.0,4.478912333250046
|
42 |
+
30,audioseal,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9999999875,4.478912075281143
|
43 |
+
40,audioseal,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9999998749500001,4.478912389755249
|
44 |
+
50,audioseal,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.99926363731,4.478912019014358
|
45 |
+
60,audioseal,duck_audio,1.0,-4.816479930623699,0.999,0.0,0.99045178661,4.478912333250046
|
46 |
+
70,audioseal,duck_audio,0.99925,-4.80171454356716,0.979,0.0,0.9521938689,4.478912389755249
|
47 |
+
80,audioseal,duck_audio,0.992875,-4.681271172155415,0.954,0.0,0.88734450059,4.478912333250046
|
48 |
+
90,audioseal,duck_audio,0.922125,-3.533769068997174,0.778,0.0,0.6714583754456,4.478912333250046
|
49 |
+
0.001,audioseal,shush,1.0,-4.816479930623699,1.0,0.0,0.99881447028,4.4789498813152315
|
50 |
+
0.01,audioseal,shush,0.999875,-4.814343210056542,1.0,0.0,0.989832784,4.478496834993362
|
51 |
+
0.1,audioseal,shush,0.99975,-4.811882312213786,1.0,0.0,0.89979418968,4.471048183202743
|
52 |
+
0.3,audioseal,shush,0.999125,-4.800425936986041,1.0,0.0,0.69990769245,4.31581031537056
|
53 |
+
2,audioseal,smooth,0.9999375,-4.815249481702321,1.0,0.0,0.99999877495,4.479365072965622
|
54 |
+
4,audioseal,smooth,0.9990625,-4.798023196803026,1.0,0.0,0.99995287481,4.479762789726258
|
55 |
+
8,audioseal,smooth,0.99925,-4.801714543567159,1.0,0.0,0.99994142469,4.500697636842728
|
56 |
+
10,audioseal,smooth,0.9785625,-4.413863776227651,0.999,0.0,0.9970940603,4.517208714962005
|
57 |
+
20,audioseal,smooth,0.818125,-2.130263934762764,0.947,0.0,0.8796912993239999,4.518889941453934
|
58 |
+
40,audioseal,smooth,0.5154375,-0.3912118745742915,0.005,0.0,0.038046986811066004,4.474366877555847
|
59 |
+
12k,audioseal,aac_compression,0.6090625,-0.9478815484181471,0.452,0.0,0.43135888054517,3.1339561458826064
|
60 |
+
24k,audioseal,aac_compression,0.6239375,-1.0456914125697212,0.569,0.0,0.52572141614766,3.425803221821785
|
61 |
+
32k,audioseal,aac_compression,0.6356875,-1.1255123017390227,0.672,0.0,0.614860452154288,3.751123477935791
|
62 |
+
64k,audioseal,aac_compression,0.650375,-1.2262760183662826,0.804,0.0,0.78963169082508,4.07449337553978
|
63 |
+
128k,audioseal,aac_compression,0.6494375,-1.2334972956936,0.815,0.0,0.8030053785687999,4.098213049650192
|
64 |
+
256k,audioseal,aac_compression,0.6494375,-1.2334972956936,0.815,0.0,0.8030053785687999,4.098213049650192
|
65 |
+
12k,audioseal,mp3_compression,0.9999375,-4.815249481702321,1.0,0.0,0.99561730553,3.538307793140411
|
66 |
+
24k,audioseal,mp3_compression,0.9999375,-4.815249481702321,1.0,0.0,0.99561730553,3.538307793140411
|
67 |
+
32k,audioseal,mp3_compression,0.9999375,-4.815249481702321,1.0,0.0,0.99561730553,3.538307793140411
|
68 |
+
64k,audioseal,mp3_compression,0.9999375,-4.815249481702321,1.0,0.0,0.99561730553,3.538307793140411
|
69 |
+
128k,audioseal,mp3_compression,0.9999375,-4.815249481702321,1.0,0.0,0.99561730553,3.538307793140411
|
70 |
+
256k,audioseal,mp3_compression,0.9999375,-4.815249481702321,1.0,0.0,0.99561730553,3.538307793140411
|
71 |
+
0.5,wavmark_fast,speed,0.5043125,-0.35012422042474,0.054,0.0,0.43274720937,4.233908696651459
|
72 |
+
0.6,wavmark_fast,speed,0.5015,-0.348787285485512,0.969,0.0,0.59587499128,4.257090904951095
|
73 |
+
0.7,wavmark_fast,speed,0.5069375,-0.36613261708351325,0.0,0.0,0.32433299946,4.289611612558365
|
74 |
+
0.8,wavmark_fast,speed,0.501125,-0.3446168705495398,0.134,0.0,0.44801333625,4.291652025699616
|
75 |
+
0.9,wavmark_fast,speed,0.5996875,-0.6716440104794033,1.0,0.0,0.6751971771999999,4.295082075834275
|
76 |
+
1.0,wavmark_fast,speed,1.0,-4.816479930623699,1.0,0.0,0.99988749955,4.280539211034775
|
77 |
+
1.1,wavmark_fast,speed,0.9351875,-3.686022892659117,1.0,0.0,0.70257400293,4.2975124938488
|
78 |
+
1.2,wavmark_fast,speed,0.4994375,-0.34477724510501473,0.0,0.001,0.39071384481,4.301884689569473
|
79 |
+
1.25,wavmark_fast,speed,0.487375,-0.30930767853286956,0.644,0.0,0.52892361488,4.303503092527389
|
80 |
+
1.3,wavmark_fast,speed,0.5026875,-0.350597459842042,0.0,0.001,0.32510324302000004,4.314832090854645
|
81 |
+
1.4,wavmark_fast,speed,0.5006875,-0.3540424867957197,0.0,0.0,0.35474358975,4.3297111325263975
|
82 |
+
1.5,wavmark_fast,speed,0.4806875,-0.29122948449250985,0.901,0.0,0.5874676748000001,4.330922291994095
|
83 |
+
0.001,wavmark_fast,random_noise,0.9941875,-4.732725312468545,0.998,0.0,0.9445999835,4.403251094341278
|
84 |
+
0.01,wavmark_fast,random_noise,0.7175,-1.5019870972099634,0.735,0.009,0.56661249174,3.3652599804401397
|
85 |
+
0.1,wavmark_fast,random_noise,0.499125,-0.3389038077488093,0.219,0.153,0.45729629341000005,1.6901236518621445
|
86 |
+
0.3,wavmark_fast,random_noise,0.4985625,-0.3342198868156321,0.0,0.0,0.3723543772199999,0.95042644572258
|
87 |
+
500,wavmark_fast,lowpass_filter,0.4985625,-0.3342198868156321,0.0,0.0,0.375,4.478948615789413
|
88 |
+
1000,wavmark_fast,lowpass_filter,0.4985625,-0.3342198868156321,0.0,0.0,0.375,4.494483410120011
|
89 |
+
1500,wavmark_fast,lowpass_filter,0.4989375,-0.33543214022250006,0.0,0.0,0.38188574038,4.4629428062438965
|
90 |
+
2000,wavmark_fast,lowpass_filter,0.603625,-0.6902508060593248,0.927,0.0,0.57606249155,4.422933247804642
|
91 |
+
3000,wavmark_fast,lowpass_filter,0.967875,-4.2136046587089515,1.0,0.0,0.9185749802200001,4.385342133522034
|
92 |
+
4000,wavmark_fast,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,0.9992999981499999,4.359298593521118
|
93 |
+
5000,wavmark_fast,lowpass_filter,1.0,-4.816479930623699,1.0,0.0,0.99973749913,4.331456186056137
|
94 |
+
500,wavmark_fast,highpass_filter,1.0,-4.816479930623699,1.0,0.0,0.99978749927,4.269688676357269
|
95 |
+
1000,wavmark_fast,highpass_filter,1.0,-4.816479930623699,1.0,0.0,0.99978749921,4.211219745159149
|
96 |
+
1500,wavmark_fast,highpass_filter,1.0,-4.816479930623699,1.0,0.0,0.9997999992600001,4.231240867614746
|
97 |
+
2000,wavmark_fast,highpass_filter,1.0,-4.816479930623699,1.0,0.0,0.9993999980999999,4.219625002145767
|
98 |
+
4000,wavmark_fast,highpass_filter,0.9641875,-4.136669449924068,1.0,0.0,0.9786624800100001,1.8327756155729293
|
99 |
+
8000,wavmark_fast,highpass_filter,0.4985625,-0.3342198868156321,0.0,0.0,0.375,3.4256449007987975
|
100 |
+
10,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9998499994,4.280538969039917
|
101 |
+
20,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9998249992999999,4.280539420604706
|
102 |
+
30,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.99974999912,4.28053870511055
|
103 |
+
40,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.99974999912,4.280539204597473
|
104 |
+
50,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.99964999887,4.280539542913437
|
105 |
+
60,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9995999987299999,4.280538454771042
|
106 |
+
70,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.99951249849,4.280539194583893
|
107 |
+
80,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.99944999824,4.280539014339447
|
108 |
+
90,wavmark_fast,boost_audio,1.0,-4.816479930623699,1.0,0.0,0.9993249977499999,4.28053877568245
|
109 |
+
10,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9998999996,4.280539014339447
|
110 |
+
20,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9998999996,4.280538454771042
|
111 |
+
30,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9998999996,4.280539204597473
|
112 |
+
40,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9998749995,4.280539420604706
|
113 |
+
50,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9998374993499999,4.280539211034775
|
114 |
+
60,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.99971249885,4.280538454771042
|
115 |
+
70,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.99948749821,4.280539420604706
|
116 |
+
80,wavmark_fast,duck_audio,1.0,-4.816479930623699,1.0,0.0,0.9984249951799999,4.280538454771042
|
117 |
+
90,wavmark_fast,duck_audio,0.9990625,-4.798347374078625,1.0,0.0,0.9751999806199999,4.280538454771042
|
118 |
+
0.001,wavmark_fast,shush,1.0,-4.816479930623699,1.0,0.0,0.99988749955,4.280620128393173
|
119 |
+
0.01,wavmark_fast,shush,1.0,-4.816479930623699,1.0,0.0,0.9998999996,4.281307213544846
|
120 |
+
0.1,wavmark_fast,shush,1.0,-4.816479930623699,1.0,0.0,0.9923874814300001,4.271687304854393
|
121 |
+
0.3,wavmark_fast,shush,0.7633125,-1.7198181867805828,1.0,0.0,0.64988454975,4.0862873094081875
|
122 |
+
2,wavmark_fast,smooth,1.0,-4.816479930623699,1.0,0.0,0.9998749995,4.32336143732071
|
123 |
+
4,wavmark_fast,smooth,0.999875,-4.814019032780943,1.0,0.0,0.9814874766399999,4.372029628753662
|
124 |
+
8,wavmark_fast,smooth,0.99125,-4.653668931903256,1.0,0.0,0.9522499781700001,4.425969464540482
|
125 |
+
10,wavmark_fast,smooth,0.91375,-3.3304718397378146,1.0,0.0,0.9390499809,4.432527548313141
|
126 |
+
20,wavmark_fast,smooth,0.8449375,-2.5253214649320372,0.974,0.0,0.75083748347,4.399474090099335
|
127 |
+
40,wavmark_fast,smooth,0.591375,-0.6516296577630115,0.3,0.0,0.46883664628000005,4.261135335683822
|
128 |
+
12k,wavmark_fast,aac_compression,0.5940625,-0.6453178253456938,0.859,0.0,0.5788706162200001,3.126311210274696
|
129 |
+
24k,wavmark_fast,aac_compression,0.98975,-4.629745168869822,1.0,0.0,0.91736248025,3.2640174469947816
|
130 |
+
32k,wavmark_fast,aac_compression,0.99875,-4.792195129471734,1.0,0.0,0.96033747896,3.55694220995903
|
131 |
+
64k,wavmark_fast,aac_compression,1.0,-4.816479930623699,1.0,0.0,0.99888749662,3.8878698768615725
|
132 |
+
128k,wavmark_fast,aac_compression,1.0,-4.816479930623699,1.0,0.0,0.99933749829,3.9030432443618777
|
133 |
+
256k,wavmark_fast,aac_compression,1.0,-4.816479930623699,1.0,0.0,0.99933749829,3.9030432443618777
|
134 |
+
12k,wavmark_fast,mp3_compression,0.9930625,-4.695674850124005,1.0,0.0,0.93419997935,3.4287818524837492
|
135 |
+
24k,wavmark_fast,mp3_compression,0.9930625,-4.695674850124005,1.0,0.0,0.93419997935,3.4287818524837492
|
136 |
+
32k,wavmark_fast,mp3_compression,0.9930625,-4.695674850124005,1.0,0.0,0.93419997935,3.4287818524837492
|
137 |
+
64k,wavmark_fast,mp3_compression,0.9930625,-4.695674850124005,1.0,0.0,0.93419997935,3.4287818524837492
|
138 |
+
128k,wavmark_fast,mp3_compression,0.9930625,-4.695674850124005,1.0,0.0,0.93419997935,3.4287818524837492
|
139 |
+
256k,wavmark_fast,mp3_compression,0.9930625,-4.695674850124005,1.0,0.0,0.93419997935,3.4287818524837492
|
140 |
+
0.5,timbre,speed,0.503714308142662,-0.3552021302161772,0.0,0.0,0.488,3.9387735540866853
|
141 |
+
0.6,timbre,speed,0.48892859248816967,-0.30447676197161705,0.0,0.0,0.512,3.9740435717105864
|
142 |
+
0.7,timbre,speed,0.5261428801640868,-0.40372641301052387,0.001,0.0,0.4790625,3.9974764308929442
|
143 |
+
0.8,timbre,speed,0.48050002079457044,-0.28627018472290533,0.0,0.0,0.4695,4.035564354658127
|
144 |
+
0.9,timbre,speed,0.5210000229403376,-0.38334100329352505,0.0,0.0,0.501125,4.05122420835495
|
145 |
+
1.0,timbre,speed,0.9995714287757873,-4.20769026839425,0.995,0.0,0.9995625,4.059110451459885
|
146 |
+
1.1,timbre,speed,0.5110714499950408,-0.3514548388682578,0.0,0.0,0.496875,4.056013465642929
|
147 |
+
1.2,timbre,speed,0.4820000204816461,-0.3072306785340523,0.0,0.0,0.51025,4.0532760384082795
|
148 |
+
1.25,timbre,speed,0.47464287680387496,-0.2691583450765769,0.0,0.0,0.4686875,4.048982208251953
|
149 |
+
1.3,timbre,speed,0.49392859321832655,-0.31493879235061367,0.0,0.0,0.485,4.055791646957397
|
150 |
+
1.4,timbre,speed,0.4945000220015645,-0.3343100562615312,0.0,0.0,0.504,4.060039211988449
|
151 |
+
1.5,timbre,speed,0.4857143067121506,-0.29838416452610983,0.0,0.0,0.48125,4.050121637582779
|
152 |
+
0.001,timbre,random_noise,0.9983571435213089,-4.190690221807963,0.986,0.0,0.998375,3.9890834991931916
|
153 |
+
0.01,timbre,random_noise,0.8930000281631947,-2.8771084644329723,0.371,0.0,0.904125,3.232732026696205
|
154 |
+
0.05,timbre,random_noise,0.5972857427448034,-0.6760138123541515,0.004,0.0,0.5804375,2.0830560475587845
|
155 |
+
0.1,timbre,random_noise,0.5195714515522123,-0.39568639557098084,0.0,0.0,0.52125,1.6909189423322677
|
156 |
+
0.3,timbre,random_noise,0.49921430690586566,-0.3362518204388009,0.0,0.0,0.5018125,0.9566996495723724
|
157 |
+
500,timbre,lowpass_filter,0.6611428896784782,-0.8949532711408312,0.001,0.0,0.6234375,4.092113968133926
|
158 |
+
1000,timbre,lowpass_filter,0.7207143228054047,-1.2627132891370463,0.008,0.0,0.7160625,4.109995054006577
|
159 |
+
1500,timbre,lowpass_filter,0.8042857540249825,-1.902722726488952,0.042,0.0,0.813375,4.079528137207031
|
160 |
+
2000,timbre,lowpass_filter,0.8562143229842186,-2.3905747623003055,0.2,0.0,0.8940625,4.067780660629272
|
161 |
+
3000,timbre,lowpass_filter,0.9328571673035622,-3.2738193390246315,0.728,0.0,0.976125,4.064190368175507
|
162 |
+
4000,timbre,lowpass_filter,0.983285721540451,-3.9605781796071793,0.985,0.0,0.998625,4.06687665271759
|
163 |
+
5000,timbre,lowpass_filter,0.9992857146263122,-4.202985903358027,0.994,0.0,0.999375,4.066385211467743
|
164 |
+
500,timbre,highpass_filter,0.9981428580284119,-4.184495319865983,0.988,0.001,0.9990625,4.178760293960571
|
165 |
+
1000,timbre,highpass_filter,0.9797142946124077,-3.9057702415750786,0.844,0.0,0.988875,4.242087431430817
|
166 |
+
1500,timbre,highpass_filter,0.9519285905361176,-3.5123809776949217,0.414,0.0,0.9398125,4.285577730894088
|
167 |
+
2000,timbre,highpass_filter,0.8917143190503121,-2.7744391795097996,0.187,0.0,0.8939375,4.301341676473617
|
168 |
+
4000,timbre,highpass_filter,0.7842143263220787,-1.7033190722085378,0.002,0.0,0.7374375,1.7599666955471038
|
169 |
+
8000,timbre,highpass_filter,0.4955000219941139,-0.3313222659633685,0.0,0.0,0.5033125,2.4541222710609434
|
170 |
+
10,timbre,boost_audio,0.9995714287757873,-4.20769026839425,0.994,0.0,0.9995,4.0591108376979825
|
171 |
+
20,timbre,boost_audio,0.9995714287757873,-4.20769026839425,0.994,0.0,0.9995,4.059110817432404
|
172 |
+
30,timbre,boost_audio,0.9995714287757873,-4.20769026839425,0.994,0.0,0.9995,4.059110471248626
|
173 |
+
40,timbre,boost_audio,0.9995714287757873,-4.20769026839425,0.994,0.0,0.9995,4.0591104793548585
|
174 |
+
50,timbre,boost_audio,0.9995714287757873,-4.20769026839425,0.994,0.0,0.9995,4.059110713958741
|
175 |
+
60,timbre,boost_audio,0.9995714287757873,-4.20769026839425,0.994,0.0,0.9995,4.059110548734665
|
176 |
+
70,timbre,boost_audio,0.9995714287757873,-4.20769026839425,0.994,0.0,0.9995,4.059110403060913
|
177 |
+
80,timbre,boost_audio,0.9995714287757873,-4.20769026839425,0.994,0.0,0.9995,4.059110761404037
|
178 |
+
90,timbre,boost_audio,0.9995000002384186,-4.206514177135194,0.994,0.0,0.9995,4.059110458850861
|
179 |
+
10,timbre,duck_audio,0.9996428573131562,-4.208866359653306,0.996,0.0,0.999625,4.059110761404037
|
180 |
+
20,timbre,duck_audio,0.9997142858505249,-4.210042450912361,0.996,0.0,0.999625,4.059110548734665
|
181 |
+
30,timbre,duck_audio,0.9997142858505249,-4.209715574259514,0.995,0.0,0.9995625,4.0591104793548585
|
182 |
+
40,timbre,duck_audio,0.9998571429252624,-4.212067756777626,0.996,0.0,0.999625,4.059110817432404
|
183 |
+
50,timbre,duck_audio,0.9999285714626313,-4.213243848036681,0.996,0.0,0.9996875,4.059110451459885
|
184 |
+
60,timbre,duck_audio,0.9999285714626313,-4.213243848036681,0.996,0.0,0.9996875,4.059110548734665
|
185 |
+
70,timbre,duck_audio,0.9999285714626313,-4.213243848036681,0.997,0.0,0.99975,4.059110817432404
|
186 |
+
80,timbre,duck_audio,0.9999285714626313,-4.213243848036681,0.997,0.0,0.9998125,4.059110548734665
|
187 |
+
90,timbre,duck_audio,0.9998571429252624,-4.212067756777626,0.996,0.0,0.99975,4.059110548734665
|
188 |
+
0.001,timbre,shush,0.9995714287757873,-4.20769026839425,0.994,0.0,0.9995,4.059048800945282
|
189 |
+
0.01,timbre,shush,0.9995714287757873,-4.20769026839425,0.995,0.0,0.9995625,4.051508974552155
|
190 |
+
0.1,timbre,shush,0.999071429014206,-4.19945762958086,0.988,0.0,0.99875,4.045620162963867
|
191 |
+
0.3,timbre,shush,0.9954285728931427,-4.1511855478919735,0.965,0.0,0.996375,3.8637656059265137
|
192 |
+
2,timbre,smooth,0.9995714287757873,-4.207363391741403,0.996,0.0,0.9995625,4.063563228368759
|
193 |
+
4,timbre,smooth,0.9987857148647309,-4.195080141197484,0.98,0.0,0.998375,4.058638134479523
|
194 |
+
8,timbre,smooth,0.9945000024437904,-4.127888223895409,0.915,0.0,0.993875,4.05468354845047
|
195 |
+
10,timbre,smooth,0.9670000151991844,-3.7011238968243534,0.799,0.0,0.986375,4.050110034942627
|
196 |
+
20,timbre,smooth,0.8466428982019425,-2.253303971129543,0.409,0.0,0.9485,3.971804225921631
|
197 |
+
40,timbre,smooth,0.7880000421404838,-1.721840385352955,0.041,0.0,0.829125,3.8058924539089203
|
198 |
+
12k,timbre,aac_compression,0.8436428980231285,-2.2481979190459773,0.145,0.0,0.8739375,2.734997652888298
|
199 |
+
24k,timbre,aac_compression,0.9971428583264351,-4.172384230439009,0.971,0.0,0.997125,2.846291582584381
|
200 |
+
32k,timbre,aac_compression,0.9980714294910431,-4.1839729819126195,0.98,0.0,0.9980625,3.209427271962166
|
201 |
+
64k,timbre,aac_compression,0.9981428580284119,-4.185802826477369,0.986,0.0,0.9985,3.681292848825455
|
202 |
+
128k,timbre,aac_compression,0.9982857151031495,-4.187501255689788,0.985,0.0,0.9985,3.7157825474739075
|
203 |
+
256k,timbre,aac_compression,0.9982857151031495,-4.187501255689788,0.985,0.0,0.9985,3.7157825474739075
|
204 |
+
12k,timbre,mp3_compression,0.9992142860889435,-4.201809812098971,0.993,0.0,0.999375,3.330306144237518
|
205 |
+
24k,timbre,mp3_compression,0.9992142860889435,-4.201809812098971,0.993,0.0,0.999375,3.330306144237518
|
206 |
+
32k,timbre,mp3_compression,0.9992142860889435,-4.201809812098971,0.993,0.0,0.999375,3.330306144237518
|
207 |
+
64k,timbre,mp3_compression,0.9992142860889435,-4.201809812098971,0.993,0.0,0.999375,3.330306144237518
|
208 |
+
128k,timbre,mp3_compression,0.9992142860889435,-4.201809812098971,0.993,0.0,0.999375,3.330306144237518
|
209 |
+
256k,timbre,mp3_compression,0.9992142860889435,-4.201809812098971,0.993,0.0,0.999375,3.330306144237518
|
backend/environment.yml
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: omniseal-benchmark-backend
|
2 |
+
channels:
|
3 |
+
- defaults
|
4 |
+
- conda-forge
|
5 |
+
dependencies:
|
6 |
+
- python=3.11
|
7 |
+
- flask=3.0.3
|
8 |
+
- werkzeug=3.0.3
|
9 |
+
- pip
|
10 |
+
- pip:
|
11 |
+
- watchdog
|
backend/requirements.txt
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
Flask==2.0.1
|
2 |
-
Werkzeug==2.0.1
|
3 |
-
watchdog
|
|
|
|
|
|
|
|
frontend/package-lock.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
frontend/src/API.ts
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
class API {
|
2 |
+
static async fetchIndex(): Promise<string> {
|
3 |
+
const response = await fetch("/");
|
4 |
+
if (!response.ok) throw new Error("Failed to fetch index.html");
|
5 |
+
return response.text();
|
6 |
+
}
|
7 |
+
|
8 |
+
static async fetchStaticFile(path: string): Promise<string> {
|
9 |
+
const response = await fetch(`/${path}`);
|
10 |
+
if (!response.ok) throw new Error(`Failed to fetch ${path}`);
|
11 |
+
return response.text();
|
12 |
+
}
|
13 |
+
}
|
14 |
+
|
15 |
+
export default API;
|
frontend/src/App.tsx
CHANGED
@@ -1,11 +1,30 @@
|
|
1 |
-
import { useState } from 'react'
|
|
|
2 |
|
3 |
function App() {
|
4 |
const [count, setCount] = useState<number>(0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
return (
|
7 |
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-100">
|
8 |
-
<div className="card w-
|
9 |
<div className="card-body">
|
10 |
<h2 className="card-title">Flask + React + Docker</h2>
|
11 |
<p>Simple proof of concept with Flask backend serving a React frontend.</p>
|
@@ -19,6 +38,33 @@ function App() {
|
|
19 |
</div>
|
20 |
</div>
|
21 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
</div>
|
23 |
)
|
24 |
}
|
|
|
1 |
+
import { useState, useEffect } from 'react'
|
2 |
+
import API from './API'
|
3 |
|
4 |
function App() {
|
5 |
const [count, setCount] = useState<number>(0)
|
6 |
+
const [csvRows, setCsvRows] = useState<string[][]>([])
|
7 |
+
const [csvHeader, setCsvHeader] = useState<string[]>([])
|
8 |
+
const [loading, setLoading] = useState<boolean>(true)
|
9 |
+
const [error, setError] = useState<string | null>(null)
|
10 |
+
|
11 |
+
useEffect(() => {
|
12 |
+
API.fetchStaticFile('data/ravdess_1k_audio_benchmark.csv')
|
13 |
+
.then((csvText) => {
|
14 |
+
const rows = csvText.trim().split('\n').map(row => row.split(','))
|
15 |
+
setCsvHeader(rows[0])
|
16 |
+
setCsvRows(rows.slice(1))
|
17 |
+
setLoading(false)
|
18 |
+
})
|
19 |
+
.catch((err) => {
|
20 |
+
setError('Failed to fetch CSV: ' + err.message)
|
21 |
+
setLoading(false)
|
22 |
+
})
|
23 |
+
}, [])
|
24 |
|
25 |
return (
|
26 |
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-100">
|
27 |
+
<div className="card w-11/12 max-w-4xl bg-base-100 shadow-xl mb-8">
|
28 |
<div className="card-body">
|
29 |
<h2 className="card-title">Flask + React + Docker</h2>
|
30 |
<p>Simple proof of concept with Flask backend serving a React frontend.</p>
|
|
|
38 |
</div>
|
39 |
</div>
|
40 |
</div>
|
41 |
+
<div className="w-11/12 max-w-4xl bg-white rounded shadow p-4 overflow-auto">
|
42 |
+
<h3 className="font-bold mb-2">ravdess_1k_audio_benchmark.csv</h3>
|
43 |
+
{loading && <div>Loading...</div>}
|
44 |
+
{error && <div className="text-red-500">{error}</div>}
|
45 |
+
{!loading && !error && (
|
46 |
+
<div className="overflow-x-auto">
|
47 |
+
<table className="table table-zebra w-full text-xs">
|
48 |
+
<thead>
|
49 |
+
<tr>
|
50 |
+
{csvHeader.map((col, idx) => (
|
51 |
+
<th key={idx}>{col}</th>
|
52 |
+
))}
|
53 |
+
</tr>
|
54 |
+
</thead>
|
55 |
+
<tbody>
|
56 |
+
{csvRows.map((row, i) => (
|
57 |
+
<tr key={i}>
|
58 |
+
{row.map((cell, j) => (
|
59 |
+
<td key={j}>{cell}</td>
|
60 |
+
))}
|
61 |
+
</tr>
|
62 |
+
))}
|
63 |
+
</tbody>
|
64 |
+
</table>
|
65 |
+
</div>
|
66 |
+
)}
|
67 |
+
</div>
|
68 |
</div>
|
69 |
)
|
70 |
}
|
package.json
DELETED
@@ -1,6 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"devDependencies": {
|
3 |
-
"@types/react": "^19.1.6",
|
4 |
-
"@types/react-dom": "^19.1.6"
|
5 |
-
}
|
6 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|