mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 19:47:17 +00:00
03f79a311c
GStreamer Daemon, also called gstd, is a GStreamer framework for controlling audio and video streaming using TCP connection messages. Qt applications, web interfaces, and GStreamer element test suites show different ways the framework can be utilized. GStreamer Daemon is gst-launch on steroids where you can create a GStreamer pipeline, play, pause, change speed, skip around, and even change element parameter settings all while the pipeline is active. Signed-off-by: Carlos Rodriguez <carlos.rodriguez@ridgerun.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
26 lines
752 B
PHP
26 lines
752 B
PHP
DESCRIPTION = "Gstreamer Daemon 1.0"
|
|
SUMMARY = "GStreamer framework for controlling audio and video streaming using TCP connection messages"
|
|
HOMEPAGE = "https://developer.ridgerun.com/wiki/index.php?title=Gstd-1.0"
|
|
SECTION = "multimedia"
|
|
LICENSE = "GPLv2+"
|
|
|
|
DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base gstreamer1.0-plugins-bad gstreamer1.0-rtsp-server json-glib libdaemon"
|
|
|
|
SRCBRANCH ?= "master"
|
|
SRCREV = "097a086a8606dcb368c7d38c7ec4fefc2497401b"
|
|
SRC_URI = "git://git@github.com/RidgeRun/gstd-1.x.git;protocol=https;branch=${SRCBRANCH} \
|
|
file://0001-gstd-yocto-compatibility.patch"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
PACKAGECONFIG_CONFARGS = " \
|
|
--disable-gtk-doc \
|
|
"
|
|
|
|
inherit autotools pkgconfig gettext
|
|
|
|
do_configure() {
|
|
${S}/autogen.sh
|
|
oe_runconf
|
|
}
|