mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
14 lines
465 B
TypeScript
14 lines
465 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
|
||
|
|
export const tool = defineTool('audio', {
|
||
|
|
name: 'Change speed',
|
||
|
|
path: 'change-speed',
|
||
|
|
icon: 'material-symbols-light:speed-outline',
|
||
|
|
description:
|
||
|
|
'This online utility lets you change the speed of an audio. You can speed it up or slow it down.',
|
||
|
|
shortDescription: 'Quickly change audio speed',
|
||
|
|
keywords: ['change', 'speed'],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|