2025-05-25 13:38:43 +02:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('video', {
|
|
|
|
|
path: 'crop-video',
|
2025-07-12 11:02:15 -07:00
|
|
|
icon: 'material-symbols:crop',
|
|
|
|
|
keywords: [
|
|
|
|
|
'crop',
|
|
|
|
|
'video',
|
|
|
|
|
'trim',
|
|
|
|
|
'aspect ratio',
|
|
|
|
|
'mp4',
|
|
|
|
|
'mov',
|
|
|
|
|
'avi',
|
|
|
|
|
'video editing',
|
|
|
|
|
'resize'
|
|
|
|
|
],
|
2025-07-12 23:02:35 -07:00
|
|
|
i18n: {
|
2025-07-13 11:25:05 +01:00
|
|
|
name: 'video:cropVideo.title',
|
|
|
|
|
description: 'video:cropVideo.description',
|
2025-07-18 14:45:15 -07:00
|
|
|
shortDescription: 'video:cropVideo.shortDescription',
|
2025-07-22 19:47:09 +01:00
|
|
|
userTypes: ['generalUsers']
|
2025-07-18 14:45:15 -07:00
|
|
|
},
|
2025-05-25 13:38:43 +02:00
|
|
|
component: lazy(() => import('./index'))
|
|
|
|
|
});
|