Skip to content

Instantly share code, notes, and snippets.

View OpnSrcConstruction's full-sized avatar
:octocat:
Working from home

Open Source Construction OpnSrcConstruction

:octocat:
Working from home
View GitHub Profile
@OpnSrcConstruction
OpnSrcConstruction / GStreamer-1.0 some strings.sh
Created March 5, 2017 15:27 — 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 ! \