2025-07-07 14:49:14 -07:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('audio', {
|
|
|
|
|
path: 'extract-audio',
|
|
|
|
|
icon: 'mdi:music-note',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-07-07 14:49:14 -07:00
|
|
|
keywords: [
|
|
|
|
|
'extract',
|
|
|
|
|
'audio',
|
|
|
|
|
'video',
|
|
|
|
|
'mp3',
|
|
|
|
|
'aac',
|
|
|
|
|
'wav',
|
|
|
|
|
'audio extraction',
|
|
|
|
|
'media',
|
|
|
|
|
'convert'
|
|
|
|
|
],
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2025-07-12 23:02:35 -07:00
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
2025-07-13 11:25:05 +01:00
|
|
|
name: 'audio:extractAudio.title',
|
|
|
|
|
description: 'audio:extractAudio.description',
|
|
|
|
|
shortDescription: 'audio:extractAudio.shortDescription'
|
2025-07-12 23:02:35 -07:00
|
|
|
}
|
2025-07-07 14:49:14 -07:00
|
|
|
});
|