Skip to content

Commit

Permalink
Merge pull request labgrid-project#1494 from tretter/reduce-latency-o…
Browse files Browse the repository at this point in the history
…f-labgrid-client-video

driver/usbvideodriver: reduce latency of GStreamer pipeline
  • Loading branch information
Emantor authored Sep 12, 2024
2 parents 8550918 + a9295fc commit 6b54121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labgrid/driver/usbvideodriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def stream(self, caps_hint=None, controls=None):
tx_cmd = self.video.command_prefix + ["gst-launch-1.0", "-q"]
tx_cmd += pipeline.split()
rx_cmd = ["gst-launch-1.0"]
rx_cmd += "playbin3 uri=fd://0".split()
rx_cmd += "playbin3 buffer-duration=0 uri=fd://0".split()

tx = subprocess.Popen(
tx_cmd,
Expand Down

0 comments on commit 6b54121

Please sign in to comment.