prerectime, prefix

prelim testing passes for potato
- prefix is currently write-only, so added as a method like FileType
This commit is contained in:
pblivingston
2025-12-02 18:06:02 -05:00
parent 58652b5a3f
commit d7cb1d610d
4 changed files with 18 additions and 0 deletions

View File

@@ -19,7 +19,10 @@ class Recorder : IRemote {
}
AddActionMembers -PARAMS @('play', 'stop', 'pause', 'replay', 'record', 'ff', 'rew')
AddFloatMembers -PARAMS @('gain')
AddIntMembers -PARAMS @('prerectime')
AddChannelMembers
}
@@ -147,6 +150,10 @@ class Recorder : IRemote {
}
$this.Setter('filetype', $val)
}
[void] Prefix ([string]$prefix) {
$this.Setter('prefix', $prefix)
}
}
class RecorderMode : IRemote {