feat: compress video

This commit is contained in:
Ibrahima G. Coulibaly
2025-03-30 17:18:06 +00:00
parent ab56a370f5
commit 8b4384b499
4 changed files with 266 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('video', {
name: 'Compress Video',
path: 'compress',
icon: 'mdi:video-box',
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'))
});