mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
capture fix replaces for pipelines.
This commit is contained in:
parent
da24f92e72
commit
194fd29679
@ -32,18 +32,6 @@ type CaptureManagerCtx struct {
|
|||||||
func New(desktop types.DesktopManager, config *config.Capture) *CaptureManagerCtx {
|
func New(desktop types.DesktopManager, config *config.Capture) *CaptureManagerCtx {
|
||||||
logger := log.With().Str("module", "capture").Logger()
|
logger := log.With().Str("module", "capture").Logger()
|
||||||
|
|
||||||
screencastPipeline := config.ScreencastPipeline
|
|
||||||
if screencastPipeline == "" {
|
|
||||||
screencastPipeline = fmt.Sprintf(
|
|
||||||
"ximagesrc display-name=%s show-pointer=true use-damage=false "+
|
|
||||||
"! video/x-raw,framerate=%s "+
|
|
||||||
"! videoconvert "+
|
|
||||||
"! queue "+
|
|
||||||
"! jpegenc quality=%s "+
|
|
||||||
"! appsink name=appsink", config.Display, config.ScreencastRate, config.ScreencastQuality,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
videos := map[string]*StreamSinkManagerCtx{}
|
videos := map[string]*StreamSinkManagerCtx{}
|
||||||
for video_id, cnf := range config.VideoPipelines {
|
for video_id, cnf := range config.VideoPipelines {
|
||||||
pipelineConf := cnf
|
pipelineConf := cnf
|
||||||
@ -90,8 +78,13 @@ func New(desktop types.DesktopManager, config *config.Capture) *CaptureManagerCt
|
|||||||
// sinks
|
// sinks
|
||||||
broadcast: broadcastNew(func(url string) (string, error) {
|
broadcast: broadcastNew(func(url string) (string, error) {
|
||||||
if config.BroadcastPipeline != "" {
|
if config.BroadcastPipeline != "" {
|
||||||
|
var pipeline = config.BroadcastPipeline
|
||||||
|
// replace {display} with valid display
|
||||||
|
pipeline = strings.Replace(pipeline, "{display}", config.Display, 1)
|
||||||
|
// replace {device} with valid device
|
||||||
|
pipeline = strings.Replace(pipeline, "{device}", config.AudioDevice, 1)
|
||||||
// replace {url} with valid URL
|
// replace {url} with valid URL
|
||||||
return strings.Replace(config.BroadcastPipeline, "{url}", url, 1), nil
|
return strings.Replace(pipeline, "{url}", url, 1), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
return fmt.Sprintf(
|
return fmt.Sprintf(
|
||||||
@ -110,7 +103,21 @@ func New(desktop types.DesktopManager, config *config.Capture) *CaptureManagerCt
|
|||||||
"! mux.", url, config.AudioDevice, config.BroadcastAudioBitrate*1000, config.Display, config.BroadcastVideoBitrate, config.BroadcastPreset,
|
"! mux.", url, config.AudioDevice, config.BroadcastAudioBitrate*1000, config.Display, config.BroadcastVideoBitrate, config.BroadcastPreset,
|
||||||
), nil
|
), nil
|
||||||
}, ""),
|
}, ""),
|
||||||
screencast: screencastNew(config.ScreencastEnabled, screencastPipeline),
|
screencast: screencastNew(config.ScreencastEnabled, func() string {
|
||||||
|
if config.ScreencastPipeline != "" {
|
||||||
|
// replace {display} with valid display
|
||||||
|
return strings.Replace(config.ScreencastPipeline, "{display}", config.Display, 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
return fmt.Sprintf(
|
||||||
|
"ximagesrc display-name=%s show-pointer=true use-damage=false "+
|
||||||
|
"! video/x-raw,framerate=%s "+
|
||||||
|
"! videoconvert "+
|
||||||
|
"! queue "+
|
||||||
|
"! jpegenc quality=%s "+
|
||||||
|
"! appsink name=appsink", config.Display, config.ScreencastRate, config.ScreencastQuality,
|
||||||
|
)
|
||||||
|
}()),
|
||||||
audio: streamSinkNew(config.AudioCodec, func() (string, error) {
|
audio: streamSinkNew(config.AudioCodec, func() (string, error) {
|
||||||
if config.AudioPipeline != "" {
|
if config.AudioPipeline != "" {
|
||||||
// replace {device} with valid device
|
// replace {device} with valid device
|
||||||
|
Loading…
Reference in New Issue
Block a user