Kitomas

sound profile schema prototype 1

Nov 18th, 2025
491
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.04 KB | None | 0 0
  1. {
  2.   "schema_version": 1,
  3.  
  4.   "profile_name": "test",
  5.  
  6.   "comments": [
  7.     "This is subject to a lot of change and is mostly just a proof of concept,",
  8.     "but the general idea is that volumes are tied to a given scene and their",
  9.     "associated sound effects/music tracks, and effects are sorted in the",
  10.     "array by their order in the chain pipeline.",
  11.    
  12.     "If a volume is omitted, a value of 100% is assumed,",
  13.     "and if an effect setting is omitted, the setting's default is assumed."
  14.    
  15.     "At the moment, presets would in theory be stored separately to the sound profile of a scene."
  16.   ],
  17.  
  18.   "volumes_linear": {
  19.     "sfx_blip0": 0.5,
  20.     "mus_stage_0_0" : 1.0
  21.   },
  22.  
  23.   "volumes_db": {
  24.     "sfx_blip1": -10.0
  25.   },
  26.  
  27.   "effects": [
  28.     { "type": "Reverb",
  29.       "enabled": true,
  30.       "settings": "PresetLargeRoom"
  31.     },
  32.     { "type": "EQ6",
  33.       "enabled": true,
  34.       "settings": {
  35.         "bands": [
  36.           { "gain_db"    : -3.0 },
  37.           { "gain_linear":  0.5 }
  38.         ]
  39.       }
  40.     }
  41.   ]
  42. }
Add Comment
Please, Sign In to add comment