Unable to install ffmpeg on CircleCi Ubuntu 14.04 -


i have ruby on rails project uses circleci continuous deployment. i'm trying install ffmpeg because need make of specs green. unfortunately i'm not able that. i've read lot of different topics didn't find solution that. i'm installing ffmpeg in following way:

cd ~/ffmpeg_sources wget http://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 tar xjvf ffmpeg-snapshot.tar.bz2 cd ffmpeg path="$path:$home/bin" pkg_config_path="$home/ffmpeg_build/lib/pkgconfig" ./configure \   --prefix="$home/ffmpeg_build" \   --extra-cflags="-i$home/ffmpeg_build/include" \   --extra-ldflags="-l$home/ffmpeg_build/lib" \   --bindir="$home/bin" \   --extra-libs="-ldl" \   --enable-gpl \   --enable-libass \   --enable-libfdk-aac \   --enable-libfreetype \   --enable-libmp3lame \   --enable-libopus \   --enable-libtheora \   --enable-libvorbis \   --enable-libvpx \   --enable-libx264 \   --enable-nonfree \   --enable-x11grab path="$path:$home/bin" make sudo make install sudo make distclean hash -r 

i didn't see errors in console when run specs of them failing because of missing ffmpeg library. how can solve problem?


Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -