2025-03-10 04:13:10 +00:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('video', {
|
|
|
|
|
name: 'Trim Video',
|
|
|
|
|
path: 'trim',
|
2025-07-12 23:02:35 -07:00
|
|
|
icon: 'material-symbols:content-cut',
|
2025-03-10 04:13:10 +00:00
|
|
|
description:
|
2025-07-12 23:02:35 -07:00
|
|
|
'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: {
|
2025-07-13 11:25:05 +01:00
|
|
|
name: 'video:trim.title',
|
|
|
|
|
description: 'video:trim.description',
|
|
|
|
|
shortDescription: 'video:trim.shortDescription'
|
2025-07-12 23:02:35 -07:00
|
|
|
}
|
2025-03-10 04:13:10 +00:00
|
|
|
});
|