blob: 01026944db3f4324b0a15b73f160d7d45021b1b9 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
#Issues:
# Sometimes the pipeline will not begin prerolling and hangs. If this occurs
# terminate and try again.
GST_VAAPI_ALL_DRIVERS=1 gst-launch-1.0 -v rtmpsrc location="rtmp://localhost:1935/live/video" ! flvdemux name=demux \
demux.audio ! queue ! decodebin ! audioconvert ! fakesink \
demux.video ! queue ! decodebin ! videoconvert ! "video/x-raw,format=I420" ! v4l2sink device=/dev/video0
|