GStreamer & Processing wont work on my mac!
I have a Mac Powerbook 2.2 GHz Intel with 3GB Ram with GeForce 8600M GT 128 MB VRam
I did the following:
install Xcode tools 2.5 (Tiger) from http://developer.apple.com/tools/xcode (register as apple developer)
install MacPorts 1.6.0 (Tiger) from http://www.macports.org
open ' Terminal '
-> export PATH=/opt/local/bin:/opt/local/sbin:$PATH
-> export MANPATH=/opt/local/share/man:$MANPATH
-> sudo port selfupdate
(Macport version is the newest)
-> sudo port install gstreamer
(about 30 packages sucessfully installed)
The GSvideo Processing example gives me: "unsatisfied link, could not find gstreamer..."
download gstreamer-0.10.17.tar from http://gstreamer.freedesktop.org
unpack and navigate with Terminal in folder gstreamer-0.10.17
-> LDFLAGS="-L/usr/local/lib -L/opt/local/lib" CFLAGS="-I/usr/local/include -I/opt/local/include"
-> PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:/opt/local/lib/pkgconfig"
-> ./configure --prefix=/usr/local && make DEPRECATED_CFLAGS="" && sudo make install
(everything fine)
The GSvideo Processing example now generates some errors:
(GSMovie:243): GLib-GObject-WARNING **: cannot register existing type `GstObject'
(GSMovie:243): GLib-GObject-CRITICAL **: g_type_register_static: assertion `parent_type > 0' failed
(GSMovie:243): GStreamer-CRITICAL **: gst_element_register: assertion `g_type_is_a (type, GST_TYPE_ELEMENT)' failed
Exception in thread "Thread-2" java.lang.UnsatisfiedLinkError: Unable to load library 'glib-2.0': dlopen(libglib-2.0.dylib, 1): image not found
at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:114)
then I tried to install gst-plugins-base-0.10.15 but there was a:"cant find gstreamer-check.pc in pkgconfig path..."
and so on, after more than 3 hours I gave up...