Skip to content

Instantly share code, notes, and snippets.

View wbarksdale's full-sized avatar

William Barksdale wbarksdale

View GitHub Profile
@wbarksdale
wbarksdale / GStreamer-1.0 some strings.sh
Created November 16, 2018 03:32 — forked from strezh/GStreamer-1.0 some strings.sh
GStreamer-1.0 personal cheat sheet
#!/bin/bash
# play YUV444 FULL HD file
gst-launch-1.0 -v filesrc location=size_1920x1080.yuv ! \
videoparse width=1920 height=1080 framerate=25/1 format=GST_VIDEO_FORMAT_Y444 ! \
videoconvert ! \
autovideosink
# play YUV422 FULL HD file
gst-launch-1.0 -v filesrc location=size_1920x1080.yuv ! \