I have installed both openssl and openssl-dev, with these:
sudo apt-get install openssl
sudo apt-get install libssl-dev
And has install ffmpeg by these:
sudo add-apt-repository ppa:mc3man/trusty-media
sudo apt-get install ffmpeg
Now I would like to enable https protocol for ffmpeg
. I did try these:
user@user-VirtualBox:~/ffmpeg_sources/ffmpeg$ ./configure --enable-openssl
And its listed in the Enabled protocols
list.
After that ran these commands:
make
make install
But with no help. And if check the ffmpeg -protocols
, the https
protocols is not listed there.
I am using ubuntu inside a virtualbox, and I not very good at it. If you could please guide me through how to compile openssl
with ffmpeg to enable https protocol I would be very thank grateful. Thank you.
/usr/local/bin/ffmpeg
- also what is the output ofwhereis ffmpeg
? Also, what version of ubuntu are you using? – Wilf Jul 20 '15 at 15:02