The answer can be found in the error message.
Recompile FFmpeg with openssl, ...
So recompile ffmpeg with the necessary dependencies. You can read more about the process here , but in the ./configure step just add --with-openssl .
Make sure you have these packages installed: build-essential , openssl , libssl-dev
In the comments, you said you were using Ubuntu, so you can easily install these packages with apt-get install .
After installation, you can run ffmpeg -protocols to make sure there is https .
By the way, your video (on AWS ) can be obtained via the http protocol.
source share