Files
omni-tools/src/pages/tools/video/gif/change-speed/meta.ts
2025-07-12 23:02:35 -07:00

20 lines
686 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
// import image from '@assets/text.png';
export const tool = defineTool('gif', {
name: 'Change GIF Speed',
path: 'change-speed',
icon: 'material-symbols:speed',
description:
'Change the playback speed of GIF animations. Speed up or slow down GIFs while maintaining smooth animation.',
shortDescription: 'Change GIF animation speed',
keywords: ['gif', 'speed', 'animation', 'fast', 'slow'],
component: lazy(() => import('./index')),
i18n: {
name: 'gif.changeSpeed.name',
description: 'gif.changeSpeed.description',
shortDescription: 'gif.changeSpeed.shortDescription'
}
});