2025-06-09 15:25:14 +02:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('video', {
|
2025-07-12 23:02:35 -07:00
|
|
|
name: 'Video to GIF',
|
2025-06-09 15:25:14 +02:00
|
|
|
path: 'video-to-gif',
|
2025-07-12 23:02:35 -07:00
|
|
|
icon: 'material-symbols:gif',
|
|
|
|
|
description:
|
|
|
|
|
'Convert video files to animated GIF format. Extract specific time ranges and create shareable animated images.',
|
|
|
|
|
shortDescription: 'Convert video to animated GIF',
|
|
|
|
|
keywords: ['video', 'gif', 'convert', 'animated', 'image'],
|
|
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
|
|
|
|
name: 'video.videoToGif.name',
|
|
|
|
|
description: 'video.videoToGif.description',
|
|
|
|
|
shortDescription: 'video.videoToGif.shortDescription'
|
|
|
|
|
}
|
2025-06-09 15:25:14 +02:00
|
|
|
});
|