如何判断使用 FFMPEG 构建的 OpenSSL 版本

如何判断使用 FFMPEG 构建的 OpenSSL 版本

当我这样做时ffmpeg -version,我得到了这个:

ffmpeg version 4.4 Copyright (c) 2000-2021 the FFmpeg developers
built with Apple clang version 11.0.0 (clang-1100.0.33.17)
configuration: --enable-openssl
libavutil      56. 70.100 / 56. 70.100
libavcodec     58.134.100 / 58.134.100
libavformat    58. 76.100 / 58. 76.100
libavdevice    58. 13.100 / 58. 13.100
libavfilter     7.110.100 /  7.110.100
libswscale      5.  9.100 /  5.  9.100
libswresample   3.  9.100 /  3.  9.100

它说--enable-openssl,但是我如何检查它具体是用哪个版本的 SSL 构建的?

答案1

你可以看看它是哪个版本链接到:

$ ldd /usr/bin/ffmpeg | grep ssl
libssl.so.1.0.0 => /usr/lib/i386-linux-gnu/libssl.so.1.0.0 (0xb5ae8000)

然后,您可以使用发行版所使用的包管理器检查此库属于哪个版本的 openssl。

相关内容