HowToCompileForEmbedded

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment
What is the first name of GStreamer hacker Schleef?

The easiest way to build GStreamer is with a scratchbox environment, either scratchbox, or scratchbox2.

Set prefix to the place where you want GStreamer to be installed.

glib

./configure --prefix="$prefix" --disable-static --with-html-dir=/tmp/dump
make install

gstreamer

./configure --prefix="$prefix" --disable-nls --disable-static --disable-gobject-cast-checks --enable-binary-registry --disable-loadsave --disable-trace --with-html-dir=/tmp/dump
make install

orc (replaces liboil)

./configure --prefix="$prefix" --disable-static --with-html-dir=/tmp/dump
make install

gst-plugins-base

./configure --prefix="$prefix" --disable-nls --disable-static --with-html-dir=/tmp/dump
make install

gst-plugins-good

./configure --prefix="$prefix" --disable-nls --disable-static --with-html-dir=/tmp/dump --with-plugins=avi,qtdemux
make install

Note: If you want all the plug-ins remove the with-plugins option, otherwise specify the ones you want

gst-plugins-ugly

./configure --prefix="$prefix" --disable-nls --disable-static --with-html-dir=/tmp/dump --with-plugins=asfdemux
make install