Changes between Version 3 and Version 4 of gstreamer
- Timestamp:
- 02/26/2020 06:02:49 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
gstreamer
v3 v4 110 110 Adding a {{{-v}}} flag to {{{gst-launch-1.0}}} will output the capabilities negotiated between elements: 111 111 {{{#!bash 112 # gst-launch-1.0 -v videotestsrc ! fakesink112 ~# gst-launch-1.0 -v videotestsrc ! fakesink 113 113 Setting pipeline to PAUSED ... 114 114 Pipeline is PREROLLING ... … … 162 162 163 163 == gst-inspect 164 The {{{gst-inspe d-1.0}}} tool is an excellent tool if you're unfamiliar with the functionality, source/sink formats, or properties of any Gstreamer element.164 The {{{gst-inspect-1.0}}} tool is an excellent tool if you're unfamiliar with the functionality, source/sink formats, or properties of any Gstreamer element. 165 165 166 166 Usage: … … 356 356 * HDMI enabled and configured for 1080p60Hz LVDS disabled: 357 357 {{{#!bash 358 root@bionic-armhf:~# for arg in $(cat /proc/cmdline); do echo $arg | grep video; done358 ~# for arg in $(cat /proc/cmdline); do echo $arg | grep video; done 359 359 video=HDMI-A-1:1920x1080M@60 360 360 video=LVDS-1:d … … 362 362 * HDMI disabled and LVDS configured for 1280x800 60Hz 363 363 {{{#!bash 364 root@bionic-armhf:~# for arg in $(cat /proc/cmdline); do echo $arg | grep video; done364 ~# for arg in $(cat /proc/cmdline); do echo $arg | grep video; done 365 365 video=LVDS-1:1280x800@60M 366 366 video=HDMI-A-1:d … … 488 488 v4l2-ctl -d /dev/video1 --all 489 489 }}} 490 * Use Gateworks {{{media-ctl-setup}}} to configure the media-ctl pipeline for Analog Video capture using the adv7180 chip :491 {{{#!bash 492 wget https://raw.githubusercontent.com/Gateworks/media-ctl-setup/master/media-ctl-setup 493 chmod +x media-ctl-setup494 ./media-ctl-setup adv7180 > setup490 * Use Gateworks {{{media-ctl-setup}}} to configure the media-ctl pipeline for Analog Video capture using the adv7180 chip. If you don't already have this on your root filesystem you can install it via: 491 {{{#!bash 492 wget https://raw.githubusercontent.com/Gateworks/media-ctl-setup/master/media-ctl-setup -O /usr/local/bin/media-ctl-setup 493 chmod +x /usr/local/bin/media-ctl-setup 494 media-ctl-setup adv7180 > setup 495 495 . ./setup 496 496 }}}