keep variable names consistent in readme

This commit is contained in:
onyx-and-iris 2022-08-08 14:26:57 +01:00
parent 8b393acc50
commit 5b86a2b7b2

View File

@ -134,7 +134,7 @@ print(strip[0].label)
example: example:
```python ```python
vm.strip[3].gainlayer[3].gain = 3.7 vban.strip[3].gainlayer[3].gain = 3.7
``` ```
Gainlayers are defined for potato version only. Gainlayers are defined for potato version only.
@ -148,7 +148,7 @@ The following properties are available.
example: example:
```python ```python
print(vm.strip[3].levels.prefader) print(vban.strip[3].levels.prefader)
``` ```
Level properties will return -200.0 if no audio detected. Level properties will return -200.0 if no audio detected.
@ -168,7 +168,7 @@ example:
```python ```python
vban.bus[4].eq = true vban.bus[4].eq = true
print(vm.bus[0].label) print(vban.bus[0].label)
``` ```
##### Modes ##### Modes
@ -194,9 +194,9 @@ The following methods are available.
example: example:
```python ```python
vm.bus[4].mode.amix = True vban.bus[4].mode.amix = True
print(vm.bus[2].mode.get()) print(vban.bus[2].mode.get())
``` ```
##### Levels ##### Levels
@ -208,7 +208,7 @@ The following properties are available.
example: example:
```python ```python
print(vm.bus[0].levels.all) print(vban.bus[0].levels.all)
``` ```
`levels.all` will return -200.0 if no audio detected. `levels.all` will return -200.0 if no audio detected.