“您的本地安装文档”是什么意思?它只是谈论 man ffmpeg ?
man ffmpeg
它指的是各种手册页和 ffmpeg -h 。
ffmpeg -h
是否有任何地方只是托管旧版本的ffmpeg文档?
你可以自己做。安装 建立必要的 和 texinfo的 包, 下载 您的FFmpeg版本的源代码,然后制作HTML文档:
./configure make doc
HTML文件将位于 doc 目录。
doc
或者,更推荐, 下载 要么 编 来自git master分支的最新版本并使用在线文档。
对于任何使用docker并希望在不考虑过多的情况下托管文档的人来说,这就是我提出的Dockerfile。
FROM ubuntu:18.04 # Install requirements for ffmpeg doc generation RUN apt-get update && apt-get install -y git build-essential texinfo yasm # Install requirements for minimal webserver RUN apt-get install -y webfs mime-support && update-mime RUN git clone https://git.ffmpeg.org/ffmpeg.git # Checkout the version that you want RUN cd ffmpeg \ && git checkout tags/n2.8.15 \ && ./configure \ && make doc WORKDIR /ffmpeg/doc CMD webfsd -F -p 80
然后你可以
docker build -t ffmpeg-doc . docker run --rm -it -p 80:80 ffmpeg-doc
并访问 http://localhost 用于生成的文件列表。常见的将是 http://localhost/ffmpeg.html 要么 http://localhost/ffprobe.html 。
http://localhost
http://localhost/ffmpeg.html
http://localhost/ffprobe.html