Skip to content

Instantly share code, notes, and snippets.

@athoik
Created December 1, 2015 17:35
Show Gist options
  • Save athoik/b362874b837a7bb559e6 to your computer and use it in GitHub Desktop.
Save athoik/b362874b837a7bb559e6 to your computer and use it in GitHub Desktop.
Print GStreamer Elements containing connection-speed property
gst-inspect-1.0 -a | awk -F: '{ print $1 }' | sort | uniq | while read LINE; do (gst-inspect-1.0 $LINE 2>/dev/null | grep connection-speed -A
2) && echo $LINE; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment