From ee451cbd950f82abf1df3d5e49ad74fbe9a53aa8 Mon Sep 17 00:00:00 2001 From: Keuin Date: Thu, 8 Sep 2022 03:33:41 +0800 Subject: Add watch restart sleep. --- recording/config.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'recording/config.go') 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, -- cgit v1.2.3