rbdl / rbdl-toolkit

Application for visualizing and working with rbdl models
European Union Public License 1.2
19 stars 11 forks source link

App Image libx264 not found #10

Closed ju6ge closed 4 years ago

ju6ge commented 4 years ago

When trying to render a video with the AppImage it crashes in some cases with libx264 not found. Probably this library needs to be added to the image as well. But this will require some debugging, since this library searched and loaded with in the ffmpeg code.

ju6ge commented 4 years ago

This problem was due to the ffmpeg version I compiled on Ubuntu 14.04 for the AppImage build was missing some configure flags. Which include this codec for the AppImage. Full command to setup ffmpeg corretly:

./configure --prefix=<install_path> --disable-static --enable-shared --enable-encoder=libx264 --enable-libx264 --enable-pic --enable-gpl
make CXX_FLAGS="-std=c++11 -fPIC"