Trying to use vf_ccrepack.c I need to use libavfilter from https://github.com/LTNGlobal-opensource/FFmpeg-ltn/tree/lted1 And not the version from ffmpeg-4.4.tar.bz2 How would I do that? On Ubuntu 21.10, using this config:
cd ~/ffmpeg_sources wget https://ffmpeg.org/releases/ffmpeg-4.4.tar.bz2 tar -xvf ffmpeg-*.tar.bz2 cd ffmpeg-*/ PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \ --prefix="$HOME/ffmpeg_build" \ --pkg-config-flags="--static" \ --extra-cflags="-I$HOME/ffmpeg_build/include -I$HOME/ffmpeg_sources/BMD_SDK/include" \ --extra-ldflags="-L$HOME/ffmpeg_build/lib" \ --extra-libs="-lpthread -lm" \ --bindir="$HOME/bin" \ --enable-debug \ --disable-shared \ --disable-doc \ --disable-ffplay \ --disable-sdl2 \ --enable-gpl \ --enable-libass \ --enable-libfdk-aac \ --enable-libfreetype \ --enable-libmp3lame \ --enable-libopus \ --enable-libsvtav1 \ --enable-libvorbis \ --enable-libvpx \ --enable-libx264 \ --enable-libx265 \ --enable-nonfree \ --enable-version3 \ --enable-runtime-cpudetect \ --enable-avfilter \ --enable-fontconfig \ --enable-libfribidi \ --enable-libsoxr \ --enable-libsrt \ --enable-libtwolame \ --enable-libvpx \ --enable-openssl \ --enable-zlib \ --enable-pic \ --enable-libklvanc\ --enable-decklink _______________________________________________ ffmpeg-user mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
