We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems there is no ffplay bin file after the compilation?
The text was updated successfully, but these errors were encountered:
the same question,ffplay compile error
Sorry, something went wrong.
function build_ffmpeg () { echo '♻️ ' Start compiling FFMPEG cd ${CMPLD} cd ffmpeg export LDFLAGS="-L${SRC}/lib ${LDFLAGS:-}" export CFLAGS="-I${SRC}/include ${CFLAGS:-}" export LDFLAGS="$LDFLAGS -lexpat -lenca -lfribidi -liconv -lstdc++ -lfreetype -framework CoreText -framework VideoToolbox" ./configure --prefix=${SRC} --extra-cflags="-fno-stack-check" --arch=${ARCH} --cc=/usr/bin/clang \ --enable-fontconfig --enable-gpl --enable-libopus --enable-libtheora --enable-libvorbis \ --enable-libmp3lame --enable-libass --enable-libfreetype --enable-libx264 --enable-libx265 --enable-libvpx \ --enable-libaom --enable-libvidstab --enable-libsnappy --enable-version3 --pkg-config-flags=--static \ --disable-ffplay --enable-postproc --enable-nonfree --enable-runtime-cpudetect echo "build start" start_time="$(date -u +%s)" make -j ${NUM_PARALLEL_BUILDS} end_time="$(date -u +%s)" elapsed="$(($end_time-$start_time))" make install echo "[FFmpeg] $elapsed seconds elapsed for build" }
remove the config --disable-ffplay
--disable-ffplay
No branches or pull requests
It seems there is no ffplay bin file after the compilation?
The text was updated successfully, but these errors were encountered: