• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

    • ⚠️ Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • ✅ Confirm that the server meets the System Requirements
    • 🔥 Check for any available Hotfix - your issue could be already reported/fixed
    • 📚 Read documentation - It will be required to Debug and understand Errors for a faster support response

Video Uploads

据文档所述,在 Docker 下你需要使用 ENV 来配置系统:


仅供参考,Docker 在持久存储(称为磁盘)的前提下工作,并且任何文件系统更改(包括编辑某些 php.ini 文件)都必须挂载。如果您只是在容器内编辑文件,则更改将被 Docker 层撤销。

因为我想让你的生活更轻松,所以我在容器启动时直接使用 ENV 添加了 php.ini 覆盖。这样,你不需要更改文件系统,只需传递你需要的内容即可。

您需要的设置是:
https://v4-docs.chevereto.com/application/configuration/environment.html#file-upload(它甚至包括了关于容器使用的备注)。


使用方法很简单,在docker compose下:

在 docker run 下同样简单:
怎么解决视频上传失败问题1724586533770.png1724586544769.png
 
@LJX520

The error is self explanatory: you lack the ffmpeg and ffprobe binaries.

If you have CLI run this (Debian, Ubuntu,etc).

Code:
apt-get install -y ffmpeg

If that's not an option get a static binary build from here: https://johnvansickle.com/ffmpeg/

Place the files in your filesystem and link it using ENV:
 
[用户=93517]@LJX520[/用户]

该错误是不言而喻的:您缺少 ffmpeg 和 ffprobe 二进制文件。

如果您有 CLI,请运行它(Debian、Ubuntu 等)。

Code:
apt-get install -y ffmpeg

如果这不是一个选项,请从这里获取静态二进制构建:https://johnvansickle.com/ffmpeg/

将文件放在您的文件系统并使用 ENV 链接它:
太麻烦了还是你镜像更新一下 谢谢
 
[用户=93517]@LJX520[/用户]

该错误是不言而喻的:您缺少 ffmpeg 和 ffprobe 二进制文件。

如果您有 CLI,请运行它(Debian、Ubuntu 等)。

Code:
apt-get install -y ffmpeg

如果这不是一个选项,请从这里获取静态二进制构建:https://johnvansickle.com/ffmpeg/

将文件放在您的文件系统并使用 ENV 链接它:
1724591676377.png
 
@LJX520

The error is self explanatory: you lack the ffmpeg and ffprobe binaries.

If you have CLI run this (Debian, Ubuntu,etc).

Code:
apt-get install -y ffmpeg

If that's not an option get a static binary build from here: https://johnvansickle.com/ffmpeg/

Place the files in your filesystem and link it using ENV:
Just out of curiosity, is there a web link or document that explains what you mean by placing the static build in the filesystem?
 
Just out of curiosity, is there a web link or document that explains what you mean by placing the static build in the filesystem?
When you download a static build for FFmpeg you end up with two files (ffmpeg and ffprobe). From there you are done, these sole files are all what you need. You store these files at some place in your system, ideally the user bin directory.

From there you just need to setup:

Code:
CHEVERETO_BINARY_FFMPEG=/some/path/ffmpeg
CHEVERETO_BINARY_FFPROBE=/some/path/ffprobe

The only "difficult" here is to grab the build for your CPU, as there are intel, x64, arm, etc variants. In doubt, try with amd64 first.
 
Back
Top