I'm trying to get Resourcespace with ffmpeg & exiftool working under bitnami + Ubuntu 12.04.2.
I've installed the Ubuntu 12.04.2 packages for ffmpeg, exiftool and all the dependencies via "sudo apt-get install ffmpeg libimage-exiftool-perl" and when I run them via the commandline, they seem to work just fine.
But, when Resourcespace tries to check their version numbers (for compatibility) it execs them from apache2 under bitnami, and gets the following errors:
2013-05-06 04:04:41 CLI command: '/usr/bin/ffmpeg' -version
2013-05-06 04:04:41 CLI output:
2013-05-06 04:04:41 CLI errors: /usr/bin/ffmpeg: /opt/bitnami/common/lib/libstdc++.so.6: version `GLIBCXX_3.4.11' not found (required by /usr/lib/x86_64-linux-gnu/libjack.so.0)
2013-05-06 04:04:41 CLI command: '/opt/bitnami/common/bin/gs' -version
2013-05-06 04:04:41 CLI output: GPL Ghostscript 9.05 (2012-02-08)
2013-05-06 04:04:41 CLI errors:
2013-05-06 04:04:41 CLI command: '/usr/bin/exiftool' -ver
2013-05-06 04:04:41 CLI output:
2013-05-06 04:04:41 CLI errors: Can't load '/opt/bitnami/perl/lib/5.8.8/x86_64-linux/auto/File/Glob/Glob.so' for module File::Glob: /opt/bitnami/perl/lib/5.8.8/x86_64-linux/auto/File/Glob/Glob.so: undefined symbol: PL_sv_undef at /opt/bitnami/perl/lib/5.8.8/x86_64-linux/XSLoader.pm line 70.
So it looks like bitnami is exec'ing these with a modified LD_LIBRARY_PATH that's not compatible with how they were built. Is there any way to get this working right, other than trying to build & compile bitnami packages for these binaries?
Would it help to run an older version of Ubuntu? Which version?