Implement video auto resizing and reencoding

This commit is contained in:
Kijin Sung 2023-05-24 13:16:11 +09:00
parent 4fc308afad
commit a14cf85763
3 changed files with 111 additions and 6 deletions

View file

@ -54,6 +54,9 @@ $lang->msg_exceeds_limit_size = 'This file exceeds the attachment limit.';
$lang->msg_exceeds_max_image_size = 'This image is too large. Images must be no larger than %dx%dpx.';
$lang->msg_exceeds_max_image_width = 'This image is too large. The maximum permitted width is %dpx.';
$lang->msg_exceeds_max_image_height = 'This image is too large. The maximum permitted height is %dpx.';
$lang->msg_exceeds_max_video_size = 'This video is too large. Videos must be no larger than %dx%dpx.';
$lang->msg_exceeds_max_video_width = 'This video is too large. The maximum permitted width is %dpx.';
$lang->msg_exceeds_max_video_height = 'This video is too large. The maximum permitted height is %dpx.';
$lang->msg_file_not_found = 'Could not find requested file.';
$lang->msg_file_key_expired = 'This download link is expired. Please initiate the download again.';
$lang->file_search_target_list['filename'] = 'File Name';