mirror of https://bitbucket.org/ausocean/av.git
revid/revid.go: further split up miscy consts
This commit is contained in:
parent
e184b091d3
commit
59024fea79
|
@ -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 (
|
||||
|
|
Loading…
Reference in New Issue