omni-tools/src/pages/tools/video/change-speed/meta.ts
Ibrahima G. Coulibaly 9593ee516b fix: misc
2025-05-23 20:18:04 +01:00

13 lines
464 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('video', {
name: 'Change speed',
path: 'change-speed',
icon: 'material-symbols-light:speed-outline',
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'],
component: lazy(() => import('./index'))
});