Description
I use the product of this great project on various systems and since aome of them have no running docker instance, i've got the habbit of copying the binaries from the image to a distribution server which is then used to update other systems where i use ffmpeg and friend.
I recently came upon a ssl error while using ffprobe and found out, after some digging, that RedHat flavored distributions apply a patch to modify openssl config file in order to add special, distro-specific config parameters which in turn is unrecognized from an unpatched openssl instance.
[tls @ 0x7f80c8ec3800] error:030000A9:digital envelope routines::unknown option
I first tried adding -reconnect_on_network_error true
to my ffprobe command with some success.
the initial error message still shows but the command is ran without problems afterwards.
After some research.. i found this openssl/openssl#23016
I then found what ultimately works for me which is explained in my comment HERE
file /etc/crypto-policies/back-ends/opensslcnf.config
contains the unrecognized config argument (Fedora set to yes and no on RedHat)
[evp_properties] rh-allow-sha1-signatures = yes
I raise this to let you know about my issue and how i 'fixed' it so you can see if it's worth including in the readme file somehow.