2025-05-25 13:38:43 +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: 'Crop Video',
|
2025-05-25 13:38:43 +02:00
|
|
|
path: 'crop-video',
|
2025-07-12 23:02:35 -07:00
|
|
|
icon: 'material-symbols:crop',
|
|
|
|
|
description:
|
|
|
|
|
'Crop video files to remove unwanted areas or focus on specific content. Specify crop dimensions and position to create custom video compositions.',
|
|
|
|
|
shortDescription: 'Crop video to remove unwanted areas',
|
|
|
|
|
keywords: ['video', 'crop', 'trim', 'edit', 'resize'],
|
|
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
|
|
|
|
name: 'video.cropVideo.name',
|
|
|
|
|
description: 'video.cropVideo.description',
|
|
|
|
|
shortDescription: 'video.cropVideo.shortDescription'
|
|
|
|
|
}
|
2025-05-25 13:38:43 +02:00
|
|
|
});
|