• 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

Video uploads issue

Version
4.3.7
PHP version
8.2
Database driver
MariaDB
Database version
10.11
Web browser
Firefox

rsunny2012

Chevereto Member
Hello,

I am getting the below error while uploading videos ( 25 mb .mp4 format)

Error report
  • KN.mp4 - Unavailable image format [Code: 613]

FFmpeg bin: /home/user/ffmpeg/ffmpeg
FFprobe bin: /home/user/ffmpeg/ffmpeg
version 7.0.2-static

I have enabled .mp4 format.

what else should i check to fix the issue

I have added the below in env.php file

'CHEVERETO_BINARY_FFMPEG' => '/home/user/ffmpeg/ffmpeg',
'CHEVERETO_BINARY_FFPROBE' => '/home/user/ffmpeg/ffmpeg',
 

The video file you are trying to upload is not a video/mp4 or any other media file supported. Chevereto uses mime-type to detect the file extension, not the dot string at the end of filenames.

For reference, these are the video formats supported as v4.4:

PHP:
        'mov' => 'video/quicktime',
        'mp4' => 'video/mp4',
        'webm' => 'video/webm',
 
Back
Top