15 lines
550 B
Bash
Executable File
15 lines
550 B
Bash
Executable File
#!/bin/bash
|
|
GST_DEBUG_COLOR_MODE=off \
|
|
GST_TRACERS="latency(flags=pipeline+element)" \
|
|
GST_DEBUG="GST_TRACER:7" \
|
|
GST_DEBUG_FILE=latency_traces.log \
|
|
gst-launch-1.0 decklinkvideosrc drop-no-signal-frames=true mode=auto device-number=1 connection=1 ! \
|
|
glupload ! \
|
|
glcolorconvert ! \
|
|
capsfilter caps="video/x-raw(memory:GLMemory)" ! \
|
|
nvh264enc rc-mode=2 bitrate=10000 preset=3 gop-size=0 bframes=0 b-adapt=false zerolatency=true ! \
|
|
capsfilter caps="video/x-h264,profile=main" ! \
|
|
nvh264dec ! \
|
|
glcolorconvert ! \
|
|
glimagesink sync=false
|