mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-07 09:24:55 +05:30
25 lines
523 B
TypeScript
25 lines
523 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('audio', {
|
|
path: 'change-speed',
|
|
icon: 'material-symbols:speed',
|
|
|
|
keywords: [
|
|
'audio',
|
|
'speed',
|
|
'tempo',
|
|
'playback',
|
|
'accelerate',
|
|
'slow down',
|
|
'pitch',
|
|
'media'
|
|
],
|
|
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'audio:changeSpeed.title',
|
|
description: 'audio:changeSpeed.description',
|
|
shortDescription: 'audio:changeSpeed.shortDescription'
|
|
}
|
|
});
|