Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要捕获用户上传视频的帧。我才知道ffmpeg可以做到这一点。请在我的linux服务器上提供ffmpeg的详细安装说明。我只有通过putty登录ssh的信息。另外我需要安装哪些软件。 ffmpeg 播放器是否包含在安装过程中。提前致谢
根据您提供的非常有限的信息,您可以使用以下命令执行非常基本的 ffmpeg 安装:
$ git clone --depth 1 git://source.ffmpeg.org/ffmpeg $ cd ffmpeg $ ./configure $ make # make install
您将需要gcc、git和make作为依赖项。pkg-config并且yasm是推荐的依赖项。
gcc
git
make
pkg-config
yasm