mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2024-11-15 17:10:46 +00:00
keep variable names consistent in readme
This commit is contained in:
parent
8b393acc50
commit
5b86a2b7b2
12
README.md
12
README.md
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user