Compare commits

..

No commits in common. "71f77b783022187dbddd87496f0449b123c6b233" and "ee3fa0a372b33a49da2a7573a794db163000051a" have entirely different histories.

3 changed files with 24 additions and 74 deletions

View File

@ -11,19 +11,6 @@ Before any major/minor/patch bump all unit tests will be run to verify they pass
- [x]
## [2.1.0] - 2023-06-30
### Added
- RecorderMode added to Recorder class. See Recorder section in README for new properties and methods.
- recorder.loop is now a forwarder method for recorder.mode.loop for backwards compatibility
- RecorderArmStrip, RecorderArmBus mixed into Recorder class.
### Removed
- Recorder.loop removed from documentation
## [2.0.0] - 2023-06-25
Where possible I've attempted to make the changes backwards compatible. The breaking changes affect two higher classes, Strip and Bus, as well as the behaviour of events. All other changes are additive or QOL aimed at giving more options to the developer. For example, every low-level CAPI call is now logged and error raised on Exception, you can now register callback functions as well as observer classes, extra examples to demonstrate different use cases etc.

View File

@ -398,19 +398,13 @@ The following methods are available
- `record()`
- `ff()`
- `rew()`
- `load(filepath)`: raw string
- `goto(time_string)`: time string in format `hh:mm:ss`
- `filetype(filetype)`: string, ("wav", "aiff", "bwf", "mp3")
- `load(<filepath>)`: string
The following properties are available
- `loop`: boolean
- `A1 - A5`: boolean
- `B1 - A3`: boolean
- `samplerate`: int, (22050, 24000, 32000, 44100, 48000, 88200, 96000, 176400, 192000)
- `bitresolution`: int, (8, 16, 24, 32)
- `channel`: int, from 1 to 8
- `kbps`: int, (32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320)
- `gain`: float, from -60.0 to 12.0
example:
@ -418,46 +412,17 @@ example:
vm.recorder.play()
vm.recorder.stop()
# Enable loop play
vm.recorder.loop = True
# Disable recorder out channel B2
vm.recorder.B2 = False
# filepath as raw string
vm.recorder.load(r'C:\music\mytune.mp3')
# set the goto time to 1m 30s
vm.recorder.goto("00:01:30")
```
#### Recorder.Mode
The following properties are available
- `recbus`: boolean
- `playonload`: boolean
- `loop`: boolean
- `multitrack`: boolean
example:
```python
# Enable loop play
vm.recorder.mode.loop = True
```
#### Recorder.ArmStrip[i]|ArmBus[i]
The following method is available
- `set(val)`: boolean
example:
```python
# Arm strip 3
vm.recorder.armstrip[3].set(True)
# Arm bus 0
vm.recorder.armbus[0].set(True)
```
Recorder properties are defined as write only.
### VBAN
@ -699,7 +664,7 @@ vm.vban.outstream[0].apply(on: True, name: 'streamname', bit: 24)
## Config Files
`vm.apply_config(configname)`
`vm.apply_config(<configname>)`
You may load config files in TOML format.
Three example configs have been included with the package. Remember to save

View File

@ -80,9 +80,7 @@ class Recorder(IRemote):
@channel.setter
def channel(self, val: int):
if not 1 <= val <= 8:
self.logger.warning(f"channel got: {val} but expected a value from 1 to 8")
self.setter("channel", val)
self.getter("channel", val)
@property
def kbps(self):
@ -109,14 +107,10 @@ class Recorder(IRemote):
except UnicodeError:
raise VMError("File full directory must be a raw string")
# loop forwarder methods, for backwards compatibility
@property
def loop(self):
return self.mode.loop
def set_loop(self, val: bool):
self.setter("mode.loop", 1 if val else 0)
@loop.setter
def loop(self, val: bool):
self.mode.loop = val
loop = property(fset=set_loop)
def goto(self, time_str):
def get_sec():
@ -141,7 +135,7 @@ class Recorder(IRemote):
def filetype(self, val: str):
opts = {"wav": 1, "aiff": 2, "bwf": 3, "mp3": 100}
try:
self.setter("filetype", opts[val.lower()])
self.setter("filetype", opts[val])
except KeyError:
self.logger.warning(
f"filetype got: {val} but expected a value in {list(opts.keys())}"
@ -149,7 +143,6 @@ class Recorder(IRemote):
class RecorderMode(IRemote):
@property
def identifier(self):
return "recorder.mode"
@ -186,26 +179,31 @@ class RecorderMode(IRemote):
self.setter("multitrack", 1 if val else 0)
class RecorderArmChannel(IRemote):
class RecorderArmStrip(IRemote):
def __init__(self, remote, i):
super().__init__(remote)
self._i = i
@property
def identifier(self):
return f"recorder.armstrip[{self._i}]"
def set(self, val: bool):
self.setter("", 1 if val else 0)
class RecorderArmStrip(RecorderArmChannel):
@property
def identifier(self):
return f"recorder.armstrip[{self._i}]"
class RecorderArmBus(IRemote):
def __init__(self, remote, i):
super().__init__(remote)
self._i = i
class RecorderArmBus(RecorderArmChannel):
@property
def identifier(self):
return f"recorder.armbus[{self._i}]"
def set(self, val: bool):
self.setter("", 1 if val else 0)
def _make_armchannel_mixin(remote, kind):
"""Creates an armchannel out mixin"""