mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-16 04:48:32 +05:30
Added user type filters and applied them to all tools
This commit is contained in:
parent
18ba3f70d8
commit
4a7e6299d9
76 changed files with 296 additions and 158 deletions
|
|
@ -2,12 +2,26 @@ import { defineTool } from '@tools/defineTool';
|
|||
import { lazy } from 'react';
|
||||
|
||||
export const tool = defineTool('video', {
|
||||
name: 'Loop Video',
|
||||
name: 'Loop video',
|
||||
path: 'loop',
|
||||
icon: 'ic:baseline-loop',
|
||||
icon: 'material-symbols:loop',
|
||||
description:
|
||||
'This online utility lets you loop videos by specifying the number of repetitions. You can preview the looped video before processing. Supports common video formats like MP4, WebM, and OGG.',
|
||||
shortDescription: 'Loop videos multiple times',
|
||||
keywords: ['loop', 'video', 'repeat', 'duplicate', 'sequence', 'playback'],
|
||||
'Create looping videos by repeating the video content. Set the number of loops or create infinite loops.',
|
||||
shortDescription:
|
||||
'Create looping videos by repeating content (MP4, MOV, AVI).',
|
||||
keywords: [
|
||||
'loop',
|
||||
'video',
|
||||
'repeat',
|
||||
'cycle',
|
||||
'mp4',
|
||||
'mov',
|
||||
'avi',
|
||||
'video editing',
|
||||
'playback'
|
||||
],
|
||||
longDescription:
|
||||
'This tool allows you to create looping videos by repeating the video content multiple times. You can set the number of loops or create infinite loops. Useful for creating background videos, animated content, or repeating sequences. Supports various video formats including MP4, MOV, and AVI.',
|
||||
userTypes: ['General Users', 'Students', 'Developers'],
|
||||
component: lazy(() => import('./index'))
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue