From 8d2e0ab8fd96fc19e7cb02dd5ae3615aeb99aeee Mon Sep 17 00:00:00 2001 From: nevolodia Date: Sun, 25 May 2025 13:38:43 +0200 Subject: [PATCH] Crop video meta added. --- src/pages/tools/video/crop-video/meta.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/pages/tools/video/crop-video/meta.ts diff --git a/src/pages/tools/video/crop-video/meta.ts b/src/pages/tools/video/crop-video/meta.ts new file mode 100644 index 0000000..184c809 --- /dev/null +++ b/src/pages/tools/video/crop-video/meta.ts @@ -0,0 +1,14 @@ +import { defineTool } from '@tools/defineTool'; +import { lazy } from 'react'; + +export const tool = defineTool('video', { + name: 'Crop video', + path: 'crop-video', + icon: 'mdi:crop', + description: 'Crop a video by specifying coordinates and dimensions', + shortDescription: 'Crop video to specific area', + keywords: ['crop', 'video', 'trim', 'cut', 'resize'], + longDescription: + 'Remove unwanted parts from the edges of your video by cropping it to a specific rectangular area. Define the starting coordinates (X, Y) and the width and height of the area you want to keep.', + component: lazy(() => import('./index')) +});