2025-07-07 15:50:06 -07:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('audio', {
|
2025-07-14 13:55:01 +01:00
|
|
|
i18n: {
|
|
|
|
|
name: 'audio:trim.title',
|
|
|
|
|
description: 'audio:trim.description',
|
|
|
|
|
shortDescription: 'audio:trim.shortDescription',
|
2025-07-18 14:45:15 -07:00
|
|
|
longDescription: 'audio:trim.longDescription',
|
|
|
|
|
userTypes: ['General Users', 'Students', 'Developers']
|
2025-07-14 13:55:01 +01:00
|
|
|
},
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-07-07 15:50:06 -07:00
|
|
|
path: 'trim',
|
|
|
|
|
icon: 'mdi:scissors-cutting',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-07-07 15:50:06 -07:00
|
|
|
keywords: [
|
|
|
|
|
'trim',
|
|
|
|
|
'audio',
|
|
|
|
|
'cut',
|
|
|
|
|
'segment',
|
|
|
|
|
'extract',
|
|
|
|
|
'mp3',
|
|
|
|
|
'aac',
|
|
|
|
|
'wav',
|
|
|
|
|
'audio editing',
|
|
|
|
|
'time'
|
|
|
|
|
],
|
|
|
|
|
component: lazy(() => import('./index'))
|
|
|
|
|
});
|