Sun, Apr 01, 2007 at 12:27:36AM +0200, Florian Cramer skribis: > Am Sonntag, 01. April 2007 um 00:01:50 Uhr (+0200) schrieb jb: > > Could you try with MLT's command line player so that we can track > > down the issue ? > > From a terminal, do: > > > > inigo my_clip.mpg > > results in: > > "Failed to load plugin: /usr/share/mlt/modules/libmltsdl.so: undefined > symbol: XGetWindowAttributes" > (xlib from X.org 7.1 is installed, XGetWindowAttributes referenced by > manpage on the system.)
Try fixing this problem first. Some library dependency/path is missing. Use "ldd /usr/share/mlt/modules/libmltsdl.so" so you can see what's missing. Now locate where the library sits, and add directory to search path: export LD_LIBRARY_PATH="$LD_LIBRARY_PATH":/where/my/library/sits/ restart inigo. -- Stephane
