2018-01-09 07:26:34 +03:00
|
|
|
/*
|
|
|
|
NAME
|
2018-06-09 08:28:33 +03:00
|
|
|
revid.go
|
2018-01-09 07:26:34 +03:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
See Readme.md
|
|
|
|
|
|
|
|
AUTHORS
|
2018-06-07 14:50:57 +03:00
|
|
|
Saxon A. Nelson-Milton <saxon@ausocean.org>
|
|
|
|
Alan Noble <alan@ausocean.org>
|
2018-01-09 07:26:34 +03:00
|
|
|
|
|
|
|
LICENSE
|
2018-06-08 03:02:13 +03:00
|
|
|
revid is Copyright (C) 2017-2018 the Australian Ocean Lab (AusOcean)
|
2018-01-09 07:26:34 +03:00
|
|
|
|
|
|
|
It is free software: you can redistribute it and/or modify them
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2018-06-07 14:50:57 +03:00
|
|
|
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
|
2018-01-09 07:26:34 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
// revid is a testbed for re-muxing and re-directing video streams as MPEG-TS over various protocols.
|
|
|
|
package revid
|
|
|
|
|
|
|
|
import (
|
2018-01-31 04:00:03 +03:00
|
|
|
"errors"
|
2018-01-09 07:26:34 +03:00
|
|
|
"fmt"
|
2018-01-16 08:06:51 +03:00
|
|
|
"io"
|
2018-01-09 07:26:34 +03:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"strconv"
|
2018-04-16 07:54:21 +03:00
|
|
|
"time"
|
2018-02-14 10:02:57 +03:00
|
|
|
|
2018-08-19 13:59:22 +03:00
|
|
|
"bitbucket.org/ausocean/av/encoding"
|
|
|
|
"bitbucket.org/ausocean/av/encoding/flv"
|
|
|
|
"bitbucket.org/ausocean/av/encoding/mts"
|
2018-06-28 11:54:23 +03:00
|
|
|
"bitbucket.org/ausocean/av/parse"
|
2018-03-13 11:29:18 +03:00
|
|
|
"bitbucket.org/ausocean/av/rtmp"
|
2018-06-26 09:23:55 +03:00
|
|
|
"bitbucket.org/ausocean/iot/pi/netsender"
|
2018-06-27 01:20:05 +03:00
|
|
|
"bitbucket.org/ausocean/utils/ring"
|
2018-05-07 14:46:40 +03:00
|
|
|
)
|
2018-01-09 07:26:34 +03:00
|
|
|
|
2018-01-31 02:51:53 +03:00
|
|
|
// Misc constants
|
2018-01-09 07:26:34 +03:00
|
|
|
const (
|
2018-06-08 06:18:11 +03:00
|
|
|
clipDuration = 1 * time.Second
|
|
|
|
mp2tPacketSize = 188 // MPEG-TS packet size
|
|
|
|
mp2tMaxPackets = int(clipDuration * 2016 / time.Second) // # first multiple of 7 and 8 greater than 2000
|
2018-05-06 11:38:45 +03:00
|
|
|
ringBufferSize = 500
|
|
|
|
ringBufferElementSize = 150000
|
2018-05-30 14:24:30 +03:00
|
|
|
writeTimeout = 10 * time.Millisecond
|
|
|
|
readTimeout = 10 * time.Millisecond
|
2018-06-08 06:18:11 +03:00
|
|
|
httpTimeout = 5 * time.Second
|
2018-05-06 11:38:45 +03:00
|
|
|
packetsPerFrame = 7
|
2018-06-08 06:18:11 +03:00
|
|
|
bitrateTime = 1 * time.Minute
|
2018-05-06 11:38:45 +03:00
|
|
|
mjpegParserInChanLen = 100000
|
|
|
|
ffmpegPath = "/usr/local/bin/ffmpeg"
|
|
|
|
rtmpConnectionTimout = 10
|
|
|
|
outputChanSize = 1000
|
|
|
|
cameraRetryPeriod = 5 * time.Second
|
|
|
|
sendFailedDelay = 5
|
2018-04-24 08:38:30 +03:00
|
|
|
maxSendFailedErrorCount = 500
|
2018-05-06 11:38:45 +03:00
|
|
|
clipSizeThreshold = 11
|
|
|
|
rtmpConnectionMaxTries = 5
|
|
|
|
raspividNoOfTries = 3
|
2018-06-08 06:18:11 +03:00
|
|
|
sendingWaitTime = 5 * time.Millisecond
|
2018-08-10 07:37:54 +03:00
|
|
|
runContinuously = "0" // -t arg to raspivid
|
2018-01-10 06:57:56 +03:00
|
|
|
)
|
|
|
|
|
2018-01-24 07:12:22 +03:00
|
|
|
// Log Types
|
2018-01-24 04:40:03 +03:00
|
|
|
const (
|
2018-01-24 07:12:22 +03:00
|
|
|
Error = "Error"
|
2018-01-24 04:40:03 +03:00
|
|
|
Warning = "Warning"
|
2018-01-24 07:12:22 +03:00
|
|
|
Info = "Info"
|
|
|
|
Debug = "Debug"
|
2018-05-07 14:46:40 +03:00
|
|
|
Detail = "Detail"
|
2018-01-24 04:40:03 +03:00
|
|
|
)
|
|
|
|
|
2018-04-16 08:12:16 +03:00
|
|
|
// Revid provides methods to control a revid session; providing methods
|
2018-01-31 02:51:53 +03:00
|
|
|
// to start, stop and change the state of an instance using the Config struct.
|
2018-06-09 05:01:21 +03:00
|
|
|
type Revid struct {
|
2018-06-17 14:27:50 +03:00
|
|
|
ffmpegPath string
|
|
|
|
tempDir string
|
|
|
|
ringBuffer *ring.Buffer
|
|
|
|
config Config
|
|
|
|
isRunning bool
|
2018-08-19 13:59:22 +03:00
|
|
|
encoder encoding.Encoder
|
2018-06-28 11:54:23 +03:00
|
|
|
parse func(dst io.Writer, src io.Reader, delay time.Duration) error
|
2018-06-17 14:27:50 +03:00
|
|
|
cmd *exec.Cmd
|
2018-06-28 11:54:23 +03:00
|
|
|
inputReader io.ReadCloser
|
2018-06-17 14:27:50 +03:00
|
|
|
ffmpegStdin io.WriteCloser
|
|
|
|
outputChan chan []byte
|
|
|
|
setupInput func() error
|
|
|
|
getFrame func() []byte
|
|
|
|
destination loadSender
|
|
|
|
rtmpInst rtmp.Session
|
|
|
|
bitrate int
|
2018-06-26 09:23:55 +03:00
|
|
|
ns *netsender.Sender
|
2018-01-23 06:15:06 +03:00
|
|
|
}
|
|
|
|
|
2018-08-10 07:37:54 +03:00
|
|
|
// New returns a pointer to a new Revid with the desired configuration, and/or
|
|
|
|
// an error if construction of the new instance was not successful.
|
2018-06-26 09:23:55 +03:00
|
|
|
func New(c Config, ns *netsender.Sender) (*Revid, error) {
|
2018-06-09 05:01:21 +03:00
|
|
|
var r Revid
|
|
|
|
err := r.reset(c)
|
2018-01-31 05:23:18 +03:00
|
|
|
if err != nil {
|
2018-06-09 05:01:21 +03:00
|
|
|
return nil, err
|
2018-01-31 05:23:18 +03:00
|
|
|
}
|
2018-06-09 05:01:21 +03:00
|
|
|
r.ringBuffer = ring.NewBuffer(ringBufferSize, ringBufferElementSize, writeTimeout)
|
2018-03-13 07:33:31 +03:00
|
|
|
r.outputChan = make(chan []byte, outputChanSize)
|
2018-06-26 09:23:55 +03:00
|
|
|
r.ns = ns
|
2018-06-09 05:01:21 +03:00
|
|
|
return &r, nil
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
|
|
|
|
2018-06-27 01:20:05 +03:00
|
|
|
// Bitrate returns the result of the most recent bitrate check.
|
2018-06-17 14:27:50 +03:00
|
|
|
func (r *Revid) Bitrate() int {
|
|
|
|
return r.bitrate
|
2018-04-24 08:38:30 +03:00
|
|
|
}
|
|
|
|
|
2018-06-17 14:38:27 +03:00
|
|
|
// Config returns the Revid's config.
|
|
|
|
func (r *Revid) Config() *Config {
|
|
|
|
// FIXME(kortschak): This is a massive footgun and should not exist.
|
|
|
|
// Since the config's fields are accessed in running goroutines, any
|
|
|
|
// mutation is a data race. With bad luck a data race is possible by
|
|
|
|
// reading the returned value since it is possible for the running
|
|
|
|
// Ravid to mutate the config it holds.
|
2018-02-10 09:59:56 +03:00
|
|
|
return &r.config
|
|
|
|
}
|
|
|
|
|
2018-06-09 05:01:21 +03:00
|
|
|
// reset swaps the current config of a Revid with the passed
|
2018-02-10 09:59:56 +03:00
|
|
|
// configuration; checking validity and returning errors if not valid.
|
2018-06-09 05:01:21 +03:00
|
|
|
func (r *Revid) reset(config Config) error {
|
2018-02-10 09:59:56 +03:00
|
|
|
r.config.Logger = config.Logger
|
2018-02-10 10:08:14 +03:00
|
|
|
err := config.Validate(r)
|
2018-02-10 09:59:56 +03:00
|
|
|
if err != nil {
|
|
|
|
return errors.New("Config struct is bad!: " + err.Error())
|
|
|
|
}
|
2018-02-12 10:58:29 +03:00
|
|
|
r.config = config
|
2018-02-27 18:10:38 +03:00
|
|
|
|
2018-06-09 07:38:48 +03:00
|
|
|
if r.destination != nil {
|
|
|
|
err = r.destination.close()
|
|
|
|
if err != nil {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
}
|
|
|
|
}
|
2018-01-23 06:15:06 +03:00
|
|
|
switch r.config.Output {
|
2018-01-31 05:23:18 +03:00
|
|
|
case File:
|
2018-06-09 07:38:48 +03:00
|
|
|
s, err := newFileSender(config.OutputFileName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.destination = s
|
2018-04-16 08:25:28 +03:00
|
|
|
case FfmpegRtmp:
|
2018-06-09 07:38:48 +03:00
|
|
|
s, err := newFfmpegSender(config.RtmpUrl, r.config.FrameRate)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.destination = s
|
2018-06-25 04:23:26 +03:00
|
|
|
case Rtmp:
|
2018-06-09 07:38:48 +03:00
|
|
|
s, err := newRtmpSender(config.RtmpUrl, rtmpConnectionTimout, rtmpConnectionMaxTries, r.Log)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.destination = s
|
2018-02-12 10:58:29 +03:00
|
|
|
case Http:
|
2018-06-26 09:23:55 +03:00
|
|
|
r.destination = newHttpSender(r.ns, r.Log)
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
2018-02-27 18:10:38 +03:00
|
|
|
|
2018-02-10 09:59:56 +03:00
|
|
|
switch r.config.Input {
|
|
|
|
case Raspivid:
|
2018-06-24 15:01:09 +03:00
|
|
|
r.setupInput = r.startRaspivid
|
2018-02-10 09:59:56 +03:00
|
|
|
case File:
|
2018-02-12 10:58:29 +03:00
|
|
|
r.setupInput = r.setupInputForFile
|
2018-01-10 04:32:16 +03:00
|
|
|
}
|
2018-01-30 09:24:39 +03:00
|
|
|
switch r.config.InputCodec {
|
2018-01-31 05:23:18 +03:00
|
|
|
case H264:
|
|
|
|
r.Log(Info, "Using H264 parser!")
|
2018-06-28 11:54:23 +03:00
|
|
|
r.parse = parse.H264
|
2018-01-31 05:23:18 +03:00
|
|
|
case Mjpeg:
|
2018-02-10 09:59:56 +03:00
|
|
|
r.Log(Info, "Using MJPEG parser!")
|
2018-06-28 11:54:23 +03:00
|
|
|
r.parse = parse.MJPEG
|
2018-01-30 09:24:39 +03:00
|
|
|
}
|
2018-02-27 18:10:38 +03:00
|
|
|
|
|
|
|
switch r.config.Packetization {
|
|
|
|
case None:
|
|
|
|
// no packetisation - Revid output chan grabs raw data straight from parser
|
2018-06-28 11:54:23 +03:00
|
|
|
r.parse = func(dst io.Writer, src io.Reader, _ time.Duration) error {
|
|
|
|
// FIXME(kortschak): Reduce this allocation mess. It exists
|
|
|
|
// because we do not know that the dst will not modify the
|
|
|
|
// buffer. It shouldn't, but ...
|
|
|
|
for {
|
|
|
|
var b [4 << 10]byte
|
|
|
|
n, rerr := src.Read(b[:])
|
|
|
|
_, werr := dst.Write(b[:n])
|
|
|
|
if rerr != nil {
|
|
|
|
return rerr
|
|
|
|
}
|
|
|
|
if werr != nil {
|
|
|
|
return werr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-12 10:58:29 +03:00
|
|
|
r.getFrame = r.getFrameNoPacketization
|
2018-06-09 08:28:33 +03:00
|
|
|
return nil
|
2018-02-27 18:10:38 +03:00
|
|
|
case Mpegts:
|
2018-07-07 08:57:59 +03:00
|
|
|
r.Log(Info, "Using MPEGTS packetisation")
|
2018-08-19 14:09:57 +03:00
|
|
|
frameRate, _ := strconv.ParseFloat(r.config.FrameRate, 64)
|
|
|
|
r.encoder = mts.NewEncoder(frameRate)
|
2018-02-27 18:10:38 +03:00
|
|
|
case Flv:
|
2018-07-07 08:57:59 +03:00
|
|
|
r.Log(Info, "Using FLV packetisation")
|
|
|
|
frameRate, _ := strconv.Atoi(r.config.FrameRate)
|
2018-08-19 14:35:04 +03:00
|
|
|
r.encoder = flv.NewEncoder(true, true, frameRate)
|
2018-01-30 09:24:39 +03:00
|
|
|
}
|
2018-02-27 18:10:38 +03:00
|
|
|
// We have packetization of some sort, so we want to send data to Generator
|
|
|
|
// to perform packetization
|
|
|
|
r.getFrame = r.getFramePacketization
|
|
|
|
|
2018-02-10 09:59:56 +03:00
|
|
|
return nil
|
2018-01-10 04:32:16 +03:00
|
|
|
}
|
|
|
|
|
2018-02-10 09:59:56 +03:00
|
|
|
// Log takes a logtype and message and tries to send this information to the
|
2018-04-16 08:12:16 +03:00
|
|
|
// logger provided in the revid config - if there is one, otherwise the message
|
2018-02-10 09:59:56 +03:00
|
|
|
// is sent to stdout
|
2018-06-09 05:01:21 +03:00
|
|
|
func (r *Revid) Log(logType, m string) {
|
2018-06-09 08:28:33 +03:00
|
|
|
if r.config.Verbosity != Yes {
|
|
|
|
return
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
2018-06-09 08:28:33 +03:00
|
|
|
if r.config.Logger != nil {
|
|
|
|
r.config.Logger.Log("revid", logType, m)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
fmt.Println(logType + ": " + m)
|
2018-01-24 07:12:22 +03:00
|
|
|
}
|
|
|
|
|
2018-06-17 14:41:33 +03:00
|
|
|
// IsRunning returns whether the receiver is running.
|
2018-06-09 05:01:21 +03:00
|
|
|
func (r *Revid) IsRunning() bool {
|
2018-02-10 09:59:56 +03:00
|
|
|
return r.isRunning
|
|
|
|
}
|
|
|
|
|
2018-06-09 05:01:21 +03:00
|
|
|
// Start invokes a Revid to start processing video from a defined input
|
2018-02-27 18:10:38 +03:00
|
|
|
// and packetising (if theres packetization) to a defined output.
|
2018-06-09 05:01:21 +03:00
|
|
|
func (r *Revid) Start() {
|
2018-02-10 09:59:56 +03:00
|
|
|
if r.isRunning {
|
2018-06-09 05:01:21 +03:00
|
|
|
r.Log(Warning, "Revid.Start() called but revid already running!")
|
2018-02-10 09:59:56 +03:00
|
|
|
return
|
|
|
|
}
|
2018-06-27 01:20:05 +03:00
|
|
|
r.Log(Info, "Starting Revid")
|
|
|
|
r.Log(Debug, "Setting up output")
|
2018-05-06 11:03:44 +03:00
|
|
|
r.isRunning = true
|
2018-06-27 01:20:05 +03:00
|
|
|
r.Log(Info, "Starting output routine")
|
2018-05-06 11:03:44 +03:00
|
|
|
go r.outputClips()
|
2018-06-27 01:20:05 +03:00
|
|
|
r.Log(Info, "Starting clip packing routine")
|
2018-05-06 11:12:02 +03:00
|
|
|
go r.packClips()
|
2018-06-27 01:20:05 +03:00
|
|
|
r.Log(Info, "Setting up input and receiving content")
|
2018-05-06 11:03:44 +03:00
|
|
|
go r.setupInput()
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stop halts any processing of video data from a camera or file
|
2018-06-09 05:01:21 +03:00
|
|
|
func (r *Revid) Stop() {
|
2018-03-17 16:29:42 +03:00
|
|
|
if !r.isRunning {
|
2018-06-09 05:01:21 +03:00
|
|
|
r.Log(Warning, "Revid.Stop() called but revid not running!")
|
2018-03-17 16:29:42 +03:00
|
|
|
return
|
|
|
|
}
|
2018-05-07 05:53:50 +03:00
|
|
|
|
2018-04-16 07:54:21 +03:00
|
|
|
r.Log(Info, "Stopping revid!")
|
|
|
|
r.isRunning = false
|
2018-05-06 10:18:17 +03:00
|
|
|
|
2018-05-06 11:12:02 +03:00
|
|
|
r.Log(Info, "Killing input proccess!")
|
2018-04-16 07:54:21 +03:00
|
|
|
// If a cmd process is running, we kill!
|
|
|
|
if r.cmd != nil && r.cmd.Process != nil {
|
|
|
|
r.cmd.Process.Kill()
|
|
|
|
}
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
|
|
|
|
2018-02-27 18:10:38 +03:00
|
|
|
// getFrameNoPacketization gets a frame directly from the revid output chan
|
2018-08-19 13:59:22 +03:00
|
|
|
// as we don't need to go through the encoder with no packetization settings
|
2018-06-09 05:01:21 +03:00
|
|
|
func (r *Revid) getFrameNoPacketization() []byte {
|
2018-02-12 10:58:29 +03:00
|
|
|
return <-r.outputChan
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
|
|
|
|
2018-02-27 18:10:38 +03:00
|
|
|
// getFramePacketization gets a frame from the generators output chan - the
|
2018-08-19 13:59:22 +03:00
|
|
|
// the encoder being an mpegts or flv encoder depending on the config
|
2018-06-09 05:01:21 +03:00
|
|
|
func (r *Revid) getFramePacketization() []byte {
|
2018-08-19 14:58:20 +03:00
|
|
|
return <-r.encoder.Stream()
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
|
|
|
|
2018-08-19 14:58:20 +03:00
|
|
|
// TODO(kortschak): Factor this out to an io.Writer type and remove the Stream chans.
|
|
|
|
// Also add a no-op encoder that handles non-packeted data.
|
|
|
|
//
|
2018-02-27 18:10:38 +03:00
|
|
|
// packClips takes data segments; whether that be tsPackets or mjpeg frames and
|
|
|
|
// packs them into clips consisting of the amount frames specified in the config
|
2018-06-09 05:01:21 +03:00
|
|
|
func (r *Revid) packClips() {
|
2018-02-10 09:59:56 +03:00
|
|
|
clipSize := 0
|
|
|
|
packetCount := 0
|
2018-05-06 10:46:38 +03:00
|
|
|
for r.isRunning {
|
2018-05-30 14:24:30 +03:00
|
|
|
select {
|
|
|
|
// TODO: This is temporary, need to work out how to make this work
|
|
|
|
// for cases when there is not packetisation.
|
2018-08-19 14:58:20 +03:00
|
|
|
case frame := <-r.encoder.Stream():
|
2018-05-30 14:24:30 +03:00
|
|
|
lenOfFrame := len(frame)
|
|
|
|
if lenOfFrame > ringBufferElementSize {
|
|
|
|
r.Log(Warning, fmt.Sprintf("Frame was too big: %v bytes, getting another one!", lenOfFrame))
|
|
|
|
frame = r.getFrame()
|
|
|
|
lenOfFrame = len(frame)
|
|
|
|
}
|
|
|
|
_, err := r.ringBuffer.Write(frame)
|
|
|
|
if err != nil {
|
2018-05-31 01:17:14 +03:00
|
|
|
if err == ring.ErrDropped {
|
2018-05-30 14:24:30 +03:00
|
|
|
r.Log(Warning, fmt.Sprintf("dropped %d byte frame", len(frame)))
|
2018-06-20 07:29:38 +03:00
|
|
|
} else {
|
|
|
|
r.Log(Error, err.Error())
|
2018-05-30 14:24:30 +03:00
|
|
|
}
|
2018-05-24 05:28:49 +03:00
|
|
|
}
|
2018-05-30 14:24:30 +03:00
|
|
|
packetCount++
|
|
|
|
clipSize += lenOfFrame
|
2018-06-20 08:08:34 +03:00
|
|
|
if packetCount >= r.config.FramesPerClip {
|
2018-05-30 14:24:30 +03:00
|
|
|
r.ringBuffer.Flush()
|
|
|
|
clipSize = 0
|
|
|
|
packetCount = 0
|
|
|
|
continue
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
2018-05-30 14:24:30 +03:00
|
|
|
default:
|
2018-06-20 06:18:08 +03:00
|
|
|
time.Sleep(5 * time.Millisecond)
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// outputClips takes the clips produced in the packClips method and outputs them
|
2018-04-16 08:12:16 +03:00
|
|
|
// to the desired output defined in the revid config
|
2018-06-09 05:01:21 +03:00
|
|
|
func (r *Revid) outputClips() {
|
2018-02-10 09:59:56 +03:00
|
|
|
now := time.Now()
|
|
|
|
prevTime := now
|
|
|
|
bytes := 0
|
2018-03-14 01:13:36 +03:00
|
|
|
delay := 0
|
2018-02-10 09:59:56 +03:00
|
|
|
for r.isRunning {
|
|
|
|
// Here we slow things down as much as we can to decrease cpu usage
|
|
|
|
switch {
|
2018-05-30 14:24:30 +03:00
|
|
|
case r.ringBuffer.Len() < 2:
|
2018-03-13 12:29:15 +03:00
|
|
|
delay++
|
2018-02-10 09:59:56 +03:00
|
|
|
time.Sleep(time.Duration(delay) * time.Millisecond)
|
2018-03-13 13:49:24 +03:00
|
|
|
case delay > 0:
|
|
|
|
delay--
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
|
|
|
// If the ringbuffer has something we can read and send off
|
2018-06-04 04:59:35 +03:00
|
|
|
chunk, err := r.ringBuffer.Next(readTimeout)
|
2018-05-30 14:24:30 +03:00
|
|
|
if err != nil || !r.isRunning {
|
|
|
|
if err == io.EOF {
|
|
|
|
break
|
2018-05-07 14:46:40 +03:00
|
|
|
}
|
2018-05-30 14:24:30 +03:00
|
|
|
continue
|
|
|
|
}
|
2018-05-03 07:58:14 +03:00
|
|
|
|
2018-06-04 04:59:35 +03:00
|
|
|
bytes += chunk.Len()
|
2018-05-30 14:24:30 +03:00
|
|
|
r.Log(Detail, "About to send")
|
2018-06-09 07:38:48 +03:00
|
|
|
err = r.destination.load(chunk)
|
|
|
|
if err != nil {
|
|
|
|
r.Log(Error, "failed to load clip")
|
|
|
|
}
|
|
|
|
err = r.destination.send()
|
2018-05-30 14:24:30 +03:00
|
|
|
if err == nil {
|
2018-06-09 07:38:48 +03:00
|
|
|
r.Log(Detail, "sent clip")
|
2018-05-30 14:24:30 +03:00
|
|
|
}
|
2018-05-06 16:33:44 +03:00
|
|
|
|
2018-06-04 04:59:35 +03:00
|
|
|
if r.isRunning && err != nil && chunk.Len() > 11 {
|
2018-05-30 14:24:30 +03:00
|
|
|
r.Log(Debug, "Send failed! Trying again")
|
|
|
|
// Try and send again
|
2018-06-09 07:38:48 +03:00
|
|
|
err = r.destination.send()
|
|
|
|
r.Log(Error, err.Error())
|
2018-05-30 14:24:30 +03:00
|
|
|
|
|
|
|
// if there's still an error we try and reconnect, unless we're stopping
|
|
|
|
for r.isRunning && err != nil {
|
|
|
|
r.Log(Debug, "Send failed a again! Trying to reconnect...")
|
|
|
|
time.Sleep(time.Duration(sendFailedDelay) * time.Millisecond)
|
2018-02-10 09:59:56 +03:00
|
|
|
r.Log(Error, err.Error())
|
2018-05-30 14:24:30 +03:00
|
|
|
|
2018-06-09 07:38:48 +03:00
|
|
|
if rs, ok := r.destination.(restarter); ok {
|
|
|
|
r.Log(Debug, fmt.Sprintf("restarting %T session", rs))
|
|
|
|
err = rs.restart()
|
|
|
|
if err != nil {
|
|
|
|
// TODO(kortschak): Make this "Fatal" when that exists.
|
|
|
|
r.Log(Error, "failed to restart rtmp session")
|
|
|
|
r.isRunning = false
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Log(Info, "restarted rtmp session")
|
2018-05-30 14:24:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
r.Log(Debug, "Trying to send again with new connection...")
|
2018-06-09 07:38:48 +03:00
|
|
|
err = r.destination.send()
|
2018-06-14 16:24:44 +03:00
|
|
|
if err != nil {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
}
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
2018-05-30 14:24:30 +03:00
|
|
|
}
|
|
|
|
|
2018-06-09 07:38:48 +03:00
|
|
|
r.destination.release()
|
|
|
|
|
2018-05-30 14:24:30 +03:00
|
|
|
r.Log(Detail, "Done reading that clip from ringbuffer...")
|
|
|
|
|
|
|
|
// Log some information regarding bitrate and ring buffer size if it's time
|
|
|
|
now = time.Now()
|
|
|
|
deltaTime := now.Sub(prevTime)
|
2018-06-08 06:18:11 +03:00
|
|
|
if deltaTime > bitrateTime {
|
2018-06-17 14:27:50 +03:00
|
|
|
// FIXME(kortschak): For subsecond deltaTime, this will give infinite bitrate.
|
|
|
|
r.bitrate = int(float64(bytes*8) / float64(deltaTime/time.Second))
|
|
|
|
r.Log(Debug, fmt.Sprintf("Bitrate: %v bits/s\n", r.bitrate))
|
2018-05-30 14:24:30 +03:00
|
|
|
r.Log(Debug, fmt.Sprintf("Ring buffer size: %v\n", r.ringBuffer.Len()))
|
|
|
|
prevTime = now
|
|
|
|
bytes = 0
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
|
|
|
}
|
2018-03-14 12:24:11 +03:00
|
|
|
r.Log(Info, "Not outputting clips anymore!")
|
2018-06-09 07:38:48 +03:00
|
|
|
err := r.destination.close()
|
2018-02-10 09:59:56 +03:00
|
|
|
if err != nil {
|
2018-06-09 07:38:48 +03:00
|
|
|
r.Log(Error, "failed to close destination")
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
2018-01-23 08:13:13 +03:00
|
|
|
}
|
|
|
|
|
2018-06-24 15:01:09 +03:00
|
|
|
// startRaspivid sets up things for input from raspivid i.e. starts
|
2018-02-27 18:10:38 +03:00
|
|
|
// a raspivid process and pipes it's data output.
|
2018-06-24 15:01:09 +03:00
|
|
|
func (r *Revid) startRaspivid() error {
|
2018-02-10 09:59:56 +03:00
|
|
|
r.Log(Info, "Starting raspivid!")
|
|
|
|
switch r.config.InputCodec {
|
|
|
|
case H264:
|
2018-06-24 15:01:09 +03:00
|
|
|
args := []string{
|
|
|
|
"-cd", "H264",
|
2018-05-03 15:36:17 +03:00
|
|
|
"-o", "-",
|
|
|
|
"-n",
|
2018-08-10 07:37:54 +03:00
|
|
|
"-t", runContinuously,
|
2018-05-05 07:31:45 +03:00
|
|
|
"-b", r.config.Bitrate,
|
2018-05-03 15:36:17 +03:00
|
|
|
"-w", r.config.Width,
|
|
|
|
"-h", r.config.Height,
|
|
|
|
"-fps", r.config.FrameRate,
|
|
|
|
"-ih",
|
|
|
|
"-g", r.config.IntraRefreshPeriod,
|
2018-05-05 07:15:07 +03:00
|
|
|
}
|
2018-05-06 11:38:45 +03:00
|
|
|
if r.config.QuantizationMode == QuantizationOn {
|
2018-06-24 15:01:09 +03:00
|
|
|
args = append(args, "-qp", r.config.Quantization)
|
2018-05-05 07:15:07 +03:00
|
|
|
}
|
|
|
|
if r.config.HorizontalFlip == Yes {
|
2018-06-24 15:01:09 +03:00
|
|
|
args = append(args, "-hf")
|
2018-05-05 07:15:07 +03:00
|
|
|
}
|
|
|
|
if r.config.VerticalFlip == Yes {
|
2018-06-24 15:01:09 +03:00
|
|
|
args = append(args, "-vf")
|
2018-05-05 07:15:07 +03:00
|
|
|
}
|
2018-05-03 15:36:17 +03:00
|
|
|
|
2018-06-24 15:01:09 +03:00
|
|
|
r.Log(Info, fmt.Sprintf("Starting raspivid with args: %v", args))
|
|
|
|
r.cmd = exec.Command("raspivid", args...)
|
|
|
|
|
2018-02-10 09:59:56 +03:00
|
|
|
case Mjpeg:
|
|
|
|
r.cmd = exec.Command("raspivid",
|
|
|
|
"-cd", "MJPEG",
|
|
|
|
"-o", "-",
|
|
|
|
"-n",
|
2018-08-10 07:37:54 +03:00
|
|
|
"-t", runContinuously,
|
2018-02-10 09:59:56 +03:00
|
|
|
"-fps", r.config.FrameRate,
|
2018-02-09 09:23:06 +03:00
|
|
|
)
|
|
|
|
}
|
2018-06-24 15:01:09 +03:00
|
|
|
stdout, err := r.cmd.StdoutPipe()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = r.cmd.Start()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-06-28 11:54:23 +03:00
|
|
|
r.inputReader = stdout
|
|
|
|
go func() {
|
|
|
|
r.Log(Info, "Reading camera data!")
|
2018-08-19 14:58:20 +03:00
|
|
|
r.parse(chunkWriter{r.encoder}, r.inputReader, 0)
|
2018-06-28 11:54:23 +03:00
|
|
|
r.Log(Info, "Not trying to read from camera anymore!")
|
|
|
|
}()
|
2018-02-12 10:58:29 +03:00
|
|
|
return nil
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
|
|
|
|
2018-06-24 15:01:09 +03:00
|
|
|
// setupInputForFile sets things up for getting input from a file
|
|
|
|
func (r *Revid) setupInputForFile() error {
|
|
|
|
fps, err := strconv.Atoi(r.config.FrameRate)
|
2018-02-15 10:02:04 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-06-28 11:54:23 +03:00
|
|
|
delay := time.Second / time.Duration(fps)
|
2018-06-24 15:01:09 +03:00
|
|
|
|
|
|
|
f, err := os.Open(r.config.InputFileName)
|
2018-02-15 10:02:04 +03:00
|
|
|
if err != nil {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
r.Stop()
|
|
|
|
return err
|
|
|
|
}
|
2018-06-24 15:01:09 +03:00
|
|
|
defer f.Close()
|
2018-06-28 11:54:23 +03:00
|
|
|
|
|
|
|
// TODO(kortschak): Maybe we want a context.Context-aware parser that we can stop.
|
2018-08-19 14:58:20 +03:00
|
|
|
return r.parse(chunkWriter{r.encoder}, f, delay)
|
2018-06-28 11:54:23 +03:00
|
|
|
}
|
|
|
|
|
2018-08-19 14:58:20 +03:00
|
|
|
// TODO(kortschak): Remove this type and revise the signature of
|
|
|
|
// the parsers to accept an encoding.Encoder.
|
|
|
|
//
|
2018-06-28 11:54:23 +03:00
|
|
|
// chunkWriter is a shim between the new function-based approach
|
|
|
|
// and the old flow-based approach.
|
2018-08-19 14:58:20 +03:00
|
|
|
type chunkWriter struct {
|
|
|
|
encoding.Encoder
|
|
|
|
}
|
2018-06-28 11:54:23 +03:00
|
|
|
|
|
|
|
func (w chunkWriter) Write(b []byte) (int, error) {
|
2018-08-19 14:58:20 +03:00
|
|
|
err := w.Encoder.Encode(b)
|
|
|
|
return len(b), err
|
2018-02-09 09:23:06 +03:00
|
|
|
}
|