summaryrefslogtreecommitdiff
path: root/recording/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'recording/config.go')
-rw-r--r--recording/config.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/recording/config.go b/recording/config.go
index 975887b..6d8704b 100644
--- a/recording/config.go
+++ b/recording/config.go
@@ -9,6 +9,7 @@ type TaskConfig struct {
RoomId common.RoomId `mapstructure:"room_id"`
Transport TransportConfig `mapstructure:"transport"`
Download DownloadConfig `mapstructure:"download"`
+ Watch WatchConfig `mapstructure:"watch"`
}
type TransportConfig struct {
@@ -22,6 +23,10 @@ type DownloadConfig struct {
DiskWriteBufferBytes int `mapstructure:"disk_write_buffer_bytes"`
}
+type WatchConfig struct {
+ LiveInterruptedRestartSleepSeconds int `mapstructure:"live_interrupted_restart_sleep_seconds"`
+}
+
func DefaultTransportConfig() TransportConfig {
return TransportConfig{
SocketTimeoutSeconds: 10,