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:
Support response
Support checklist
/* Binary variables */
'CHEVERETO_BINARY_FFMPEG' => '/usr/bin/ffmpeg',
'CHEVERETO_BINARY_FFPROBE' => '/usr/bin/ffprobe',
ffprobe is not installed. Are you on shared hosting?
ffprobe is not installed. Are you on shared hosting?
That's the default and will override on every update. Useapp/env-default.php
app/env.php
, which won't override.Long as they enable to run binaries (PHP exec) you can use FFmpeg as you just need the static binary somewhere in the filesystem. I've installed FFmpeg several times in shared hosting.Shared hosting doesn't allow you to install FFmpeg
That's the default and will override on every update. Useapp/env.php
, which won't override.
Long as they enable to run binaries (PHP exec) you can use FFmpeg as you just need the static binary somewhere in the filesystem. I've installed FFmpeg several times in shared hosting.
I encountered the exact same issue, even after installing a fresh version of FFmpeg on a newly set-up Debian web server. I tried everything, from creating symlinks to modifying the open_basedir paths, but nothing worked. In the end, I simply moved /usr/bin/ffmpeg and /usr/bin/ffprobe to the public_html directory, and that finally resolved the problem. Additionally, it’s crucial to update the paths in Chevereto's configuration file (app/env-default.php) to reflect the new location of FFmpeg and FFprobe after moving them.