Files
omni-tools/src/pages/tools/video/crop-video/meta.ts

26 lines
554 B
TypeScript
Raw Normal View History

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',
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',
shortDescription: 'video:cropVideo.shortDescription',
2025-07-22 19:47:09 +01:00
userTypes: ['generalUsers']
},
2025-05-25 13:38:43 +02:00
component: lazy(() => import('./index'))
});