• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • 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

FFMPEG Static Support?

laudenbachm

Chevereto Member
Greetings ~

Due to the config of my servers each website runs in its own container. These containers do not have traditional root support and I really don't want to install FFMPEG across multiple hosts. Would Chevereto support FFMPEG static (https://johnvansickle.com/ffmpeg/) If so, how /where would I adjust the location the script is looking for FFMPEG at?

Please note I'm willing to pay for Pro Support but the only option is using a PayPal account (doesn't see to allow guest payment). I did email Rodolfo for other options.

Thank you for your time and help.

Mark
 
Rodolfo ~

You are amazing. I really apperciate the awesome support. I sent you an email about other ways to gain pro support. When you have time (no rush) let me know if there are other options.

Thank you again.

Mark
 
So these variables seem to be different than the rest?

Would I actually use it like this?
PHP:
'CHEVERETO_BINARY_FFPROBE' => 'ffprobe /somepath/ffmpeg/ffmpeg-git-20240504-amd64-static/ffprobe',

I guess I've tried it a few ways and doesn't seem to detect ffprobe. However, I can run ffprobe as the same user. Maybe it's a version of FFMPEG issue?

Thank you.

Mark
 

Attachments

  • 1715720975307.png
    1715720975307.png
    65.9 KB · Views: 20
PHP:
'CHEVERETO_BINARY_FFPROBE' => '/somepath/ffmpeg/ffmpeg-git-20240504-amd64-static/ffprobe',
 
Error: Unable to load FFProbe: Executable not found, proposed : ffprobe, Unable to load FFProbe: Executable not found, proposed : ffprobeScreenshot_20240922_232210_Chrome.jpg
 
Error: Unable to load FFProbe: Executable not found, proposed : ffprobe, Unable to load FFProbe: Executable not found, proposed : ffprobeView attachment 6081
There's no ffmpeg binary installed in your PATH, you need to manually download the static binary and link it using the above instructions.
 
I am also trying to do this. I am running chevereto on a php cpanel installation. I have installed the static files from the link above into a folder "ffmpeg" in the public_html directory where chevereto is running. I have tried two ways, but they don't detect.

PHP:
    'CHEVERETO_BINARY_FFMPEG' => '/public_html/ffmpeg/ffmpeg',
    'CHEVERETO_BINARY_FFPROBE' => '/public_html/ffmpeg/ffprobe',

i have also tried
PHP:
    'CHEVERETO_BINARY_FFMPEG' => '/ffmpeg/ffmpeg',
    'CHEVERETO_BINARY_FFPROBE' => '/ffmpeg/ffprobe',

but i get this message still
Error: Unable to load FFProbe: Executable not found, proposed : /ffmpeg/ffprobe, Unable to load FFProbe: Executable not found, proposed : /ffmpeg/ffprobe
 
Last edited:
@user754 You need to provide the full path, public_html is rarely on the root path of any system, it is often under "/var/www/public_html..." or "/home/username/public_html..." etc. you need to check for the path in your cPanel info.
 
@user754 You need to provide the full path, public_html is rarely on the root path of any system, it is often under "/var/www/public_html..." or "/home/username/public_html..." etc. you need to check for the path in your cPanel info.
Thanks, I tried the home path also, but got the same result.
Error: Unable to load FFProbe: Executable not found, proposed : /home/user/public_html/ffmpeg/ffprobe, Unable to load FFProbe: Executable not found, proposed : /home/user/public_html/ffmpeg/ffprobe
 
Back
Top