mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-09 17:56:16 +05:30
Crop video meta added.
This commit is contained in:
parent
37c8b30a11
commit
8d2e0ab8fd
1 changed files with 14 additions and 0 deletions
14
src/pages/tools/video/crop-video/meta.ts
Normal file
14
src/pages/tools/video/crop-video/meta.ts
Normal file
|
|
@ -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'))
|
||||||
|
});
|
||||||
Loading…
Add table
Add a link
Reference in a new issue