ffmpeg over https fails

后端 未结 3 2043
眼角桃花
眼角桃花 2021-02-19 07:15

If I feed url with http, such as this:

ffmpeg -i http://vjs.zencdn.net/v/oceans.mp4 videojs.mp4

It works perfectly. H

3条回答
  •  别跟我提以往
    2021-02-19 07:58

    The answer can be found in the error message.

    Recompile FFmpeg with openssl, ...

    So, recompile ffmpeg with the required dependencies. You can read more about the process here, and during the ./configure step, just add --with-openssl (or --enable-openssl if you're using a newer version).

    Make sure that you have these packages installed: build-essential, openssl, libssl-dev

    In the comments, you said that you're using Ubuntu, so you can easily install these packages using apt-get install.

    After installation, you can execute ffmpeg -protocols to make sure that you have https listed there.

    By the way, your video (on AWS), can be accessed via the http protocol.

提交回复
热议问题