diff --git a/revid/revid.go b/revid/revid.go index ca28fc4d..68dab5b7 100644 --- a/revid/revid.go +++ b/revid/revid.go @@ -62,14 +62,18 @@ const ( rtmpConnectionTimeout = 10 ) -// Misc Constants -const ( - clipDuration = 1 * time.Second // Duration of video for each clip sent out. - bitrateTime = 1 * time.Minute // Time duration between bitrate checks. - sendFailedDelay = 5 * time.Millisecond // After a send fail, this is the delay before another send. - ffmpegPath = "/usr/local/bin/ffmpeg" - pkg = "revid:" -) +// Duration of video for each clip sent out. +const clipDuration = 1 * time.Second + +// Time duration between bitrate checks. +const bitrateTime = 1 * time.Minute + +// After a send fail, this is the delay before another send. +const sendFailedDelay = 5 * time.Millisecond + +const ffmpegPath = "/usr/local/bin/ffmpeg" + +const pkg = "revid:" // Log Types const (