Files
omni-tools/src/pages/tools/video/trim/meta.ts
Ibrahima G. Coulibaly 21c4f44d4e fix: misc
2025-07-13 11:25:05 +01:00

19 lines
640 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('video', {
name: 'Trim Video',
path: 'trim',
icon: 'material-symbols:content-cut',
description:
'Trim video files by specifying start and end times. Remove unwanted sections from the beginning or end of videos.',
shortDescription: 'Trim video by removing unwanted sections',
keywords: ['video', 'trim', 'cut', 'edit', 'time'],
component: lazy(() => import('./index')),
i18n: {
name: 'video:trim.title',
description: 'video:trim.description',
shortDescription: 'video:trim.shortDescription'
}
});