30 lines
982 B
TypeScript
Raw Normal View History

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('audio', {
2025-07-12 23:02:35 -07:00
name: 'Change audio speed',
path: 'change-speed',
2025-07-12 23:02:35 -07:00
icon: 'material-symbols:speed',
description:
2025-07-12 23:02:35 -07:00
'Change the playback speed of audio files. Speed up or slow down audio while maintaining pitch.',
shortDescription: 'Change the speed of audio files',
keywords: [
'audio',
'speed',
'tempo',
'playback',
'accelerate',
'slow down',
'pitch',
'media'
],
longDescription:
'This tool allows you to change the playback speed of audio files. You can speed up or slow down audio while maintaining the original pitch. Useful for podcasts, music, or any audio content where you want to adjust the playback speed.',
component: lazy(() => import('./index')),
i18n: {
name: 'audio.changeSpeed.name',
description: 'audio.changeSpeed.description',
shortDescription: 'audio.changeSpeed.shortDescription'
}
});