mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
19 lines
640 B
TypeScript
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'
|
|
}
|
|
});
|