I build gstreamer-0.10.18 and gst-plugins-base-0.10.18 on Ubuntu.
Run: gst-launch fakesrc num-buffers=3 ! fakesink It displays the error: Symbol look up error: /usr/local/bin/gst-launch-0.10:
undefined symbol: _gst_debug_bin_dot_file_with_ts. Any help would be greatly appreciated, SZ ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
On Fri, 2008-03-28 at 11:32 -0800, Zheng, Shude wrote:
> I build gstreamer-0.10.18 and gst-plugins-base-0.10.18 on Ubuntu. > > Run: gst-launch fakesrc num-buffers=3 ! fakesink > > It displays the error: > > Symbol look up error: /usr/local/bin/gst-launch-0.10: undefined > symbol: _gst_debug_bin_dot_file_with_ts. > > Any help would be greatly appreciated, It means /usr/local/bin/gst-launch-0.10 uses the (older) /usr/lib/libgstreamer-0.10.so from the default prefix. Try (in your shell, before running gst-launch-0.10), something like: export PATH="/usr/local/bin:$PATH" export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH" export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH" Cheers -Tim ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
In reply to this post by Zheng, Shude
Thanks, Tim, It works.
-----Original Message----- > I build gstreamer-0.10.18 and gst-plugins-base-0.10.18 on Ubuntu. > > Run: gst-launch fakesrc num-buffers=3 ! fakesink > > It displays the error: > > Symbol look up error: /usr/local/bin/gst-launch-0.10: undefined > symbol: _gst_debug_bin_dot_file_with_ts. > > Any help would be greatly appreciated, It means /usr/local/bin/gst-launch-0.10 uses the (older) /usr/lib/libgstreamer-0.10.so from the default prefix. Try (in your shell, before running gst-launch-0.10), something like: export PATH="/usr/local/bin:$PATH" export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH" export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH" Cheers -Tim ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
Free forum by Nabble | Edit this page |