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-10-03 15:39:51 +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-09-19 15:32:50 +03:00
|
|
|
"strings"
|
2018-04-16 07:54:21 +03:00
|
|
|
"time"
|
2018-02-14 10:02:57 +03:00
|
|
|
|
2018-08-20 01:19:02 +03:00
|
|
|
"bitbucket.org/ausocean/av/stream"
|
|
|
|
"bitbucket.org/ausocean/av/stream/flv"
|
2018-08-23 08:36:32 +03:00
|
|
|
"bitbucket.org/ausocean/av/stream/lex"
|
2018-08-20 01:19:02 +03:00
|
|
|
"bitbucket.org/ausocean/av/stream/mts"
|
2018-06-26 09:23:55 +03:00
|
|
|
"bitbucket.org/ausocean/iot/pi/netsender"
|
2019-01-02 08:09:47 +03:00
|
|
|
"bitbucket.org/ausocean/utils/logger"
|
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
|
|
|
|
2019-01-14 09:01:43 +03:00
|
|
|
var ()
|
|
|
|
|
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-10-19 03:50:08 +03:00
|
|
|
ringBufferSize = 10000
|
2018-05-06 11:38:45 +03:00
|
|
|
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
|
|
|
|
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
|
2018-10-19 13:41:02 +03:00
|
|
|
sendFailedDelay = 5 * time.Millisecond
|
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-09-20 04:47:08 +03:00
|
|
|
pkg = "revid:"
|
2018-01-10 06:57:56 +03:00
|
|
|
)
|
|
|
|
|
2018-09-11 10:26:33 +03:00
|
|
|
type Logger interface {
|
|
|
|
SetLevel(int8)
|
|
|
|
Log(level int8, message string, params ...interface{})
|
|
|
|
}
|
|
|
|
|
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-10-04 04:02:41 +03:00
|
|
|
// config holds the Revid configuration.
|
|
|
|
// For historical reasons it also handles logging.
|
|
|
|
// FIXME(kortschak): The relationship of concerns
|
|
|
|
// in config/ns is weird.
|
|
|
|
config Config
|
|
|
|
// ns holds the netsender.Sender responsible for HTTP.
|
|
|
|
ns *netsender.Sender
|
|
|
|
|
|
|
|
// setupInput holds the current approach to setting up
|
|
|
|
// the input stream.
|
|
|
|
setupInput func() error
|
|
|
|
|
|
|
|
// cmd is the exec'd process that may be used to produce
|
|
|
|
// the input stream.
|
|
|
|
// FIXME(kortschak): This should not exist. Replace this
|
|
|
|
// with a context.Context cancellation.
|
|
|
|
cmd *exec.Cmd
|
|
|
|
|
2018-10-19 03:50:08 +03:00
|
|
|
// lexTo, encoder and packer handle transcoding the input stream.
|
2018-11-21 14:04:28 +03:00
|
|
|
lexTo func(dst stream.Encoder, src io.Reader, delay time.Duration) error
|
|
|
|
encoder stream.Encoder
|
|
|
|
packer packer
|
2018-10-19 03:50:08 +03:00
|
|
|
// buffer handles passing frames from the transcoder
|
2018-10-04 04:02:41 +03:00
|
|
|
// to the target destination.
|
2018-10-19 03:50:08 +03:00
|
|
|
buffer *ring.Buffer
|
2018-10-04 04:02:41 +03:00
|
|
|
// destination is the target endpoint.
|
2018-11-25 09:54:52 +03:00
|
|
|
destination []loadSender
|
2018-10-04 04:02:41 +03:00
|
|
|
|
|
|
|
// bitrate hold the last send bitrate calculation result.
|
|
|
|
bitrate int
|
|
|
|
|
|
|
|
// isRunning is a loaded and cocked foot-gun.
|
|
|
|
isRunning bool
|
2018-01-23 06:15:06 +03:00
|
|
|
}
|
|
|
|
|
2018-10-19 03:50:08 +03:00
|
|
|
// packer takes data segments and packs them into clips
|
|
|
|
// of the number frames specified in the owners config.
|
|
|
|
type packer struct {
|
2019-01-08 12:09:22 +03:00
|
|
|
owner *Revid
|
|
|
|
lastTime time.Time
|
2018-12-10 02:09:20 +03:00
|
|
|
packetCount uint
|
2018-10-19 03:50:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write implements the io.Writer interface.
|
|
|
|
//
|
|
|
|
// Unless the ring buffer returns an error, all writes
|
|
|
|
// are deemed to be successful, although a successful
|
|
|
|
// write may include a dropped frame.
|
|
|
|
func (p *packer) Write(frame []byte) (int, error) {
|
|
|
|
if len(frame) > ringBufferElementSize {
|
2019-01-02 08:09:47 +03:00
|
|
|
p.owner.config.Logger.Log(logger.Warning, pkg+"frame was too big", "frame size", len(frame))
|
2018-10-19 03:50:08 +03:00
|
|
|
return len(frame), nil
|
|
|
|
}
|
|
|
|
n, err := p.owner.buffer.Write(frame)
|
|
|
|
if err != nil {
|
|
|
|
if err == ring.ErrDropped {
|
2019-01-02 08:09:47 +03:00
|
|
|
p.owner.config.Logger.Log(logger.Warning, pkg+"dropped frame", "frame size", len(frame))
|
2018-10-19 03:50:08 +03:00
|
|
|
return len(frame), nil
|
|
|
|
}
|
2019-01-14 09:01:43 +03:00
|
|
|
return n, errors.New(pkg + "unexpected ring buffer write error: " + err.Error())
|
2018-10-19 03:50:08 +03:00
|
|
|
}
|
|
|
|
p.packetCount++
|
2019-01-07 03:13:30 +03:00
|
|
|
now := time.Now()
|
2019-01-08 12:09:22 +03:00
|
|
|
if (p.owner.config.Output1 != Rtmp && now.Sub(p.lastTime) > clipDuration && p.packetCount%7 == 0) || p.owner.config.Output1 == Rtmp {
|
2018-10-19 03:50:08 +03:00
|
|
|
p.owner.buffer.Flush()
|
|
|
|
p.packetCount = 0
|
2019-01-08 12:09:22 +03:00
|
|
|
p.lastTime = now
|
2018-10-19 03:50:08 +03:00
|
|
|
}
|
|
|
|
return len(frame), nil
|
|
|
|
}
|
|
|
|
|
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-10-19 03:50:08 +03:00
|
|
|
r := Revid{ns: ns}
|
|
|
|
r.buffer = ring.NewBuffer(ringBufferSize, ringBufferElementSize, writeTimeout)
|
|
|
|
r.packer.owner = &r
|
2018-06-09 05:01:21 +03:00
|
|
|
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
|
|
|
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-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 {
|
2018-09-14 05:47:29 +03:00
|
|
|
return errors.New("Config struct is bad: " + err.Error())
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
2018-02-12 10:58:29 +03:00
|
|
|
r.config = config
|
2018-02-27 18:10:38 +03:00
|
|
|
|
2018-11-25 17:10:18 +03:00
|
|
|
for _, dest := range r.destination {
|
|
|
|
if dest != nil {
|
|
|
|
err = dest.close()
|
2018-11-25 09:54:52 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-06-09 07:38:48 +03:00
|
|
|
}
|
|
|
|
}
|
2018-11-25 09:54:52 +03:00
|
|
|
|
2018-11-25 16:15:38 +03:00
|
|
|
n := 1
|
2018-11-25 15:40:38 +03:00
|
|
|
if r.config.Output2 != 0 {
|
2018-11-25 16:15:38 +03:00
|
|
|
n = 2
|
2018-11-25 15:40:38 +03:00
|
|
|
}
|
2018-11-25 16:15:38 +03:00
|
|
|
r.destination = make([]loadSender, n)
|
2018-11-25 15:40:38 +03:00
|
|
|
|
2018-11-25 16:15:38 +03:00
|
|
|
for outNo, outType := range []uint8{r.config.Output1, r.config.Output2} {
|
|
|
|
switch outType {
|
|
|
|
case File:
|
|
|
|
s, err := newFileSender(config.OutputFileName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.destination[outNo] = s
|
|
|
|
case FfmpegRtmp:
|
2018-12-10 02:09:20 +03:00
|
|
|
s, err := newFfmpegSender(config.RtmpUrl, fmt.Sprint(r.config.FrameRate))
|
2018-11-25 16:15:38 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.destination[outNo] = s
|
|
|
|
case Rtmp:
|
|
|
|
s, err := newRtmpSender(config.RtmpUrl, rtmpConnectionTimout, rtmpConnectionMaxTries, r.config.Logger.Log)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.destination[outNo] = s
|
|
|
|
case Http:
|
|
|
|
r.destination[outNo] = newHttpSender(r.ns, r.config.Logger.Log)
|
|
|
|
case Udp:
|
|
|
|
s, err := newUdpSender(r.config.RtpAddress, r.config.Logger.Log)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.destination[outNo] = s
|
|
|
|
case Rtp:
|
2018-12-10 02:09:20 +03:00
|
|
|
s, err := newRtpSender(r.config.RtpAddress, r.config.Logger.Log, r.config.FrameRate)
|
2018-11-25 16:15:38 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.destination[outNo] = s
|
2018-11-18 06:26:29 +03:00
|
|
|
}
|
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:
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"using H264 lexer")
|
2018-08-23 08:36:32 +03:00
|
|
|
r.lexTo = lex.H264
|
2018-01-31 05:23:18 +03:00
|
|
|
case Mjpeg:
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"using MJPEG lexer")
|
2018-08-23 08:36:32 +03:00
|
|
|
r.lexTo = lex.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-08-23 08:36:32 +03:00
|
|
|
r.lexTo = func(dst stream.Encoder, src io.Reader, _ time.Duration) error {
|
2018-06-28 11:54:23 +03:00
|
|
|
for {
|
|
|
|
var b [4 << 10]byte
|
|
|
|
n, rerr := src.Read(b[:])
|
2018-08-23 08:21:12 +03:00
|
|
|
werr := dst.Encode(b[:n])
|
2018-06-28 11:54:23 +03:00
|
|
|
if rerr != nil {
|
|
|
|
return rerr
|
|
|
|
}
|
|
|
|
if werr != nil {
|
|
|
|
return werr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-19 03:50:08 +03:00
|
|
|
r.encoder = stream.NopEncoder(&r.packer)
|
2018-02-27 18:10:38 +03:00
|
|
|
case Mpegts:
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"using MPEGTS packetisation")
|
2018-12-10 02:09:20 +03:00
|
|
|
r.encoder = mts.NewEncoder(&r.packer, float64(r.config.FrameRate))
|
2018-02-27 18:10:38 +03:00
|
|
|
case Flv:
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"using FLV packetisation")
|
2019-01-11 06:17:17 +03:00
|
|
|
r.encoder, err = flv.NewEncoder(&r.packer, true, true, int(r.config.FrameRate))
|
|
|
|
if err != nil {
|
|
|
|
r.config.Logger.Log(logger.Fatal, pkg+"failed to open FLV encoder", err.Error())
|
|
|
|
}
|
2018-01-30 09:24:39 +03:00
|
|
|
}
|
2018-02-27 18:10:38 +03:00
|
|
|
|
2018-02-10 09:59:56 +03:00
|
|
|
return nil
|
2018-01-10 04:32:16 +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.
|
2019-01-13 14:31:04 +03:00
|
|
|
func (r *Revid) Start() error {
|
2018-02-10 09:59:56 +03:00
|
|
|
if r.isRunning {
|
2019-01-13 14:31:04 +03:00
|
|
|
return errors.New(pkg + "start called but revid is already running")
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"starting Revid")
|
|
|
|
r.config.Logger.Log(logger.Debug, pkg+"setting up output")
|
2018-05-06 11:03:44 +03:00
|
|
|
r.isRunning = true
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"starting output routine")
|
2018-05-06 11:03:44 +03:00
|
|
|
go r.outputClips()
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"setting up input and receiving content")
|
2019-01-13 14:31:04 +03:00
|
|
|
err := r.setupInput()
|
|
|
|
return err
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stop halts any processing of video data from a camera or file
|
2019-01-13 14:31:04 +03:00
|
|
|
func (r *Revid) Stop() error {
|
2018-03-17 16:29:42 +03:00
|
|
|
if !r.isRunning {
|
2019-01-13 14:31:04 +03:00
|
|
|
return errors.New(pkg + "stop called but revid is already stopped")
|
2018-03-17 16:29:42 +03:00
|
|
|
}
|
2018-05-07 05:53:50 +03:00
|
|
|
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"stopping revid")
|
2018-04-16 07:54:21 +03:00
|
|
|
r.isRunning = false
|
2018-05-06 10:18:17 +03:00
|
|
|
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"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()
|
|
|
|
}
|
2019-01-13 14:31:04 +03:00
|
|
|
return nil
|
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-10-19 13:41:02 +03:00
|
|
|
lastTime := time.Now()
|
|
|
|
var count int
|
|
|
|
loop:
|
2018-02-10 09:59:56 +03:00
|
|
|
for r.isRunning {
|
2018-10-19 03:50:08 +03:00
|
|
|
// If the ring buffer has something we can read and send off
|
|
|
|
chunk, err := r.buffer.Next(readTimeout)
|
2018-10-19 13:41:02 +03:00
|
|
|
switch err {
|
|
|
|
case nil:
|
|
|
|
// Do nothing.
|
|
|
|
case ring.ErrTimeout:
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Warning, pkg+"ring buffer read timeout")
|
2018-05-30 14:24:30 +03:00
|
|
|
continue
|
2018-10-19 13:41:02 +03:00
|
|
|
default:
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Error, pkg+"unexpected error", "error", err.Error())
|
2018-10-19 13:41:02 +03:00
|
|
|
fallthrough
|
|
|
|
case io.EOF:
|
|
|
|
break loop
|
2018-05-30 14:24:30 +03:00
|
|
|
}
|
2018-05-03 07:58:14 +03:00
|
|
|
|
2018-10-19 13:41:02 +03:00
|
|
|
count += chunk.Len()
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Debug, pkg+"about to send")
|
2018-11-25 17:10:18 +03:00
|
|
|
for i, dest := range r.destination {
|
|
|
|
err = dest.load(chunk)
|
2018-11-22 02:51:25 +03:00
|
|
|
if err != nil {
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Error, pkg+"failed to load clip to output"+strconv.Itoa(i))
|
2018-11-22 02:51:25 +03:00
|
|
|
}
|
2018-11-25 15:40:38 +03:00
|
|
|
}
|
2018-05-30 14:24:30 +03:00
|
|
|
|
2018-11-25 15:40:38 +03:00
|
|
|
for i, dest := range r.destination {
|
|
|
|
err = dest.send()
|
|
|
|
if err == nil {
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Debug, pkg+"sent clip to output "+strconv.Itoa(i))
|
2018-12-14 13:20:26 +03:00
|
|
|
} else if r.config.SendRetry == false {
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Warning, pkg+"send to output "+strconv.Itoa(i)+"failed", "error", err.Error())
|
2018-11-25 15:40:38 +03:00
|
|
|
} else {
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Error, pkg+"send to output "+strconv.Itoa(i)+
|
2018-11-25 15:40:38 +03:00
|
|
|
"failed, trying again", "error", err.Error())
|
|
|
|
err = dest.send()
|
|
|
|
if err != nil && chunk.Len() > 11 {
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Error, pkg+"second send attempted failed, restarting connection", "error", err.Error())
|
2018-11-25 15:40:38 +03:00
|
|
|
for err != nil {
|
|
|
|
time.Sleep(sendFailedDelay)
|
|
|
|
if rs, ok := dest.(restarter); ok {
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Debug, pkg+"restarting session", "session", rs)
|
2018-11-25 15:40:38 +03:00
|
|
|
err = rs.restart()
|
2018-11-28 08:03:56 +03:00
|
|
|
if err != nil {
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Error, pkg+"failed to restart rtmp session", "error", err.Error())
|
2018-11-28 08:03:56 +03:00
|
|
|
r.isRunning = false
|
|
|
|
return
|
2018-11-25 15:40:38 +03:00
|
|
|
}
|
2018-11-25 16:15:38 +03:00
|
|
|
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"restarted rtmp session")
|
2018-11-25 15:40:38 +03:00
|
|
|
}
|
2018-11-25 16:15:38 +03:00
|
|
|
|
2018-11-25 15:40:38 +03:00
|
|
|
err = dest.send()
|
|
|
|
if err != nil {
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Error, pkg+"send failed again, with error", "error", err.Error())
|
2018-11-25 15:40:38 +03:00
|
|
|
}
|
2018-06-09 07:38:48 +03:00
|
|
|
}
|
2018-06-14 16:24:44 +03:00
|
|
|
}
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
2018-05-30 14:24:30 +03:00
|
|
|
}
|
2018-11-24 04:44:44 +03:00
|
|
|
|
2018-11-25 16:15:38 +03:00
|
|
|
// Release the chunk back to the ring buffer for use
|
2018-11-29 06:52:39 +03:00
|
|
|
for _, dest := range r.destination {
|
|
|
|
dest.release()
|
|
|
|
}
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Debug, pkg+"done reading that clip from ring buffer")
|
2018-05-30 14:24:30 +03:00
|
|
|
|
|
|
|
// Log some information regarding bitrate and ring buffer size if it's time
|
2018-10-19 13:41:02 +03:00
|
|
|
now := time.Now()
|
|
|
|
deltaTime := now.Sub(lastTime)
|
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.
|
2018-10-19 13:41:02 +03:00
|
|
|
r.bitrate = int(float64(count*8) / float64(deltaTime/time.Second))
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Debug, pkg+"bitrate (bits/s)", "bitrate", r.bitrate)
|
|
|
|
r.config.Logger.Log(logger.Debug, pkg+"ring buffer size", "value", r.buffer.Len())
|
2018-10-19 13:41:02 +03:00
|
|
|
lastTime = now
|
|
|
|
count = 0
|
2018-02-10 09:59:56 +03:00
|
|
|
}
|
|
|
|
}
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"not outputting clips anymore")
|
2018-11-25 15:40:38 +03:00
|
|
|
for i, dest := range r.destination {
|
|
|
|
err := dest.close()
|
|
|
|
if err != nil {
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Error, pkg+"failed to close output"+strconv.Itoa(i)+" destination", "error", err.Error())
|
2018-11-25 15:40:38 +03:00
|
|
|
}
|
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 {
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"starting raspivid")
|
2018-10-03 15:39:51 +03:00
|
|
|
|
2018-10-05 01:26:26 +03:00
|
|
|
const disabled = "0"
|
|
|
|
args := []string{
|
|
|
|
"--output", "-",
|
|
|
|
"--nopreview",
|
|
|
|
"--timeout", disabled,
|
2018-12-10 02:09:20 +03:00
|
|
|
"--width", fmt.Sprint(r.config.Width),
|
|
|
|
"--height", fmt.Sprint(r.config.Height),
|
|
|
|
"--bitrate", fmt.Sprint(r.config.Bitrate),
|
|
|
|
"--framerate", fmt.Sprint(r.config.FrameRate),
|
2018-10-05 01:26:26 +03:00
|
|
|
}
|
2018-12-05 12:24:52 +03:00
|
|
|
if r.config.FlipHorizontal {
|
2018-10-05 01:26:26 +03:00
|
|
|
args = append(args, "--hflip")
|
|
|
|
}
|
2018-12-05 12:24:52 +03:00
|
|
|
if r.config.FlipVertical {
|
2018-10-05 01:26:26 +03:00
|
|
|
args = append(args, "--vflip")
|
|
|
|
}
|
2018-02-10 09:59:56 +03:00
|
|
|
switch r.config.InputCodec {
|
2018-10-03 15:39:51 +03:00
|
|
|
default:
|
|
|
|
return fmt.Errorf("revid: invalid input codec: %v", r.config.InputCodec)
|
2018-02-10 09:59:56 +03:00
|
|
|
case H264:
|
2018-10-05 01:26:26 +03:00
|
|
|
args = append(args,
|
|
|
|
"--codec", "H264",
|
|
|
|
"--inline",
|
2018-12-10 02:09:20 +03:00
|
|
|
"--intra", fmt.Sprint(r.config.IntraRefreshPeriod),
|
2018-10-05 01:26:26 +03:00
|
|
|
)
|
2018-12-10 02:09:20 +03:00
|
|
|
if r.config.Quantize {
|
|
|
|
args = append(args, "-qp", fmt.Sprint(r.config.Quantization))
|
2018-05-05 07:15:07 +03:00
|
|
|
}
|
2018-02-10 09:59:56 +03:00
|
|
|
case Mjpeg:
|
2018-10-05 01:26:26 +03:00
|
|
|
args = append(args, "--codec", "MJPEG")
|
2018-02-09 09:23:06 +03:00
|
|
|
}
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"raspivid args", "raspividArgs", strings.Join(args, " "))
|
2018-10-03 15:39:51 +03:00
|
|
|
r.cmd = exec.Command("raspivid", args...)
|
|
|
|
|
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 {
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Fatal, pkg+"cannot start raspivid", "error", err.Error())
|
2018-06-24 15:01:09 +03:00
|
|
|
}
|
2018-09-24 13:26:05 +03:00
|
|
|
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"reading camera data")
|
2018-12-10 02:09:20 +03:00
|
|
|
delay := time.Second / time.Duration(r.config.FrameRate)
|
2018-10-04 04:02:41 +03:00
|
|
|
err = r.lexTo(r.encoder, stdout, delay)
|
2019-01-02 08:09:47 +03:00
|
|
|
r.config.Logger.Log(logger.Info, pkg+"finished reading camera data")
|
2018-10-05 01:47:41 +03:00
|
|
|
return err
|
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 {
|
2018-12-10 02:09:20 +03:00
|
|
|
delay := time.Second / time.Duration(r.config.FrameRate)
|
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.Stop()
|
|
|
|
return err
|
|
|
|
}
|
2018-06-24 15:01:09 +03:00
|
|
|
defer f.Close()
|
2018-11-24 04:44:44 +03:00
|
|
|
|
2018-06-28 11:54:23 +03:00
|
|
|
// TODO(kortschak): Maybe we want a context.Context-aware parser that we can stop.
|
2018-08-23 08:36:32 +03:00
|
|
|
return r.lexTo(r.encoder, f, delay)
|
2018-02-09 09:23:06 +03:00
|
|
|
}
|