what's happening

This commit is contained in:
saxon.milton@gmail.com 2018-03-14 08:41:33 +10:30
parent 2787110e14
commit f443ffe6a2
1 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ const (
clipDuration = 1 // s clipDuration = 1 // s
mp2tPacketSize = 188 // MPEG-TS packet size mp2tPacketSize = 188 // MPEG-TS packet size
mp2tMaxPackets = 2016 * clipDuration // # first multiple of 7 and 8 greater than 2000 mp2tMaxPackets = 2016 * clipDuration // # first multiple of 7 and 8 greater than 2000
ringBufferSize = 10000 ringBufferSize = 1000
ringBufferElementSize = 100000 ringBufferElementSize = 100000
maxClipSize = 10000 maxClipSize = 10000
httpTimeOut = 5 // s httpTimeOut = 5 // s
@ -461,7 +461,7 @@ func (r *revidInst) setupInputForRaspivid() error {
"-o", "-", "-o", "-",
"-n", "-n",
"-t", r.config.Timeout, "-t", r.config.Timeout,
"-b", 10000, "-b", "1000",
//"-qp", r.config.Quantization, //"-qp", r.config.Quantization,
"-w", r.config.Width, "-w", r.config.Width,
"-h", r.config.Height, "-h", r.config.Height,