mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
17 lines
546 B
TOML
17 lines
546 B
TOML
[streaming]
|
|
chunk_size = 1024
|
|
hop_size = 512 # 50% overlap ensures temporal continuity
|
|
sample_rate = 48000.0
|
|
channels = 2
|
|
|
|
[analysis]
|
|
fft_size = 2048
|
|
spectral_bins = 16 # Fixed dimensionality for consistent encoding
|
|
history_depth = 4 # Previous frames for predictability analysis
|
|
enable_transient = true
|
|
enable_information = true
|
|
|
|
[output]
|
|
format = "JsonLines" # Options: JsonLines, Csv, Binary
|
|
compression = false # Skip similar consecutive chunks
|
|
threshold = 0.95 # Cosine similarity threshold for compression
|