mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
14 lines
557 B
TypeScript
14 lines
557 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
|
||
|
|
export const tool = defineTool('video', {
|
||
|
|
name: 'Trim Video',
|
||
|
|
path: 'trim',
|
||
|
|
icon: 'mdi:scissors',
|
||
|
|
description:
|
||
|
|
'This online utility lets you trim videos by setting start and end points. You can preview the trimmed section before processing. Supports common video formats like MP4, WebM, and OGG.',
|
||
|
|
shortDescription: 'Trim videos by setting start and end points',
|
||
|
|
keywords: ['trim', 'cut', 'video', 'clip', 'edit'],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|