Changes between Version 3 and Version 4 of Yocto/gstreamer
- Timestamp:
- 06/28/2018 03:50:31 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Yocto/gstreamer
v3 v4 262 262 * http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gst-running.html 263 263 264 === Video source loop 265 266 An efficient way of testing multiple video sources is to use a loop. Beneath is a simple bash script that will do this: 267 268 {{{#!bash 269 for i in $(seq 1 8);do ##seq 1 8 represents the range to loop of enumerated /dev/video* devices 270 gst-launch-1.0 imxv4l2videosrc device=/dev/video$i ! imxg2dvideosink & 271 pid=$! 272 echo displaying device $i 273 sleep 5 274 kill $pid 275 done 276 }}} 277 278 264 279 [=#info] 265 280 == More Information ==