mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-18 21:49:31 +02:00
21 lines
674 B
TypeScript
21 lines
674 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('video', {
|
|
name: 'Compress Video',
|
|
path: 'compress',
|
|
icon: 'icon-park-outline:compression',
|
|
description:
|
|
'Compress videos by scaling them to different resolutions like 240p, 480p, 720p, etc. This tool helps reduce file size while maintaining acceptable quality. Supports common video formats like MP4, WebM, and OGG.',
|
|
shortDescription: 'Compress videos by scaling to different resolutions',
|
|
keywords: [
|
|
'compress',
|
|
'video',
|
|
'resize',
|
|
'scale',
|
|
'resolution',
|
|
'reduce size'
|
|
],
|
|
component: lazy(() => import('./index'))
|
|
});
|