2020-01-13 21:05:38 +13:00
|
|
|
package gst
|
|
|
|
|
|
|
|
/*
|
|
|
|
#cgo pkg-config: gstreamer-1.0 gstreamer-app-1.0
|
|
|
|
|
|
|
|
#include "gst.h"
|
|
|
|
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
"unsafe"
|
|
|
|
|
|
|
|
"github.com/pion/webrtc/v2"
|
2020-01-25 04:47:37 +13:00
|
|
|
|
|
|
|
"n.eko.moe/neko/internal/types"
|
2020-01-13 21:05:38 +13:00
|
|
|
)
|
|
|
|
|
2020-01-19 12:30:09 +13: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 \
|
2020-01-28 20:07:35 +13:00
|
|
|
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
|
2020-01-19 12:30:09 +13:00
|
|
|
*/
|
2020-01-13 21:05:38 +13:00
|
|
|
|
|
|
|
// Pipeline is a wrapper for a GStreamer Pipeline
|
|
|
|
type Pipeline struct {
|
|
|
|
Pipeline *C.GstElement
|
2020-01-25 04:47:37 +13:00
|
|
|
Sample chan types.Sample
|
|
|
|
CodecName string
|
|
|
|
ClockRate float32
|
2020-02-11 18:15:59 +13:00
|
|
|
Src string
|
2020-01-13 21:05:38 +13:00
|
|
|
id int
|
|
|
|
}
|
|
|
|
|
|
|
|
var pipelines = make(map[int]*Pipeline)
|
|
|
|
var pipelinesLock sync.Mutex
|
2020-01-19 12:30:09 +13:00
|
|
|
var registry *C.GstRegistry
|
2020-01-13 21:05:38 +13:00
|
|
|
|
|
|
|
const (
|
|
|
|
videoClockRate = 90000
|
|
|
|
audioClockRate = 48000
|
|
|
|
pcmClockRate = 8000
|
2020-02-11 18:15:59 +13:00
|
|
|
videoSrc = "ximagesrc xid=%s show-pointer=true use-damage=false ! video/x-raw ! videoconvert ! queue ! "
|
|
|
|
audioSrc = "pulsesrc device=%s ! audioconvert ! "
|
2020-01-13 21:05:38 +13:00
|
|
|
)
|
|
|
|
|
2020-01-19 12:30:09 +13:00
|
|
|
func init() {
|
|
|
|
C.gstreamer_init()
|
|
|
|
registry = C.gst_registry_get()
|
|
|
|
}
|
|
|
|
|
2020-04-06 15:42:42 +12:00
|
|
|
// CreateRTMPPipeline creates a GStreamer Pipeline
|
|
|
|
func CreateRTMPPipeline(pipelineDevice string, pipelineDisplay string, pipelineRTMP string) (*Pipeline, error) {
|
|
|
|
video := fmt.Sprintf(videoSrc, pipelineDisplay)
|
|
|
|
audio := fmt.Sprintf(audioSrc, pipelineDevice)
|
2020-09-24 18:09:02 +12:00
|
|
|
|
|
|
|
return CreatePipeline(fmt.Sprintf("flvmux name=mux ! rtmpsink location='%s' live=1 %s voaacenc ! mux. %s x264enc bframes=0 key-int-max=60 byte-stream=true tune=zerolatency speed-preset=veryfast ! mux.", pipelineRTMP, audio, video), "", 0)
|
2020-04-06 15:42:42 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateAppPipeline creates a GStreamer Pipeline
|
|
|
|
func CreateAppPipeline(codecName string, pipelineDevice string, pipelineSrc string) (*Pipeline, error) {
|
2020-02-11 18:15:59 +13:00
|
|
|
pipelineStr := " ! appsink name=appsink"
|
|
|
|
|
2020-01-13 21:05:38 +13:00
|
|
|
var clockRate float32
|
|
|
|
|
|
|
|
switch codecName {
|
|
|
|
case webrtc.VP8:
|
2020-01-19 12:30:09 +13:00
|
|
|
// https://gstreamer.freedesktop.org/documentation/vpx/vp8enc.html?gi-language=c
|
2020-01-25 04:47:37 +13:00
|
|
|
// gstreamer1.0-plugins-good
|
2020-01-19 12:30:09 +13:00
|
|
|
// vp8enc error-resilient=partitions keyframe-max-dist=10 auto-alt-ref=true cpu-used=5 deadline=1
|
|
|
|
if err := CheckPlugins([]string{"ximagesrc", "vpx"}); err != nil {
|
2020-01-25 04:47:37 +13:00
|
|
|
return nil, err
|
2020-01-19 12:30:09 +13:00
|
|
|
}
|
|
|
|
|
2020-02-11 18:15:59 +13:00
|
|
|
clockRate = videoClockRate
|
|
|
|
|
|
|
|
if pipelineSrc != "" {
|
|
|
|
pipelineStr = fmt.Sprintf(pipelineSrc+pipelineStr, pipelineDevice)
|
|
|
|
} else {
|
|
|
|
pipelineStr = fmt.Sprintf(videoSrc+"vp8enc cpu-used=8 threads=2 deadline=1 error-resilient=partitions keyframe-max-dist=10 auto-alt-ref=true"+pipelineStr, pipelineDevice)
|
|
|
|
}
|
2020-01-13 21:05:38 +13:00
|
|
|
case webrtc.VP9:
|
2020-01-19 12:30:09 +13:00
|
|
|
// https://gstreamer.freedesktop.org/documentation/vpx/vp9enc.html?gi-language=c
|
2020-01-25 04:47:37 +13:00
|
|
|
// gstreamer1.0-plugins-good
|
2020-01-19 12:30:09 +13:00
|
|
|
// vp9enc
|
|
|
|
if err := CheckPlugins([]string{"ximagesrc", "vpx"}); err != nil {
|
2020-01-25 04:47:37 +13:00
|
|
|
return nil, err
|
2020-01-19 12:30:09 +13:00
|
|
|
}
|
|
|
|
|
2020-02-11 18:15:59 +13:00
|
|
|
clockRate = videoClockRate
|
|
|
|
|
|
|
|
// Causes panic! not sure why...
|
|
|
|
if pipelineSrc != "" {
|
|
|
|
pipelineStr = fmt.Sprintf(pipelineSrc+pipelineStr, pipelineDevice)
|
|
|
|
} else {
|
|
|
|
pipelineStr = fmt.Sprintf(videoSrc+"vp9enc"+pipelineStr, pipelineDevice)
|
|
|
|
}
|
2020-01-13 21:05:38 +13:00
|
|
|
case webrtc.H264:
|
2020-01-19 12:30:09 +13:00
|
|
|
// 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 := CheckPlugins([]string{"ximagesrc"}); err != nil {
|
2020-01-25 04:47:37 +13:00
|
|
|
return nil, err
|
2020-01-19 12:30:09 +13:00
|
|
|
}
|
|
|
|
|
2020-02-11 18:15:59 +13:00
|
|
|
clockRate = videoClockRate
|
|
|
|
|
|
|
|
if pipelineSrc != "" {
|
|
|
|
pipelineStr = fmt.Sprintf(pipelineSrc+pipelineStr, pipelineDevice)
|
|
|
|
} else {
|
|
|
|
pipelineStr = fmt.Sprintf(videoSrc+"openh264enc multi-thread=4 complexity=high bitrate=3072000 max-bitrate=4096000 ! video/x-h264,stream-format=byte-stream"+pipelineStr, pipelineDevice)
|
|
|
|
|
|
|
|
// 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 := CheckPlugins([]string{"openh264"}); err != nil {
|
|
|
|
pipelineStr = fmt.Sprintf(videoSrc+"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"+pipelineStr, pipelineDevice)
|
2020-01-19 12:30:09 +13:00
|
|
|
|
2020-02-11 18:15:59 +13:00
|
|
|
if err := CheckPlugins([]string{"x264"}); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-01-19 12:30:09 +13:00
|
|
|
}
|
|
|
|
}
|
2020-01-13 21:05:38 +13:00
|
|
|
case webrtc.Opus:
|
2020-01-19 12:30:09 +13:00
|
|
|
// https://gstreamer.freedesktop.org/documentation/opus/opusenc.html
|
|
|
|
// gstreamer1.0-plugins-base
|
|
|
|
// opusenc
|
|
|
|
if err := CheckPlugins([]string{"pulseaudio", "opus"}); err != nil {
|
2020-01-25 04:47:37 +13:00
|
|
|
return nil, err
|
2020-01-19 12:30:09 +13:00
|
|
|
}
|
2020-01-13 21:05:38 +13:00
|
|
|
|
2020-02-11 18:15:59 +13:00
|
|
|
clockRate = audioClockRate
|
|
|
|
|
|
|
|
if pipelineSrc != "" {
|
|
|
|
pipelineStr = fmt.Sprintf(pipelineSrc+pipelineStr, pipelineDevice)
|
|
|
|
} else {
|
|
|
|
pipelineStr = fmt.Sprintf(audioSrc+"opusenc"+pipelineStr, pipelineDevice)
|
|
|
|
}
|
2020-01-13 21:05:38 +13:00
|
|
|
case webrtc.G722:
|
2020-01-19 12:30:09 +13:00
|
|
|
// https://gstreamer.freedesktop.org/documentation/libav/avenc_g722.html?gi-language=c
|
|
|
|
// gstreamer1.0-libav
|
|
|
|
// avenc_g722
|
|
|
|
if err := CheckPlugins([]string{"pulseaudio", "libav"}); err != nil {
|
2020-01-25 04:47:37 +13:00
|
|
|
return nil, err
|
2020-01-19 12:30:09 +13:00
|
|
|
}
|
|
|
|
|
2020-02-11 18:15:59 +13:00
|
|
|
clockRate = audioClockRate
|
|
|
|
|
|
|
|
if pipelineSrc != "" {
|
|
|
|
pipelineStr = fmt.Sprintf(pipelineSrc+pipelineStr, pipelineDevice)
|
|
|
|
} else {
|
|
|
|
pipelineStr = fmt.Sprintf(audioSrc+"avenc_g722"+pipelineStr, pipelineDevice)
|
|
|
|
}
|
2020-01-13 21:05:38 +13:00
|
|
|
case webrtc.PCMU:
|
2020-01-19 12:30:09 +13:00
|
|
|
// https://gstreamer.freedesktop.org/documentation/mulaw/mulawenc.html?gi-language=c
|
|
|
|
// gstreamer1.0-plugins-good
|
|
|
|
// audio/x-raw, rate=8000 ! mulawenc
|
|
|
|
if err := CheckPlugins([]string{"pulseaudio", "mulaw"}); err != nil {
|
2020-01-25 04:47:37 +13:00
|
|
|
return nil, err
|
2020-01-19 12:30:09 +13:00
|
|
|
}
|
|
|
|
|
2020-02-11 18:15:59 +13:00
|
|
|
clockRate = pcmClockRate
|
|
|
|
|
|
|
|
if pipelineSrc != "" {
|
|
|
|
pipelineStr = fmt.Sprintf(pipelineSrc+pipelineStr, pipelineDevice)
|
|
|
|
} else {
|
|
|
|
pipelineStr = fmt.Sprintf(audioSrc+"audio/x-raw, rate=8000 ! mulawenc"+pipelineStr, pipelineDevice)
|
|
|
|
}
|
2020-01-13 21:05:38 +13:00
|
|
|
case webrtc.PCMA:
|
2020-01-19 12:30:09 +13:00
|
|
|
// https://gstreamer.freedesktop.org/documentation/alaw/alawenc.html?gi-language=c
|
|
|
|
// gstreamer1.0-plugins-good
|
|
|
|
// audio/x-raw, rate=8000 ! alawenc
|
|
|
|
if err := CheckPlugins([]string{"pulseaudio", "alaw"}); err != nil {
|
2020-01-25 04:47:37 +13:00
|
|
|
return nil, err
|
2020-01-19 12:30:09 +13:00
|
|
|
}
|
|
|
|
|
2020-02-11 18:15:59 +13:00
|
|
|
clockRate = pcmClockRate
|
|
|
|
|
|
|
|
if pipelineSrc != "" {
|
|
|
|
pipelineStr = fmt.Sprintf(pipelineSrc+pipelineStr, pipelineDevice)
|
|
|
|
} else {
|
|
|
|
pipelineStr = fmt.Sprintf(audioSrc+"audio/x-raw, rate=8000 ! alawenc"+pipelineStr, pipelineDevice)
|
|
|
|
}
|
2020-01-13 21:05:38 +13:00
|
|
|
default:
|
2020-02-14 16:50:23 +13:00
|
|
|
return nil, fmt.Errorf("unknown codec %s", codecName)
|
2020-01-13 21:05:38 +13:00
|
|
|
}
|
|
|
|
|
2020-04-07 08:15:32 +12:00
|
|
|
return CreatePipeline(pipelineStr, codecName, clockRate)
|
2020-04-06 15:42:42 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreatePipeline creates a GStreamer Pipeline
|
2020-04-07 08:15:32 +12:00
|
|
|
func CreatePipeline(pipelineStr string, codecName string, clockRate float32) (*Pipeline, error) {
|
2020-01-13 21:05:38 +13:00
|
|
|
pipelineStrUnsafe := C.CString(pipelineStr)
|
|
|
|
defer C.free(unsafe.Pointer(pipelineStrUnsafe))
|
|
|
|
|
|
|
|
pipelinesLock.Lock()
|
|
|
|
defer pipelinesLock.Unlock()
|
|
|
|
|
2020-02-11 18:15:59 +13:00
|
|
|
p := &Pipeline{
|
2020-01-13 21:05:38 +13:00
|
|
|
Pipeline: C.gstreamer_send_create_pipeline(pipelineStrUnsafe),
|
2020-01-25 04:47:37 +13:00
|
|
|
Sample: make(chan types.Sample),
|
|
|
|
CodecName: codecName,
|
|
|
|
ClockRate: clockRate,
|
2020-02-11 18:15:59 +13:00
|
|
|
Src: pipelineStr,
|
2020-01-13 21:05:38 +13:00
|
|
|
id: len(pipelines),
|
|
|
|
}
|
|
|
|
|
2020-02-11 18:15:59 +13:00
|
|
|
pipelines[p.id] = p
|
|
|
|
return p, nil
|
2020-01-13 21:05:38 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start starts the GStreamer Pipeline
|
|
|
|
func (p *Pipeline) Start() {
|
|
|
|
C.gstreamer_send_start_pipeline(p.Pipeline, C.int(p.id))
|
|
|
|
}
|
|
|
|
|
2020-09-24 18:09:02 +12:00
|
|
|
// Play starts the GStreamer Pipeline
|
|
|
|
func (p *Pipeline) Play() {
|
|
|
|
C.gstreamer_send_play_pipeline(p.Pipeline)
|
|
|
|
}
|
|
|
|
|
2020-01-13 21:05:38 +13:00
|
|
|
// Stop stops the GStreamer Pipeline
|
|
|
|
func (p *Pipeline) Stop() {
|
|
|
|
C.gstreamer_send_stop_pipeline(p.Pipeline)
|
|
|
|
}
|
|
|
|
|
2020-01-27 14:28:39 +13:00
|
|
|
// gst-inspect-1.0
|
2020-01-19 12:30:09 +13:00
|
|
|
func CheckPlugins(plugins []string) error {
|
|
|
|
var plugin *C.GstPlugin
|
|
|
|
for _, pluginstr := range plugins {
|
|
|
|
plugincstr := C.CString(pluginstr)
|
|
|
|
plugin = C.gst_registry_find_plugin(registry, plugincstr)
|
|
|
|
C.free(unsafe.Pointer(plugincstr))
|
|
|
|
if plugin == nil {
|
2020-01-25 04:47:37 +13:00
|
|
|
return fmt.Errorf("required gstreamer plugin %s not found", pluginstr)
|
2020-01-19 12:30:09 +13:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-01-13 21:05:38 +13:00
|
|
|
//export goHandlePipelineBuffer
|
|
|
|
func goHandlePipelineBuffer(buffer unsafe.Pointer, bufferLen C.int, duration C.int, pipelineID C.int) {
|
|
|
|
pipelinesLock.Lock()
|
|
|
|
pipeline, ok := pipelines[int(pipelineID)]
|
|
|
|
pipelinesLock.Unlock()
|
|
|
|
|
|
|
|
if ok {
|
2020-01-25 04:47:37 +13:00
|
|
|
samples := uint32(pipeline.ClockRate * (float32(duration) / 1000000000))
|
|
|
|
pipeline.Sample <- types.Sample{Data: C.GoBytes(buffer, bufferLen), Samples: samples}
|
2020-01-13 21:05:38 +13:00
|
|
|
} else {
|
|
|
|
fmt.Printf("discarding buffer, no pipeline with id %d", int(pipelineID))
|
|
|
|
}
|
|
|
|
C.free(buffer)
|
|
|
|
}
|