Added user type filters and applied them to all tools

This commit is contained in:
AshAnand34
2025-07-12 11:02:15 -07:00
parent 18ba3f70d8
commit 4a7e6299d9
76 changed files with 296 additions and 158 deletions

View File

@@ -2,12 +2,26 @@ import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('video', {
name: 'Change speed',
name: 'Change video speed',
path: 'change-speed',
icon: 'material-symbols-light:speed-outline',
icon: 'material-symbols:speed',
description:
'This online utility lets you change the speed of a video. You can speed it up or slow it down.',
shortDescription: 'Quickly change video speed',
keywords: ['change', 'speed'],
'Change the playback speed of video files. Speed up or slow down videos while maintaining audio pitch.',
shortDescription:
'Change the speed of video files (MP4, MOV, AVI) with audio control.',
keywords: [
'speed',
'video',
'tempo',
'pitch',
'mp4',
'mov',
'avi',
'video editing',
'playback'
],
longDescription:
'This tool allows you to change the playback speed of video files. You can speed up or slow down videos while maintaining the original audio pitch, or with pitch correction. Supports various video formats including MP4, MOV, and AVI. Perfect for creating time-lapse videos, slow-motion effects, or adjusting video speed for different purposes.',
userTypes: ['General Users', 'Students', 'Developers'],
component: lazy(() => import('./index'))
});