FluentPlayer Video Upload - File size limit per member
With the new FluentPlayer video upload feature, is there a way to set a maximum file size limit for videos uploaded by members? For example, limiting uploads to 50MB or 100MB per video.
Currently, the default file size limit is 300MB per video. There's no UI setting for this yet, but you can customize it by adding a filter
// Set video upload limit to 50MB
add_filter('fluent_community/video_upload_max_file_size', function() {
return 50; // in MB
});
Keep in mind your server's PHP upload_max_filesize and post_max_size settings also apply β whichever is lower will be the actual limit.