mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-18 11:04:03 +01:00
28 lines
576 B
TypeScript
28 lines
576 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('audio', {
|
|
path: 'extract-audio',
|
|
icon: 'mdi:music-note',
|
|
|
|
keywords: [
|
|
'extract',
|
|
'audio',
|
|
'video',
|
|
'mp3',
|
|
'aac',
|
|
'wav',
|
|
'audio extraction',
|
|
'media',
|
|
'convert'
|
|
],
|
|
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'audio:extractAudio.title',
|
|
description: 'audio:extractAudio.description',
|
|
shortDescription: 'audio:extractAudio.shortDescription',
|
|
userTypes: ['generalUsers', 'developers']
|
|
}
|
|
});
|