• 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',
 
I get the same error when uploading certain .mp4 files. After checking the codec, it appears that some MP4 files from social media sites use the .mp4 container but are encoded with the M4V codec. I believe this is why Chevereto rejects the file.
 
Chevereto video support is also browser dependent, for the greater compatibility try using Chrome.

If the video file can't be played by your web browser, Chevereto won't be able to upload the file.
 
It is also device related, for example using a Mac you need at least an M4 chip to interact with HECV, you don't get to play these neither stream natively (you need VLC).

Browser support for video containers is still green and generally a mess, the APIs for getting info (video API, file API) are also a mess when you want to do anything "odd" like reading files over the network, or if you need hashing on top of it.

I think that eventually we will need our own apps for media browsing, the web browser is a jailed tech made to keep us dumb.
 
Back
Top