mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Add options to convert AVIF and HEIC images using ImageMagick 7.x
This commit is contained in:
parent
51a4604750
commit
f7c01cccfb
6 changed files with 56 additions and 14 deletions
|
|
@ -86,10 +86,12 @@ $lang->about_use_image_default_file_config = 'Follow the default settings of ima
|
|||
$lang->use_video_default_file_config = 'Use Default Settings Of Video File';
|
||||
$lang->about_use_video_default_file_config = 'Follow the video settings of image file from the File module.';
|
||||
$lang->image_autoconv = 'Convert Type';
|
||||
$lang->about_image_autoconv = 'convert the type of uploaded images. You can fix images that often cause trouble or waste disk space into other types.<br />This also works for WebP images that incorrectly have the JPG extension.';
|
||||
$lang->about_image_autoconv = 'Automatically convert uploaded images. This may help you handle image formats that are not widely supported or waste disk space.';
|
||||
$lang->image_autoconv_bmp2jpg = 'BMP → JPG';
|
||||
$lang->image_autoconv_png2jpg = 'PNG → JPG';
|
||||
$lang->image_autoconv_webp2jpg = 'WebP → JPG';
|
||||
$lang->image_autoconv_avif2jpg = 'AVIF → JPG';
|
||||
$lang->image_autoconv_heic2jpg = 'HEIC → JPG';
|
||||
$lang->max_image_size = 'Limit Image Size';
|
||||
$lang->about_max_image_size = 'Limit the dimensions of uploaded images. Note that this is only indirectly related to file size.';
|
||||
$lang->max_image_size_action_nothing = 'If exceeded, do nothing';
|
||||
|
|
@ -117,7 +119,12 @@ $lang->video_thumbnail = 'Video Thumbnail';
|
|||
$lang->about_video_thumbnail = 'extract a thumbnail image from uploaded video.';
|
||||
$lang->video_mp4_gif_time = 'Play Like GIF';
|
||||
$lang->about_video_mp4_gif_time = 'treat silent MP4 videos with duration less than the set time as GIF images, and play with auto and loop.';
|
||||
$lang->ffmpeg_path = 'FFmpeg path';
|
||||
$lang->ffprobe_path = 'FFprobe path';
|
||||
$lang->msg_cannot_use_ffmpeg = 'FFmpeg and FFprobe must can be executed by PHP.';
|
||||
$lang->msg_cannot_use_exif = 'PHP Exif module is required.';
|
||||
$lang->external_program_paths = 'Paths to External Programs';
|
||||
$lang->ffmpeg_path = 'Absolute Path to ffmpeg';
|
||||
$lang->ffprobe_path = 'Absolute Path to ffprobe';
|
||||
$lang->magick_path = 'Absolute Path to magick';
|
||||
$lang->about_ffmpeg_path = 'Rhymix uses ffmpeg to convert video files.';
|
||||
$lang->about_magick_path = 'Rhymix uses magick to convert newer image formats such as AVIF and HEIC.<br />Note that the \'convert\' command from previous versions of ImageMagick doesn\'t support these formats.';
|
||||
$lang->msg_cannot_use_ffmpeg = 'In order to use this feature, PHP must be able to execute \'ffmpeg\' and \'ffprobe\' commands.';
|
||||
$lang->msg_cannot_use_exif = 'In order to use this feature, PHP must be installed with the \'exif\' extension.';
|
||||
$lang->msg_need_magick = 'In order to handle AVIF and HEIC formats, PHP must be able to execute the \'magick\' command from ImageMagick 7.x or higher.';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue