2020-11-02 04:09:48 +13:00
|
|
|
package types
|
|
|
|
|
2021-02-02 11:50:18 +13:00
|
|
|
import (
|
2021-03-30 11:36:13 +13:00
|
|
|
"context"
|
2021-08-30 03:09:13 +12:00
|
|
|
"errors"
|
2021-03-29 11:58:51 +13:00
|
|
|
"fmt"
|
2021-03-30 11:37:06 +13:00
|
|
|
"math"
|
|
|
|
"strings"
|
2021-03-29 11:58:51 +13:00
|
|
|
|
|
|
|
"github.com/PaesslerAG/gval"
|
2021-03-30 11:37:06 +13:00
|
|
|
"github.com/pion/webrtc/v3/pkg/media"
|
2021-02-02 11:50:18 +13:00
|
|
|
|
2022-07-14 10:58:22 +12:00
|
|
|
"github.com/demodesk/neko/pkg/types/codec"
|
2021-02-02 11:50:18 +13:00
|
|
|
)
|
|
|
|
|
2021-08-30 03:09:13 +12:00
|
|
|
var (
|
|
|
|
ErrCapturePipelineAlreadyExists = errors.New("capture pipeline already exists")
|
|
|
|
)
|
|
|
|
|
2021-02-02 11:50:18 +13:00
|
|
|
type Sample media.Sample
|
2020-11-02 04:09:48 +13:00
|
|
|
|
2021-01-23 02:09:47 +13:00
|
|
|
type BroadcastManager interface {
|
|
|
|
Start(url string) error
|
|
|
|
Stop()
|
2021-02-06 02:03:53 +13:00
|
|
|
Started() bool
|
2021-01-23 02:09:47 +13:00
|
|
|
Url() string
|
|
|
|
}
|
|
|
|
|
2021-01-23 06:13:32 +13:00
|
|
|
type ScreencastManager interface {
|
|
|
|
Enabled() bool
|
2021-01-24 03:17:52 +13:00
|
|
|
Started() bool
|
|
|
|
Image() ([]byte, error)
|
2021-01-23 06:13:32 +13:00
|
|
|
}
|
|
|
|
|
2021-12-02 08:30:18 +13:00
|
|
|
type StreamSinkManager interface {
|
2021-02-05 09:39:48 +13:00
|
|
|
Codec() codec.RTPCodec
|
2021-02-07 06:16:24 +13:00
|
|
|
|
2021-10-02 00:46:10 +13:00
|
|
|
AddListener(listener *func(sample Sample)) error
|
|
|
|
RemoveListener(listener *func(sample Sample)) error
|
2021-12-02 08:30:18 +13:00
|
|
|
MoveListenerTo(listener *func(sample Sample), targetStream StreamSinkManager) error
|
2021-02-05 09:39:48 +13:00
|
|
|
|
2021-09-27 11:50:49 +13:00
|
|
|
ListenersCount() int
|
2021-02-06 02:03:53 +13:00
|
|
|
Started() bool
|
2021-02-05 09:39:48 +13:00
|
|
|
}
|
|
|
|
|
2021-12-02 10:36:45 +13:00
|
|
|
type StreamSrcManager interface {
|
|
|
|
Codec() codec.RTPCodec
|
|
|
|
|
|
|
|
Start(codec codec.RTPCodec) error
|
|
|
|
Stop()
|
|
|
|
Push(bytes []byte)
|
|
|
|
|
|
|
|
Started() bool
|
|
|
|
}
|
|
|
|
|
2020-11-02 04:09:48 +13:00
|
|
|
type CaptureManager interface {
|
|
|
|
Start()
|
|
|
|
Shutdown() error
|
|
|
|
|
2021-01-23 02:09:47 +13:00
|
|
|
Broadcast() BroadcastManager
|
2021-01-23 06:13:32 +13:00
|
|
|
Screencast() ScreencastManager
|
2021-12-02 08:30:18 +13:00
|
|
|
Audio() StreamSinkManager
|
|
|
|
Video(videoID string) (StreamSinkManager, bool)
|
2021-02-06 05:40:29 +13:00
|
|
|
VideoIDs() []string
|
2021-12-02 10:36:45 +13:00
|
|
|
|
|
|
|
Webcam() StreamSrcManager
|
|
|
|
Microphone() StreamSrcManager
|
2020-11-02 04:09:48 +13:00
|
|
|
}
|
2021-03-29 11:58:51 +13:00
|
|
|
|
|
|
|
type VideoConfig struct {
|
|
|
|
Width string `mapstructure:"width"` // expression
|
|
|
|
Height string `mapstructure:"height"` // expression
|
|
|
|
Fps string `mapstructure:"fps"` // expression
|
2021-03-30 11:36:13 +13:00
|
|
|
GstPrefix string `mapstructure:"gst_prefix"` // pipeline prefix, starts with !
|
2021-03-30 11:37:06 +13:00
|
|
|
GstEncoder string `mapstructure:"gst_encoder"` // gst encoder name
|
2021-03-29 11:58:51 +13:00
|
|
|
GstParams map[string]string `mapstructure:"gst_params"` // map of expressions
|
2021-03-30 11:36:13 +13:00
|
|
|
GstSuffix string `mapstructure:"gst_suffix"` // pipeline suffix, starts with !
|
|
|
|
GstPipeline string `mapstructure:"gst_pipeline"` // whole pipeline as a string
|
2021-03-29 11:58:51 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (config *VideoConfig) GetPipeline(screen ScreenSize) (string, error) {
|
|
|
|
values := map[string]interface{}{
|
|
|
|
"width": screen.Width,
|
|
|
|
"height": screen.Height,
|
|
|
|
"fps": screen.Rate,
|
|
|
|
}
|
|
|
|
|
|
|
|
language := []gval.Language{
|
|
|
|
gval.Function("round", func(args ...interface{}) (interface{}, error) {
|
|
|
|
return (int)(math.Round(args[0].(float64))), nil
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
|
|
|
// get fps pipeline
|
2021-03-30 09:59:07 +13:00
|
|
|
fpsPipeline := "! video/x-raw ! videoconvert ! queue"
|
2021-03-29 11:58:51 +13:00
|
|
|
if config.Fps != "" {
|
2021-03-30 11:36:13 +13:00
|
|
|
eval, err := gval.Full(language...).NewEvaluable(config.Fps)
|
2021-03-29 11:58:51 +13:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2021-03-30 11:36:13 +13:00
|
|
|
|
|
|
|
val, err := eval.EvalFloat64(context.Background(), values)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
2021-03-29 11:58:51 +13:00
|
|
|
}
|
2021-03-30 11:36:13 +13:00
|
|
|
|
|
|
|
fpsPipeline = fmt.Sprintf("! video/x-raw,framerate=%d/100 ! videoconvert ! queue", int(val*100))
|
2021-03-29 11:58:51 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
// get scale pipeline
|
|
|
|
scalePipeline := ""
|
|
|
|
if config.Width != "" && config.Height != "" {
|
2021-03-30 11:36:13 +13:00
|
|
|
eval, err := gval.Full(language...).NewEvaluable(config.Width)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
w, err := eval.EvalInt(context.Background(), values)
|
2021-03-29 11:58:51 +13:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2021-03-30 11:36:13 +13:00
|
|
|
eval, err = gval.Full(language...).NewEvaluable(config.Height)
|
2021-03-29 11:58:51 +13:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2021-03-30 11:36:13 +13:00
|
|
|
h, err := eval.EvalInt(context.Background(), values)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
2021-03-29 11:58:51 +13:00
|
|
|
}
|
2021-03-30 11:36:13 +13:00
|
|
|
|
|
|
|
scalePipeline = fmt.Sprintf("! videoscale ! video/x-raw,width=%d,height=%d ! queue", w, h)
|
2021-03-29 11:58:51 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
// get encoder pipeline
|
|
|
|
encPipeline := fmt.Sprintf("! %s", config.GstEncoder)
|
|
|
|
for key, expr := range config.GstParams {
|
|
|
|
if expr == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
val, err := gval.Evaluate(expr, values, language...)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if val != nil {
|
|
|
|
encPipeline += fmt.Sprintf(" %s=%v", key, val)
|
|
|
|
} else {
|
|
|
|
encPipeline += fmt.Sprintf(" %s=%s", key, expr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-30 11:36:13 +13:00
|
|
|
// join strings with space
|
|
|
|
return strings.Join([]string{
|
|
|
|
fpsPipeline,
|
|
|
|
scalePipeline,
|
|
|
|
config.GstPrefix,
|
|
|
|
encPipeline,
|
|
|
|
config.GstSuffix,
|
2021-03-30 11:37:06 +13:00
|
|
|
}[:], " "), nil
|
2021-03-29 11:58:51 +13:00
|
|
|
}
|