mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2025-01-30 06:50:46 +00:00
default bps to 256000 (same as VBAN-Text-Client SDK example) see https://github.com/vburel2018/VBAN-Text-Client
patch bump
This commit is contained in:
parent
c9c365ac54
commit
91feccc509
@ -11,6 +11,15 @@ Before any major/minor/patch bump all unit tests will be run to verify they pass
|
|||||||
|
|
||||||
- [x]
|
- [x]
|
||||||
|
|
||||||
|
## [2.5.2] - 2025-01-25
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- ip kwargs defaults to 'localhost'
|
||||||
|
- bps kwarg defaults to 256000.
|
||||||
|
- factory builder steps now logged at `DEBUG` level.
|
||||||
|
- Internal socket changes, they don't affect interface usage.
|
||||||
|
|
||||||
## [2.4.9] - 2023-08-13
|
## [2.4.9] - 2023-08-13
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -485,6 +485,8 @@ You may pass the following optional keyword arguments:
|
|||||||
- `ip`: str='localhost', ip or hostname of remote machine
|
- `ip`: str='localhost', ip or hostname of remote machine
|
||||||
- `port`: int=6980, vban udp port of remote machine.
|
- `port`: int=6980, vban udp port of remote machine.
|
||||||
- `streamname`: str='Command1', name of the stream to connect to.
|
- `streamname`: str='Command1', name of the stream to connect to.
|
||||||
|
- `bps`: int=256000, bps rate of the stream.
|
||||||
|
- `channel`: int=0, channel on which to send the UDP requests.
|
||||||
- `pdirty`: boolean=False, parameter updates
|
- `pdirty`: boolean=False, parameter updates
|
||||||
- `ldirty`: boolean=False, level updates
|
- `ldirty`: boolean=False, level updates
|
||||||
- `timeout`: int=5, amount of time (seconds) to wait for an incoming RT data packet (parameter states).
|
- `timeout`: int=5, amount of time (seconds) to wait for an incoming RT data packet (parameter states).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "vban-cmd"
|
name = "vban-cmd"
|
||||||
version = "2.5.1"
|
version = "2.5.2"
|
||||||
description = "Python interface for the VBAN RT Packet Service (Sendtext)"
|
description = "Python interface for the VBAN RT Packet Service (Sendtext)"
|
||||||
authors = [
|
authors = [
|
||||||
{name = "Onyx and Iris",email = "code@onyxandiris.online"}
|
{name = "Onyx and Iris",email = "code@onyxandiris.online"}
|
||||||
|
@ -81,7 +81,7 @@ class FactoryBase(VbanCmd):
|
|||||||
'ip': 'localhost',
|
'ip': 'localhost',
|
||||||
'port': 6980,
|
'port': 6980,
|
||||||
'streamname': 'Command1',
|
'streamname': 'Command1',
|
||||||
'bps': 0,
|
'bps': 256000,
|
||||||
'channel': 0,
|
'channel': 0,
|
||||||
'ratelimit': 0.01,
|
'ratelimit': 0.01,
|
||||||
'timeout': 5,
|
'timeout': 5,
|
||||||
|
Loading…
Reference in New Issue
Block a user