Created
December 1, 2015 17:35
-
-
Save athoik/b362874b837a7bb559e6 to your computer and use it in GitHub Desktop.
Print GStreamer Elements containing connection-speed property
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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