Skip to content

Commit

Permalink
upd readme
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasArvidsson committed Jan 25, 2018
1 parent 7662d3f commit 59e2305
Showing 1 changed file with 40 additions and 40 deletions.
80 changes: 40 additions & 40 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ If you don't have a spare soundcard in your computer to use for the capture devi
* You can also use this feature to rename the channels
* Default value is: ```["L", "R", "C", "SW","SBL", "SBR", "SL", "SL" ]```
* Explanation of default channel short names
* L: Front left
* R: Front right
* C: Center
* SW: Subwoofer/LFE
* SL: Surround left
* SR: Surround right
* SBL: Surround back left
* SBR: Surround back right
* L: Front left
* R: Front right
* C: Center
* SW: Subwoofer/LFE
* SL: Surround left
* SR: Surround right
* SBL: Surround back left
* SBR: Surround back right

**Devices**
* Devices contains the capture and render device IDs
Expand Down Expand Up @@ -151,14 +151,14 @@ You can declare a list of your favorite filters and reuse them
}
},
"outputs": {
"SL": {
"filters": [
{
"#ref": "filters/myPEQ"
}
]
}
}
"SL": {
"filters": [
{
"#ref": "filters/myPEQ"
}
]
}
}
}
```

Expand All @@ -168,16 +168,16 @@ You can declare a list of your favorite filters and reuse them
* The code below will route audio from surround(input) to surround back(output) if surround back(input) is silent
```json
"inputs": {
"SL": {
"routes": [
{
"out": "SBL",
"if": {
"silent": "SBL"
}
}
]
}
"SL": {
"routes": [
{
"out": "SBL",
"if": {
"silent": "SBL"
}
}
]
}
}
```

Expand All @@ -187,16 +187,16 @@ You can declare a list of your favorite filters and reuse them
* The result of all forks are summarized together. That means that two forks increases that channels output gain by 6.02dB
```json
"outputs": {
"L" : [
{
"gain": -6.02,
},
{
"gain": -6.02,
"invert": true,
"delay": 5
}
]
"L" : [
{
"gain": -6.02,
},
{
"gain": -6.02,
"invert": true,
"delay": 5
}
]
}
```

Expand Down Expand Up @@ -331,12 +331,12 @@ or
* Warning: FIR filters require much more CPU capacity then the other filters. WinDSP doesn't limit the number of taps you can input so use with care.
```json
{
"type": "FIR",
"file": "fir.txt"
"type": "FIR",
"file": "fir.txt"
},
{
"type": "FIR",
"file": "fir.wav"
"type": "FIR",
"file": "fir.wav"
}
```

Expand Down

0 comments on commit 59e2305

Please sign in to comment.