Last active
August 20, 2017 09:27
-
-
Save Fire-/8f26260d609ce502bcbc7bc127f1078b to your computer and use it in GitHub Desktop.
sound settings for railgun & mixer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const [muted, unmuted] = [false, true]; | |
let Config = { | |
Software: { | |
Playback: { | |
"Device Name": "Speakers", | |
Levels: { | |
"Realtek HD Audio Output": [0.0, unmuted], | |
Microphone: [0.0, muted], | |
"Front Pink In": [-34.5, muted], | |
"Rear Blue In": [-15.0, muted], | |
Side: [0.0, unmuted], | |
}, | |
Enhancements: [], | |
Advanced: [24, 192000], | |
}, | |
Recording: { | |
"Device Name": "Line in at rear panel (Blue)", | |
Levels: { | |
"Line in at rear panel (Blue)": [-16.6, unmuted], | |
}, | |
Enhancements: [], | |
Advanced: [2, 24, 192000], | |
}, | |
Mixer: { | |
Device: 100.0, | |
"System Sounds": 5.0, | |
"Reaktek HD Audio Manager": 5.0, | |
"OBS": 100.0, | |
"VLC": 100.0, | |
Default: 30.0, | |
} | |
}, | |
Hardware: { | |
Mixer: { | |
Input: { | |
"Mic 1": { | |
Gain: 0.4, | |
EQ: { | |
High: 0.0, | |
Mid: -9.0, | |
Low: +3.0 | |
}, | |
FX: -Infinity, | |
Pan: 0.5, | |
Level: 0.0, | |
}, | |
"Mic 2": {}, | |
"Line In 3/4": {}, | |
"Line In 5/6": {}, | |
"2-track": {}, | |
"Stereo Aux Return": { | |
Level: 0.0 | |
}, | |
}, | |
Output: { | |
"Phones/Ctrl Room": 0.0, | |
"Main Mix": 4.5, | |
"2-track": {}, | |
"FX Send": {} | |
}, | |
Switch: { | |
"2-tr to ctrl room": true, | |
"2-tr to mix": false, | |
Phantom: true, | |
} | |
}, | |
Routing: { | |
Microphone: "Mixer, Mic 1", | |
Headphones: "Mixer, Phones", | |
"Computer, Speaker Out (Green)": "Mixer, 2-track, Input", | |
"Mixer, Main Out": "Computer, Line In (Blue)", | |
}, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment