找不到FFserver命令,甚至安装ffmpeg

时间:2020-06-20 08:35:12

标签: python-3.x ffmpeg computer-vision ffserver

我按照说明安装ffmpeg(https://github.com/udacity/nd131-openvino-fundamentals-project-starter/blob/master/linux-setup.md

sudo apt install ffmpeg

但是,它并没有一起安装ffserver,而是应该在Internet上搜索后才安装。

下面是我的系统配置

Ubuntu 18.04
Python3.7 
ffmpeg 4.2.2

我要执行的命令

sudo ffserver -f ./ffmpeg/server.conf

预期

ffserver version x.x.x.x.....

当前结果

ffserver command not found

谢谢

1 个答案:

答案 0 :(得分:0)

FFmpeg的FFServer功能已从主要版本中删除。

您必须启动较旧版本的FFmpeg并进行安装。

以下是一些说明:

https://superuser.com/questions/1296377/why-am-i-getting-an-unable-to-find-a-suitable-output-format-for-http-localho/1297419#1297419

此外,如果您使用Docker,则可以使用此版本的Alpine发行版。 ffmpeg的apk版本较旧,因此使用下面的Dockerfile实际上会安装具有ffserver的ffmpeg版本。

FROM alpine:3.8
RUN apk add curl bash ffmpeg && \
    rm -rf /var/cache/apk/*

COPY ffserver.conf /etc/ffserver.conf

ENTRYPOINT [ "ffserver" ]