neko/server/internal/capture/pipelines.go

230 lines
8.2 KiB
Go
Raw Normal View History

2022-09-13 08:21:22 +12:00
package capture
import (
"fmt"
"strings"
2022-09-17 22:43:17 +12:00
"m1k1o/neko/internal/capture/gst"
"m1k1o/neko/internal/types/codec"
2022-09-13 08:21:22 +12:00
)
/*
apt-get install \
libgstreamer1.0-0 \
gstreamer1.0-plugins-base \
gstreamer1.0-plugins-good \
gstreamer1.0-plugins-bad \
gstreamer1.0-plugins-ugly\
gstreamer1.0-libav \
gstreamer1.0-doc \
gstreamer1.0-tools \
gstreamer1.0-x \
gstreamer1.0-alsa \
gstreamer1.0-pulseaudio
gst-inspect-1.0 --version
gst-inspect-1.0 plugin
gst-launch-1.0 ximagesrc show-pointer=true use-damage=false ! video/x-raw,framerate=30/1 ! videoconvert ! queue ! vp8enc error-resilient=partitions keyframe-max-dist=10 auto-alt-ref=true cpu-used=5 deadline=1 ! autovideosink
gst-launch-1.0 pulsesrc ! audioconvert ! opusenc ! autoaudiosink
*/
const (
videoSrc = "ximagesrc display-name=%s show-pointer=true use-damage=false ! video/x-raw,framerate=%d/1 ! videoconvert ! queue ! "
audioSrc = "pulsesrc device=%s ! audio/x-raw,channels=2 ! audioconvert ! "
)
2022-09-22 04:58:28 +12:00
func NewBroadcastPipeline(device string, display string, pipelineSrc string, url string) (string, error) {
2022-09-17 22:43:17 +12:00
video := fmt.Sprintf(videoSrc, display, 25)
audio := fmt.Sprintf(audioSrc, device)
2022-09-13 08:21:22 +12:00
var pipelineStr string
if pipelineSrc != "" {
// replace RTMP url
2022-09-17 22:43:17 +12:00
pipelineStr = strings.Replace(pipelineSrc, "{url}", url, -1)
2022-09-13 08:21:22 +12:00
// replace audio device
2022-09-17 22:43:17 +12:00
pipelineStr = strings.Replace(pipelineStr, "{device}", device, -1)
2022-09-13 08:21:22 +12:00
// replace display
2022-09-17 22:43:17 +12:00
pipelineStr = strings.Replace(pipelineStr, "{display}", display, -1)
2022-09-13 08:21:22 +12:00
} else {
2022-09-17 22:43:17 +12:00
pipelineStr = fmt.Sprintf("flvmux name=mux ! rtmpsink location='%s live=1' %s audio/x-raw,channels=2 ! audioconvert ! voaacenc ! mux. %s x264enc bframes=0 key-int-max=60 byte-stream=true tune=zerolatency speed-preset=veryfast ! mux.", url, audio, video)
2022-09-13 08:21:22 +12:00
}
2022-09-22 04:58:28 +12:00
return pipelineStr, nil
2022-09-13 08:21:22 +12:00
}
2022-09-22 04:58:28 +12:00
func NewVideoPipeline(rtpCodec codec.RTPCodec, display string, pipelineSrc string, fps int16, bitrate uint, hwenc string) (string, error) {
2023-01-22 11:43:04 +13:00
pipelineStr := " ! appsink name=appsinkvideo"
2022-09-13 08:21:22 +12:00
// if using custom pipeline
if pipelineSrc != "" {
2022-09-17 22:43:17 +12:00
pipelineStr = fmt.Sprintf(pipelineSrc+pipelineStr, display)
2022-09-22 04:58:28 +12:00
return pipelineStr, nil
2022-09-13 08:21:22 +12:00
}
2023-01-30 06:34:58 +13:00
// use default fps if not set
if fps == 0 {
fps = 25
}
2022-09-17 22:43:17 +12:00
switch rtpCodec.Name {
case codec.VP8().Name:
2022-09-13 08:21:22 +12:00
if hwenc == "VAAPI" {
if err := gst.CheckPlugins([]string{"ximagesrc", "vaapi"}); err != nil {
2022-09-22 04:58:28 +12:00
return "", err
2022-09-13 08:21:22 +12:00
}
// vp8 encode is missing from gstreamer.freedesktop.org/documentation
// note that it was removed from some recent intel CPUs: https://trac.ffmpeg.org/wiki/Hardware/QuickSync
// https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer-vaapi-plugins/html/gstreamer-vaapi-plugins-vaapivp8enc.html
2022-09-17 22:43:17 +12:00
pipelineStr = fmt.Sprintf(videoSrc+"video/x-raw,format=NV12 ! vaapivp8enc rate-control=vbr bitrate=%d keyframe-period=180"+pipelineStr, display, fps, bitrate)
2022-09-13 08:21:22 +12:00
} else {
// https://gstreamer.freedesktop.org/documentation/vpx/vp8enc.html?gi-language=c
// gstreamer1.0-plugins-good
// vp8enc error-resilient=partitions keyframe-max-dist=10 auto-alt-ref=true cpu-used=5 deadline=1
if err := gst.CheckPlugins([]string{"ximagesrc", "vpx"}); err != nil {
2022-09-22 04:58:28 +12:00
return "", err
2022-09-13 08:21:22 +12:00
}
pipelineStr = strings.Join([]string{
2022-09-17 22:43:17 +12:00
fmt.Sprintf(videoSrc, display, fps),
2022-09-13 08:21:22 +12:00
"vp8enc",
fmt.Sprintf("target-bitrate=%d", bitrate*650),
"cpu-used=4",
"end-usage=cbr",
"threads=4",
"deadline=1",
"undershoot=95",
fmt.Sprintf("buffer-size=%d", bitrate*4),
fmt.Sprintf("buffer-initial-size=%d", bitrate*2),
fmt.Sprintf("buffer-optimal-size=%d", bitrate*3),
"keyframe-max-dist=25",
"min-quantizer=4",
"max-quantizer=20",
pipelineStr,
}, " ")
}
2022-09-17 22:43:17 +12:00
case codec.VP9().Name:
2022-09-13 08:21:22 +12:00
// https://gstreamer.freedesktop.org/documentation/vpx/vp9enc.html?gi-language=c
// gstreamer1.0-plugins-good
// vp9enc
if err := gst.CheckPlugins([]string{"ximagesrc", "vpx"}); err != nil {
2022-09-22 04:58:28 +12:00
return "", err
2022-09-13 08:21:22 +12:00
}
2022-09-17 22:43:17 +12:00
pipelineStr = fmt.Sprintf(videoSrc+"vp9enc target-bitrate=%d cpu-used=-5 threads=4 deadline=1 keyframe-max-dist=30 auto-alt-ref=true"+pipelineStr, display, fps, bitrate*1000)
2023-01-22 11:43:04 +13:00
case codec.AV1().Name:
2023-01-29 10:08:36 +13:00
// https://gstreamer.freedesktop.org/documentation/aom/av1enc.html?gi-language=c
// gstreamer1.0-plugins-bad
// av1enc usage-profile=1
// TODO: check for plugin.
if err := gst.CheckPlugins([]string{"ximagesrc", "vpx"}); err != nil {
return "", err
}
2023-01-22 11:43:04 +13:00
2023-01-29 10:08:36 +13:00
pipelineStr = strings.Join([]string{
fmt.Sprintf(videoSrc, display, fps),
"av1enc",
fmt.Sprintf("target-bitrate=%d", bitrate*650),
"cpu-used=4",
"end-usage=cbr",
// "usage-profile=realtime",
"undershoot=95",
"keyframe-max-dist=25",
"min-quantizer=4",
"max-quantizer=20",
pipelineStr,
}, " ")
2022-09-17 22:43:17 +12:00
case codec.H264().Name:
2022-09-13 08:21:22 +12:00
if err := gst.CheckPlugins([]string{"ximagesrc"}); err != nil {
2022-09-22 04:58:28 +12:00
return "", err
2022-09-13 08:21:22 +12:00
}
if hwenc == "VAAPI" {
if err := gst.CheckPlugins([]string{"vaapi"}); err != nil {
2022-09-22 04:58:28 +12:00
return "", err
2022-09-13 08:21:22 +12:00
}
2022-09-17 22:43:17 +12:00
pipelineStr = fmt.Sprintf(videoSrc+"video/x-raw,format=NV12 ! vaapih264enc rate-control=vbr bitrate=%d keyframe-period=180 quality-level=7 ! video/x-h264,stream-format=byte-stream"+pipelineStr, display, fps, bitrate)
2022-09-13 08:21:22 +12:00
} else {
// https://gstreamer.freedesktop.org/documentation/openh264/openh264enc.html?gi-language=c#openh264enc
// gstreamer1.0-plugins-bad
// openh264enc multi-thread=4 complexity=high bitrate=3072000 max-bitrate=4096000
if err := gst.CheckPlugins([]string{"openh264"}); err == nil {
2022-09-17 22:43:17 +12:00
pipelineStr = fmt.Sprintf(videoSrc+"openh264enc multi-thread=4 complexity=high bitrate=%d max-bitrate=%d ! video/x-h264,stream-format=byte-stream"+pipelineStr, display, fps, bitrate*1000, (bitrate+1024)*1000)
2022-09-13 08:21:22 +12:00
break
}
// https://gstreamer.freedesktop.org/documentation/x264/index.html?gi-language=c
// gstreamer1.0-plugins-ugly
// video/x-raw,format=I420 ! x264enc bframes=0 key-int-max=60 byte-stream=true tune=zerolatency speed-preset=veryfast ! video/x-h264,stream-format=byte-stream
if err := gst.CheckPlugins([]string{"x264"}); err != nil {
2022-09-22 04:58:28 +12:00
return "", err
2022-09-13 08:21:22 +12:00
}
vbvbuf := uint(1000)
if bitrate > 1000 {
vbvbuf = bitrate
}
2022-09-17 22:43:17 +12:00
pipelineStr = fmt.Sprintf(videoSrc+"video/x-raw,format=NV12 ! x264enc threads=4 bitrate=%d key-int-max=60 vbv-buf-capacity=%d byte-stream=true tune=zerolatency speed-preset=veryfast ! video/x-h264,stream-format=byte-stream"+pipelineStr, display, fps, bitrate, vbvbuf)
2022-09-13 08:21:22 +12:00
}
2022-09-17 22:43:17 +12:00
default:
2022-09-22 04:58:28 +12:00
return "", fmt.Errorf("unknown codec %s", rtpCodec.Name)
2022-09-17 22:43:17 +12:00
}
2022-09-22 04:58:28 +12:00
return pipelineStr, nil
2022-09-17 22:43:17 +12:00
}
2022-09-22 04:58:28 +12:00
func NewAudioPipeline(rtpCodec codec.RTPCodec, device string, pipelineSrc string, bitrate uint) (string, error) {
2023-01-22 11:43:04 +13:00
pipelineStr := " ! appsink name=appsinkaudio"
2022-09-17 22:43:17 +12:00
// if using custom pipeline
if pipelineSrc != "" {
pipelineStr = fmt.Sprintf(pipelineSrc+pipelineStr, device)
2022-09-22 04:58:28 +12:00
return pipelineStr, nil
2022-09-17 22:43:17 +12:00
}
switch rtpCodec.Name {
case codec.Opus().Name:
2022-09-13 08:21:22 +12:00
// https://gstreamer.freedesktop.org/documentation/opus/opusenc.html
// gstreamer1.0-plugins-base
// opusenc
if err := gst.CheckPlugins([]string{"pulseaudio", "opus"}); err != nil {
2022-09-22 04:58:28 +12:00
return "", err
2022-09-13 08:21:22 +12:00
}
2022-09-17 22:43:17 +12:00
pipelineStr = fmt.Sprintf(audioSrc+"opusenc inband-fec=true bitrate=%d"+pipelineStr, device, bitrate*1000)
case codec.G722().Name:
2022-09-13 08:21:22 +12:00
// https://gstreamer.freedesktop.org/documentation/libav/avenc_g722.html?gi-language=c
// gstreamer1.0-libav
// avenc_g722
if err := gst.CheckPlugins([]string{"pulseaudio", "libav"}); err != nil {
2022-09-22 04:58:28 +12:00
return "", err
2022-09-13 08:21:22 +12:00
}
2022-09-17 22:43:17 +12:00
pipelineStr = fmt.Sprintf(audioSrc+"avenc_g722 bitrate=%d"+pipelineStr, device, bitrate*1000)
case codec.PCMU().Name:
2022-09-13 08:21:22 +12:00
// https://gstreamer.freedesktop.org/documentation/mulaw/mulawenc.html?gi-language=c
// gstreamer1.0-plugins-good
// audio/x-raw, rate=8000 ! mulawenc
if err := gst.CheckPlugins([]string{"pulseaudio", "mulaw"}); err != nil {
2022-09-22 04:58:28 +12:00
return "", err
2022-09-13 08:21:22 +12:00
}
2022-09-17 22:43:17 +12:00
pipelineStr = fmt.Sprintf(audioSrc+"audio/x-raw, rate=8000 ! mulawenc"+pipelineStr, device)
case codec.PCMA().Name:
2022-09-13 08:21:22 +12:00
// https://gstreamer.freedesktop.org/documentation/alaw/alawenc.html?gi-language=c
// gstreamer1.0-plugins-good
// audio/x-raw, rate=8000 ! alawenc
if err := gst.CheckPlugins([]string{"pulseaudio", "alaw"}); err != nil {
2022-09-22 04:58:28 +12:00
return "", err
2022-09-13 08:21:22 +12:00
}
2022-09-17 22:43:17 +12:00
pipelineStr = fmt.Sprintf(audioSrc+"audio/x-raw, rate=8000 ! alawenc"+pipelineStr, device)
2022-09-13 08:21:22 +12:00
default:
2022-09-22 04:58:28 +12:00
return "", fmt.Errorf("unknown codec %s", rtpCodec.Name)
2022-09-13 08:21:22 +12:00
}
2022-09-22 04:58:28 +12:00
return pipelineStr, nil
2022-09-13 08:21:22 +12:00
}