av/revid/RevidInstance.go

578 lines
15 KiB
Go
Raw Normal View History

/*
NAME
revid - a testbed for re-muxing and re-directing video streams as MPEG-TS over various protocols.
DESCRIPTION
See Readme.md
AUTHORS
Alan Noble <anoble@gmail.com>
Saxon A. Nelson-Milton <saxon.milton@gmail.com>
LICENSE
revid is Copyright (C) 2017 Alan Noble.
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
along with revid in gpl.txt. If not, see [GNU licenses](http://www.gnu.org/licenses).
*/
// revid is a testbed for re-muxing and re-directing video streams as MPEG-TS over various protocols.
package revid
import (
"bufio"
"bytes"
2018-01-31 04:00:03 +03:00
"errors"
"fmt"
"io"
"io/ioutil"
"net/http"
"os"
"os/exec"
"strconv"
"time"
2018-01-31 05:35:10 +03:00
"bitbucket.org/ausocean/av/parser"
"bitbucket.org/ausocean/av/tsgenerator"
//"../parser"
//"../tsgenerator"
"bitbucket.org/ausocean/av/ringbuffer"
"bitbucket.org/ausocean/utils/smartLogger"
//"../../utils/smartLogger"
//"../ringbuffer"
)
// Misc constants
const (
2018-01-31 04:00:03 +03:00
clipDuration = 1 // s
mp2tPacketSize = 188 // MPEG-TS packet size
mp2tMaxPackets = 2016 * clipDuration // # first multiple of 7 and 8 greater than 2000
2018-01-31 09:13:04 +03:00
ringBufferSize = 100 / clipDuration
ringBufferElementSize = 1000000
2018-01-31 04:00:03 +03:00
httpTimeOut = 5 // s
packetsPerFrame = 7
h264BufferSize = 1000000
2018-01-31 04:00:03 +03:00
bitrateTime = 60
2018-01-31 09:13:04 +03:00
mjpegParserInChanLen = 100000
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-01-24 04:40:03 +03:00
)
// Config provides parameters relevant to a revid instance. A new config must
// be passed to the constructor.
2018-01-10 06:57:56 +03:00
type Config struct {
2018-01-31 04:00:03 +03:00
Input uint8
InputCodec uint8
Output uint8
RtmpEncodingMethod uint8
RtmpURL string
2018-02-01 03:01:04 +03:00
Bitrate string
2018-01-31 04:00:03 +03:00
OutputFileName string
InputFileName string
Height string
Width string
FrameRate string
HttpAddress string
Quantization string
Timeout string
Packetization uint8
IntraRefreshPeriod string
2018-01-31 04:00:03 +03:00
Logger smartLogger.LogInstance
2018-01-10 06:57:56 +03:00
}
// Enums for config struct
const (
2018-01-31 04:00:03 +03:00
NothingDefined = 0
Raspivid = 1
Rtp = 2
H264Codec = 3
File = 4
HttpOut = 5
H264 = 6
Mjpeg = 7
None = 8
Mpegts = 9
2018-02-07 09:35:34 +03:00
Rtmp = 10
Ffmpeg = 11
Revid = 12
)
// Default config settings
const (
2018-01-31 04:00:03 +03:00
defaultFrameRate = "25"
defaultWidth = "1280"
defaultHeight = "720"
defaultIntraRefreshPeriod = "100"
defaultTimeout = "0"
defaultQuantization = "35"
2018-02-01 02:55:06 +03:00
defaultBitrate = "0"
)
// RevidInst provides methods to control a revidInst session; providing methods
// to start, stop and change the state of an instance using the Config struct.
type RevidInst interface {
2018-01-10 06:57:56 +03:00
Start()
Stop()
2018-01-23 06:15:06 +03:00
ChangeState(newconfig Config) error
GetConfigRef() *Config
2018-01-24 05:31:33 +03:00
Log(logType, m string)
2018-01-24 05:26:33 +03:00
IsRunning() bool
}
// The revidInst struct provides fields to describe the state of a RevidInst.
type revidInst struct {
2018-01-31 04:00:03 +03:00
ffmpegPath string
tempDir string
ringBuffer ringbuffer.RingBuffer
config Config
isRunning bool
outputFile *os.File
inputFile *os.File
generator tsgenerator.TsGenerator
parser parser.Parser
cmd *exec.Cmd
inputReader *bufio.Reader
mjpegOutputChan chan []byte
2018-01-23 06:15:06 +03:00
}
// NewRevidInstance returns a pointer to a new revidInst with the desired
// configuration, and/or an error if construction of the new instant was not
// successful.
2018-01-23 06:15:06 +03:00
func NewRevidInstance(config Config) (r *revidInst, err error) {
2018-01-10 06:57:56 +03:00
r = new(revidInst)
2018-01-31 09:13:04 +03:00
r.ringBuffer = ringbuffer.NewRingBuffer(ringBufferSize, ringBufferElementSize)
err = r.ChangeState(config)
if err != nil {
return nil, err
}
2018-01-23 06:15:06 +03:00
switch r.config.Output {
case File:
2018-01-23 06:15:06 +03:00
r.outputFile, err = os.Create(r.config.OutputFileName)
2018-01-10 04:32:16 +03:00
if err != nil {
return nil, err
}
}
2018-01-23 06:15:06 +03:00
switch r.config.Input {
case File:
2018-01-23 06:15:06 +03:00
r.inputFile, err = os.Open(r.config.InputFileName)
2018-01-11 07:55:59 +03:00
if err != nil {
return nil, err
}
}
switch r.config.InputCodec {
case H264:
r.Log(Info, "Using H264 parser!")
r.parser = parser.NewH264Parser()
case Mjpeg:
r.parser = parser.NewMJPEGParser(mjpegParserInChanLen)
}
2018-01-31 09:13:04 +03:00
r.mjpegOutputChan = make(chan []byte, 10000)
switch r.config.Packetization {
case None:
r.parser.SetOutputChan(r.mjpegOutputChan)
case Mpegts:
frameRateAsInt, _ := strconv.Atoi(r.config.FrameRate)
r.generator = tsgenerator.NewTsGenerator(uint(frameRateAsInt))
r.parser.SetOutputChan(r.generator.GetNalInputChan())
r.generator.Start()
}
r.parser.Start()
go r.packClips()
2018-01-24 04:40:03 +03:00
r.Log(Info, "New revid instance created! config is:")
2018-01-24 07:12:22 +03:00
r.Log(Info, fmt.Sprintf("%v", r.config))
2018-01-10 06:57:56 +03:00
return
2018-01-10 04:32:16 +03:00
}
// GetConfigRef returns a pointer to the revidInst's Config struct object
2018-01-24 07:12:22 +03:00
func (r *revidInst) GetConfigRef() *Config {
return &r.config
}
// ChangeState swaps the current config of a revidInst with the passed
// configuration; checking validity and returning errors if not valid.
func (r *revidInst) ChangeState(config Config) error {
2018-01-31 04:00:03 +03:00
r.config.Logger = config.Logger
switch config.Input {
2018-01-31 04:00:03 +03:00
case Rtp:
case Raspivid:
case File:
case NothingDefined:
r.Log(Warning, "No input type defined, defaulting to raspivid!")
config.Input = Raspivid
default:
return errors.New("Bad input type defined in config!")
}
2018-01-31 04:00:03 +03:00
switch config.InputCodec {
2018-01-31 04:00:03 +03:00
case H264:
if config.Bitrate != "" && config.Quantization != "" {
bitrate, _ := strconv.Atoi(config.Bitrate)
quantization, _ := strconv.Atoi(config.Quantization)
if (bitrate > 0 && quantization > 0) || (bitrate == 0 && quantization == 0) {
2018-02-01 02:55:06 +03:00
return errors.New("Bad bitrate and quantization combination for H264 input!")
}
2018-02-01 02:55:06 +03:00
}
2018-01-31 04:00:03 +03:00
case Mjpeg:
if config.Quantization != "" {
2018-02-07 09:35:34 +03:00
quantization, _ := strconv.Atoi(config.Quantization)
if quantization > 0 || config.Bitrate == "" {
2018-02-01 02:55:06 +03:00
return errors.New("Bad bitrate or quantization for mjpeg input!")
}
2018-02-01 02:55:06 +03:00
}
2018-01-31 04:00:03 +03:00
case NothingDefined:
2018-01-31 04:16:43 +03:00
r.Log(Warning, "No input codec defined, defaulting to h264!")
2018-01-31 04:00:03 +03:00
config.InputCodec = H264
2018-02-01 02:55:06 +03:00
r.Log(Warning, "Defaulting bitrate to 0 and quantization to 35!")
config.Bitrate = defaultBitrate
config.Quantization = defaultQuantization
default:
2018-01-31 04:00:03 +03:00
return errors.New("Bad input codec defined in config!")
}
2018-01-31 04:00:03 +03:00
switch config.Output {
2018-01-31 04:00:03 +03:00
case HttpOut:
case File:
case Rtmp:
switch config.RtmpEncodingMethod {
case Revid:
case Ffmpeg:
case NothingDefine:
r.Log(Warning, "No RTMP encoding method defined, defautling to ffmpeg!")
config.RtmpEncodingMethod = Ffmpeg
}
case NothingDefined:
2018-01-31 04:00:03 +03:00
r.Log(Warning, "No output defined, defaulting to httpOut!")
config.Output = HttpOut
default:
return errors.New("Bad output type defined in config!")
}
2018-01-31 04:00:03 +03:00
2018-01-31 09:13:04 +03:00
switch config.Packetization {
case None:
case Mpegts:
case NothingDefined:
r.Log(Warning, "No packetization option defined, defaulting to none!")
config.Packetization = None
default:
return errors.New("Bad packetization option defined in config!")
}
if config.Width == "" {
2018-01-31 04:00:03 +03:00
r.Log(Warning, "No width defined, defaulting to 1280!")
config.Width = defaultWidth
} else {
if integer, err := strconv.Atoi(config.Width); integer < 0 || err != nil {
return errors.New("Bad width defined in config!")
}
}
if config.Height == "" {
2018-01-31 04:00:03 +03:00
r.Log(Warning, "No height defined, defaulting to 720!")
config.Height = defaultHeight
} else {
if integer, err := strconv.Atoi(config.Height); integer < 0 || err != nil {
return errors.New("Bad height defined in config!")
}
}
if config.FrameRate == "" {
r.Log(Warning, "No frame rate defined, defaulting to 25!")
config.FrameRate = defaultFrameRate
} else {
if integer, err := strconv.Atoi(config.FrameRate); integer < 0 || err != nil {
return errors.New("Bad frame rate defined in config!")
}
}
if config.Timeout == "" {
r.Log(Warning, "No timeout defined, defaulting to 0!")
config.Timeout = defaultTimeout
} else {
if integer, err := strconv.Atoi(config.Timeout); integer < 0 || err != nil {
return errors.New("Bad timeout defined in config!")
}
}
if config.IntraRefreshPeriod == "" {
r.Log(Warning, "No intra refresh defined, defaulting to 100!")
config.IntraRefreshPeriod = defaultIntraRefreshPeriod
} else {
if integer, err := strconv.Atoi(config.IntraRefreshPeriod); integer < 0 || err != nil {
return errors.New("Bad intra refresh defined in config!")
}
}
if config.Quantization == "" {
r.Log(Warning, "No quantization defined, defaulting to 35!")
config.Quantization = defaultQuantization
} else {
if integer, err := strconv.Atoi(config.Quantization); integer < 0 || integer > 51 || err != nil {
return errors.New("Bad quantization defined in config!")
}
}
2018-02-01 02:55:06 +03:00
r.config = config
2018-01-10 04:32:16 +03:00
return nil
}
// Log takes a logtype and message and tries to send this information to the
2018-01-31 04:16:43 +03:00
// logger provided in the revidInst config - if there is one, otherwise the message
// is sent to stdout
func (r *revidInst) Log(logType, m string) {
if r.config.Logger != nil {
r.config.Logger.Log(logType, m)
} else {
2018-01-31 04:16:43 +03:00
fmt.Println(logType + ": " + m)
}
}
// IsRunning returns true if the revidInst is currently running and false otherwise
2018-01-24 07:12:22 +03:00
func (r *revidInst) IsRunning() bool {
return r.isRunning
}
// Start invokes a revidInst to start processing video from a defined input
// and packetising to a defined output.
2018-01-10 06:57:56 +03:00
func (r *revidInst) Start() {
if r.isRunning {
2018-01-24 07:12:22 +03:00
r.Log(Warning, "revidInst.Start() called but revid already running!")
return
}
2018-01-24 07:12:22 +03:00
r.Log(Info, "Starting Revid!")
2018-01-31 04:16:43 +03:00
2018-01-23 06:15:06 +03:00
switch r.config.Input {
case Raspivid:
2018-01-24 07:12:22 +03:00
r.Log(Info, "Starting raspivid!")
2018-01-31 04:00:03 +03:00
switch r.config.InputCodec {
case H264:
r.cmd = exec.Command("raspivid",
"-cd", "H264",
"-o", "-",
"-n",
"-t", r.config.Timeout,
"-b", r.config.Bitrate,
"-qp", r.config.Quantization,
"-w", r.config.Width,
"-h", r.config.Height,
"-fps", r.config.FrameRate,
"-ih",
"-g", r.config.IntraRefreshPeriod,
)
case Mjpeg:
r.cmd = exec.Command("raspivid",
"-cd", "MJPEG",
"-o", "-",
"-n",
"-t", r.config.Timeout,
"-fps", r.config.FrameRate,
)
}
2018-01-24 07:22:52 +03:00
stdout, _ := r.cmd.StdoutPipe()
2018-01-24 07:12:22 +03:00
err := r.cmd.Start()
r.inputReader = bufio.NewReader(stdout)
if err != nil {
2018-01-24 07:12:22 +03:00
r.Log(Error, err.Error())
return
}
2018-01-24 04:40:03 +03:00
r.isRunning = true
case File:
2018-01-11 09:49:33 +03:00
stats, err := r.inputFile.Stat()
if err != nil {
2018-01-24 04:40:03 +03:00
r.Log(Error, "Could not get input file stats!")
2018-01-24 07:12:22 +03:00
r.Stop()
2018-01-22 08:46:56 +03:00
return
}
data := make([]byte, stats.Size())
_, err = r.inputFile.Read(data)
2018-01-11 09:49:33 +03:00
if err != nil {
2018-01-24 04:40:03 +03:00
r.Log(Error, err.Error())
2018-01-24 07:12:22 +03:00
r.Stop()
return
2018-01-11 09:49:33 +03:00
}
for i := range data {
r.parser.GetInputChan() <- data[i]
}
}
go r.readCamera()
go r.outputClips()
}
// readCamera reads data from the defined camera while the revidInst is running.
2018-01-31 04:00:03 +03:00
func (r *revidInst) readCamera() {
r.Log(Info, "Reading camera data!")
for r.isRunning {
data := make([]byte, 1)
_, err := io.ReadFull(r.inputReader, data)
switch {
case err != nil && err.Error() == "EOF" && r.isRunning:
r.Log(Error, "No data from camera!")
time.Sleep(5 * time.Second)
case err != nil && r.isRunning:
r.Log(Error, err.Error())
default:
2018-01-31 04:00:03 +03:00
r.parser.GetInputChan() <- data[0]
2018-01-11 09:49:33 +03:00
}
}
r.Log(Info, "Out of reading routine!")
}
2018-01-31 04:16:43 +03:00
// Stop halts any processing of video data from a camera
func (r *revidInst) Stop() {
if r.isRunning {
2018-01-24 07:12:22 +03:00
r.Log(Info, "Stopping revid!")
r.isRunning = false
if r.cmd != nil {
r.cmd.Process.Kill()
}
2018-01-24 05:23:42 +03:00
} else {
2018-01-24 07:12:22 +03:00
r.Log(Warning, "revidInst.Stop() called but revid not running!")
}
}
// packClips takes data segments; whether that be tsPackets or jpeg frames and
// packs them into clips 1s long.
func (r *revidInst) packClips() {
clipSize := 0
packetCount := 0
now := time.Now()
prevTime := now
for {
2018-01-10 06:57:56 +03:00
if clip, err := r.ringBuffer.Get(); err != nil {
2018-01-24 07:12:22 +03:00
r.Log(Error, err.Error())
switch r.config.Packetization {
case None:
r.Log(Warning, "Clearing mjpeg chan!")
for len(r.mjpegOutputChan) > 0 {
<-(r.mjpegOutputChan)
}
case Mpegts:
r.Log(Warning, "Clearing TS chan!")
for len(r.generator.GetTsOutputChan()) > 0 {
<-(r.generator.GetTsOutputChan())
}
2018-01-23 10:08:35 +03:00
}
2018-01-24 07:12:22 +03:00
time.Sleep(1 * time.Second)
} else {
for {
switch r.config.Packetization {
case None:
frame := <-r.mjpegOutputChan
upperBound := clipSize + len(frame)
copy(clip[clipSize:upperBound], frame)
2018-01-31 04:00:03 +03:00
packetCount++
clipSize += len(frame)
case Mpegts:
tsPacket := <-(r.generator.GetTsOutputChan())
tsByteSlice, err := tsPacket.ToByteSlice()
if err != nil {
r.Log(Error, err.Error())
}
upperBound := clipSize + mp2tPacketSize
copy(clip[clipSize:upperBound], tsByteSlice)
packetCount++
clipSize += mp2tPacketSize
2018-01-10 06:57:56 +03:00
}
// send if (1) our buffer is full or (2) 1 second has elapsed and we have % packetsPerFrame
now = time.Now()
if now.Sub(prevTime) > clipDuration*time.Second && len(clip) > 0 {
2018-01-10 06:57:56 +03:00
if err := r.ringBuffer.DoneWriting(clipSize); err != nil {
2018-01-24 07:12:22 +03:00
r.Log(Error, err.Error())
r.Log(Warning, "Dropping clip!")
}
clipSize = 0
packetCount = 0
prevTime = now
break
}
}
}
}
}
// outputClips takes the clips produced in the packClips method and outputs them
// to the desired output defined in the revidInst config
func (r *revidInst) outputClips() {
now := time.Now()
prevTime := now
bytes := 0
2018-01-22 08:46:56 +03:00
delay := 0
for r.isRunning {
2018-01-24 07:12:22 +03:00
switch {
2018-01-24 04:40:03 +03:00
case r.ringBuffer.GetNoOfElements() < 2:
2018-01-22 08:46:56 +03:00
delay++
2018-01-24 07:12:22 +03:00
time.Sleep(time.Duration(delay) * time.Millisecond)
2018-01-24 04:40:03 +03:00
case delay > 10:
delay -= 10
2018-01-23 06:04:37 +03:00
}
2018-01-10 06:57:56 +03:00
if clip, err := r.ringBuffer.Read(); err == nil {
2018-01-24 07:12:22 +03:00
r.Log(Debug, fmt.Sprintf("Delay is: %v\n", delay))
r.Log(Debug, fmt.Sprintf("Ring buffer size: %v\n", r.ringBuffer.GetNoOfElements()))
2018-01-23 06:15:06 +03:00
switch r.config.Output {
case File:
2018-01-31 06:14:59 +03:00
fmt.Println("")
2018-01-10 04:32:16 +03:00
r.outputFile.Write(clip)
case HttpOut:
bytes += len(clip)
2018-01-23 06:15:06 +03:00
for err := r.sendClipToHTTP(clip, r.config.HttpAddress); err != nil; {
2018-01-24 07:12:22 +03:00
r.Log(Error, err.Error())
r.Log(Warning, "Post failed trying again!")
2018-01-23 06:15:06 +03:00
err = r.sendClipToHTTP(clip, r.config.HttpAddress)
}
2018-01-10 04:32:16 +03:00
default:
2018-01-24 07:12:22 +03:00
r.Log(Error, "No output defined!")
}
2018-01-10 06:57:56 +03:00
if err := r.ringBuffer.DoneReading(); err != nil {
2018-01-24 07:12:22 +03:00
r.Log(Error, err.Error())
}
now = time.Now()
deltaTime := now.Sub(prevTime)
if deltaTime > time.Duration(bitrateTime)*time.Second {
2018-01-24 07:12:22 +03:00
r.Log(Info, fmt.Sprintf("Bitrate: %v bits/s\n", int64(float64(bytes*8)/float64(deltaTime/1e9))))
r.Log(Info, fmt.Sprintf("Ring buffer size: %v\n", r.ringBuffer.GetNoOfElements()))
prevTime = now
bytes = 0
}
}
}
}
2018-01-31 04:00:03 +03:00
// sendClipToHTTP takes a clip and an output url and posts through http.
2018-01-24 07:12:22 +03:00
func (r *revidInst) sendClipToHTTP(clip []byte, output string) error {
timeout := time.Duration(httpTimeOut * time.Second)
client := http.Client{
Timeout: timeout,
}
2018-01-22 08:46:56 +03:00
url := output + strconv.Itoa(len(clip))
2018-01-24 07:12:22 +03:00
r.Log(Debug, fmt.Sprintf("Posting %s (%d bytes)\n", url, len(clip)))
resp, err := client.Post(url, "video/mp2t", bytes.NewReader(clip)) // lighter than NewBuffer
if err != nil {
return fmt.Errorf("Error posting to %s: %s", output, err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
2018-01-23 07:57:15 +03:00
if err == nil {
2018-01-24 07:12:22 +03:00
r.Log(Debug, fmt.Sprintf("%s\n", body))
2018-01-23 09:20:45 +03:00
} else {
2018-01-24 07:12:22 +03:00
r.Log(Error, err.Error())
}
2018-01-10 06:57:56 +03:00
return nil
}