mirror of
https://github.com/m1k1o/neko.git
synced 2025-08-02 08:19:14 +02:00
webcam add videoconvert.
This commit is contained in:
parent
64c3449322
commit
09cb1e9c6a
1 changed files with 3 additions and 0 deletions
|
@ -127,16 +127,19 @@ func New(desktop types.DesktopManager, config *config.Capture) *CaptureManagerCt
|
|||
fmt.Sprintf("! application/x-rtp, payload=%d, encoding-name=VP8-DRAFT-IETF-01 ", codec.VP8().PayloadType) +
|
||||
"! rtpvp8depay " +
|
||||
"! decodebin " +
|
||||
"! videoconvert " +
|
||||
"! v4l2sink device=/dev/video0",
|
||||
codec.VP9().Name: "appsrc format=time is-live=true do-timestamp=true name=src " +
|
||||
"! application/x-rtp " +
|
||||
"! rtpvp9depay " +
|
||||
"! decodebin " +
|
||||
"! videoconvert " +
|
||||
"! v4l2sink device=/dev/video0",
|
||||
codec.H264().Name: "appsrc format=time is-live=true do-timestamp=true name=src " +
|
||||
"! application/x-rtp " +
|
||||
"! rtph264depay " +
|
||||
"! decodebin " +
|
||||
"! videoconvert " +
|
||||
"! v4l2sink device=/dev/video0",
|
||||
}, "webcam"),
|
||||
microphone: streamSrcNew(map[string]string{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue