mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
15 lines
698 B
TypeScript
15 lines
698 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('gif', {
|
|
name: 'Change speed',
|
|
path: 'change-speed',
|
|
icon: 'material-symbols-light:speed-outline',
|
|
description:
|
|
'This online utility lets you change the speed of a GIF animation. You can speed it up or slow it down. You can set the same constant delay between all frames or change the delays of individual frames. You can also play both the input and output GIFs at the same time and compare their speeds',
|
|
shortDescription: 'Quickly change GIF speed',
|
|
keywords: ['change', 'speed'],
|
|
component: lazy(() => import('./index'))
|
|
});
|