gpt4 book ai didi

ffmpeg - 在哪里可以找到旧的 ffmpeg/ffprobe 文档?

转载 作者:行者123 更新时间:2023-12-04 22:53:10 24 4
gpt4 key购买 nike

ffmpeg 有几个不同的版本。和 ffprobe飞来飞去,每个版本都有不同的API。

如果我 apt-get install ffmpeg在 Ubuntu 16.04 上,我得到 ffmpeg version 2.8.15-0ubuntu0.16.04.1 .如果我安装 apt-get install ffmpeg在 Ubuntu 18.04 上,我得到 version 3.4.4-0ubuntu0.18.04.1 .

当我访问 ffmpeg documentation ,它说“以下文档每晚重新生成,并且对应于最新的 FFmpeg 修订版。请查阅本地安装的文档以获取旧版本。”也就是说,托管文档不是这两个版本。

所以我有两个问题:

  • “您本地安装的文档”是什么意思?是不是只说man ffmpeg ?或者有什么方法可以将文档托管为网页?
  • 是否有任何地方只是托管旧版本的 ffmpeg 文档?
  • 最佳答案

    对于任何使用 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.htmlhttp://localhost/ffprobe.html .

    关于ffmpeg - 在哪里可以找到旧的 ffmpeg/ffprobe 文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54977426/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com