mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-19 22:01:38 +00:00
18 lines
578 B
Plaintext
18 lines
578 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# gst-launch-1.0 v4l2src
|
|
|
|
> Read frames from a Video4Linux2 device.
|
|
> More information: <https://gstreamer.freedesktop.org/documentation/video4linux2/v4l2src.html>.
|
|
|
|
- View video in a window:
|
|
|
|
`gst-launch-1.0 v4l2src device={{/dev/video0}} ! autovideosink`
|
|
|
|
- Create a PipeWire node out of a v4l2 device:
|
|
|
|
`gst-launch-1.0 v4l2src device={{/dev/video0}} ! videoconvert ! pipewiresink mode=provide stream-properties="properties,media.class=Video/Source" client-name="{{Virtual Camera}}"`
|