mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
update pipelines.
This commit is contained in:
parent
58854d38dd
commit
fb845a1f18
@ -79,58 +79,58 @@ func New(desktop types.DesktopManager, config *config.Capture) *CaptureManagerCt
|
|||||||
videos: map[string]*StreamManagerCtx{
|
videos: map[string]*StreamManagerCtx{
|
||||||
"hd": streamNew(codec.VP8(), func() string {
|
"hd": streamNew(codec.VP8(), func() string {
|
||||||
screen := desktop.GetScreenSize()
|
screen := desktop.GetScreenSize()
|
||||||
bitrate := int((screen.Width * screen.Height * 5) / 3)
|
bitrate := int((screen.Width * screen.Height * 6) / 4)
|
||||||
buf := bitrate / 1000
|
buffer := bitrate / 1000
|
||||||
|
|
||||||
return fmt.Sprintf(
|
return fmt.Sprintf(
|
||||||
"ximagesrc display-name=%s show-pointer=false use-damage=false "+
|
"ximagesrc display-name=%s show-pointer=false use-damage=false "+
|
||||||
"! video/x-raw,framerate=25/1 "+
|
"! video/x-raw,framerate=25/1 "+
|
||||||
"! videoconvert "+
|
"! videoconvert "+
|
||||||
"! queue "+
|
"! queue "+
|
||||||
"! vp8enc end-usage=cbr target-bitrate=%d cpu-used=16 threads=4 deadline=1 undershoot=95 error-resilient=partitions keyframe-max-dist=25 min-quantizer=6 max-quantizer=12 buffer-size=%d buffer-initial-size=%d buffer-optimal-size=%d "+
|
"! vp8enc end-usage=cbr target-bitrate=%d cpu-used=4 threads=4 deadline=1 undershoot=95 keyframe-max-dist=25 min-quantizer=3 max-quantizer=32 buffer-size=%d buffer-initial-size=%d buffer-optimal-size=%d "+
|
||||||
"! appsink name=appsink", config.Display, bitrate, buf*6, buf*4, buf*5,
|
"! appsink name=appsink", config.Display, bitrate, buffer*6, buffer*4, buffer*5,
|
||||||
)
|
)
|
||||||
}),
|
}),
|
||||||
"hq": streamNew(codec.VP8(), func() string {
|
"hq": streamNew(codec.VP8(), func() string {
|
||||||
screen := desktop.GetScreenSize()
|
screen := desktop.GetScreenSize()
|
||||||
bitrate := int((screen.Width * screen.Height * 5) / 3) / 2
|
bitrate := int((screen.Width * screen.Height * 6) / 4) / 2
|
||||||
buf := bitrate / 1000
|
buffer := bitrate / 1000
|
||||||
|
|
||||||
return fmt.Sprintf(
|
return fmt.Sprintf(
|
||||||
"ximagesrc display-name=%s show-pointer=false use-damage=false "+
|
"ximagesrc display-name=%s show-pointer=false use-damage=false "+
|
||||||
"! video/x-raw,framerate=15/1 "+
|
"! video/x-raw,framerate=15/1 "+
|
||||||
"! videoconvert "+
|
"! videoconvert "+
|
||||||
"! queue "+
|
"! queue "+
|
||||||
"! vp8enc end-usage=cbr target-bitrate=%d cpu-used=16 threads=4 deadline=1 undershoot=95 error-resilient=partitions keyframe-max-dist=25 min-quantizer=6 max-quantizer=12 buffer-size=%d buffer-initial-size=%d buffer-optimal-size=%d "+
|
"! vp8enc end-usage=cbr target-bitrate=%d cpu-used=4 threads=4 deadline=1 undershoot=95 keyframe-max-dist=25 min-quantizer=3 max-quantizer=32 buffer-size=%d buffer-initial-size=%d buffer-optimal-size=%d "+
|
||||||
"! appsink name=appsink", config.Display, bitrate, buf*6, buf*4, buf*5,
|
"! appsink name=appsink", config.Display, bitrate, buffer*6, buffer*4, buffer*5,
|
||||||
)
|
)
|
||||||
}),
|
}),
|
||||||
"mq": streamNew(codec.VP8(), func() string {
|
"mq": streamNew(codec.VP8(), func() string {
|
||||||
screen := desktop.GetScreenSize()
|
screen := desktop.GetScreenSize()
|
||||||
bitrate := int((screen.Width * screen.Height * 5) / 3) / 3
|
bitrate := int((screen.Width * screen.Height * 6) / 4) / 3
|
||||||
buf := bitrate / 1000
|
buffer := bitrate / 1000
|
||||||
|
|
||||||
return fmt.Sprintf(
|
return fmt.Sprintf(
|
||||||
"ximagesrc display-name=%s show-pointer=false use-damage=false "+
|
"ximagesrc display-name=%s show-pointer=false use-damage=false "+
|
||||||
"! video/x-raw,framerate=10/1 "+
|
"! video/x-raw,framerate=10/1 "+
|
||||||
"! videoconvert "+
|
"! videoconvert "+
|
||||||
"! queue "+
|
"! queue "+
|
||||||
"! vp8enc end-usage=cbr target-bitrate=%d cpu-used=16 threads=4 deadline=1 undershoot=95 error-resilient=partitions keyframe-max-dist=25 min-quantizer=12 max-quantizer=24 buffer-size=%d buffer-initial-size=%d buffer-optimal-size=%d "+
|
"! vp8enc end-usage=cbr target-bitrate=%d cpu-used=4 threads=4 deadline=1 undershoot=95 keyframe-max-dist=25 min-quantizer=3 max-quantizer=32 buffer-size=%d buffer-initial-size=%d buffer-optimal-size=%d "+
|
||||||
"! appsink name=appsink", config.Display, bitrate, buf*6, buf*4, buf*5,
|
"! appsink name=appsink", config.Display, bitrate, buffer*6, buffer*4, buffer*5,
|
||||||
)
|
)
|
||||||
}),
|
}),
|
||||||
"lq": streamNew(codec.VP8(), func() string {
|
"lq": streamNew(codec.VP8(), func() string {
|
||||||
screen := desktop.GetScreenSize()
|
screen := desktop.GetScreenSize()
|
||||||
bitrate := int((screen.Width * screen.Height * 5) / 3) / 4
|
bitrate := int((screen.Width * screen.Height * 6) / 4) / 4
|
||||||
buf := bitrate / 1000
|
buffer := bitrate / 1000
|
||||||
|
|
||||||
return fmt.Sprintf(
|
return fmt.Sprintf(
|
||||||
"ximagesrc display-name=%s show-pointer=false use-damage=false "+
|
"ximagesrc display-name=%s show-pointer=false use-damage=false "+
|
||||||
"! video/x-raw,framerate=5/1 "+
|
"! video/x-raw,framerate=5/1 "+
|
||||||
"! videoconvert "+
|
"! videoconvert "+
|
||||||
"! queue "+
|
"! queue "+
|
||||||
"! vp8enc end-usage=cbr target-bitrate=%d cpu-used=16 threads=4 deadline=1 undershoot=95 error-resilient=partitions keyframe-max-dist=25 min-quantizer=12 max-quantizer=24 buffer-size=%d buffer-initial-size=%d buffer-optimal-size=%d "+
|
"! vp8enc end-usage=cbr target-bitrate=%d cpu-used=4 threads=4 deadline=1 undershoot=95 keyframe-max-dist=25 min-quantizer=3 max-quantizer=32 buffer-size=%d buffer-initial-size=%d buffer-optimal-size=%d "+
|
||||||
"! appsink name=appsink", config.Display, bitrate, buf*6, buf*4, buf*5,
|
"! appsink name=appsink", config.Display, bitrate, buffer*6, buffer*4, buffer*5,
|
||||||
)
|
)
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user