Merge branch 'main' into tools-filtering

This commit is contained in:
AshAnand34
2025-07-18 14:45:15 -07:00
336 changed files with 21767 additions and 2122 deletions

View File

@@ -2,13 +2,8 @@ import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('video', {
name: 'Crop video',
path: 'crop-video',
icon: 'material-symbols:crop',
description:
'Crop video files to remove unwanted areas or focus on specific parts. Adjust aspect ratios and remove black bars.',
shortDescription:
'Crop video files to remove unwanted areas (MP4, MOV, AVI).',
keywords: [
'crop',
'video',
@@ -20,8 +15,11 @@ export const tool = defineTool('video', {
'video editing',
'resize'
],
longDescription:
'This tool allows you to crop video files to remove unwanted areas or focus on specific parts of the video. Useful for removing black bars, adjusting aspect ratios, or focusing on important content. Supports various video formats including MP4, MOV, and AVI.',
userTypes: ['General Users', 'Students', 'Developers'],
i18n: {
name: 'video:cropVideo.title',
description: 'video:cropVideo.description',
shortDescription: 'video:cropVideo.shortDescription',
userTypes: ['General Users', 'Students', 'Developers']
},
component: lazy(() => import('./index'))
});