Skip to content

Instantly share code, notes, and snippets.

@philhartung
Last active October 2, 2023 12:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save philhartung/8e56a11350f8448a0fa281c4f1716463 to your computer and use it in GitHub Desktop.
Save philhartung/8e56a11350f8448a0fa281c4f1716463 to your computer and use it in GitHub Desktop.
Stream a video via network to OBS with low latency (<100ms)
#!/bin/sh
# host is the IP of the receiving computer
host="192.168.0.101"
gst-launch-1.0 v4l2src device=/dev/video0 ! video/x-h264, width=1920, height=1080, framerate=30/1 ! rtph264pay ! udpsink host=$host port=5004
#!/bin/sh
gst-launch-1.0 udpsrc port=5004 ! application/x-rtp, encoding-name=H264 ! rtph264depay ! h264parse ! d3d11h264dec ! autovideosink
@philhartung
Copy link
Author

AVMatrix UC2018 streaming (H264 encoding via QuickSync):

@echo off
:loop
ffmpeg -f dshow -rtbufsize 10M -i video="AVMATRIX USB Capture Video" -vcodec h264_qsv -tune zerolatency -an -f rtp rtp://192.168.1.165:5004
goto loop

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment