You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This command will move all files with .mp4 .MP4 .mov .MOV from Downloads to the Videos directory, check the Downloads directory again and do task one more time until there is no files that match patterns in Downloads, then FileManager will be waiting for 60 seconds and check Downloads again.
3
+
A simple way to automate working with datasets. You can set a time delay for automatic execution of your command.
7
4
8
5
if you don’t want the command works in a cycle, just don't use "-r" argument. And it will be executed for one time.
9
6
10
7
11
8
## Available commands
12
9
-**move** - move files from source directory to target directory
13
10
-**slice** - slice video files to images from the source directory to the target directory. Also, you can set flag "--remove" or "-rm" for deleting a source video file after slicing
11
+
14
12
-**delete** - delete files that match patterns from source directory
15
13
-**dedup** - find duplicates in source directory that matches a pattern. An image means a duplicate if it's hash has lower
16
14
Hamming distance with comparing image hash than threshold value. The threshold value setups in percentage and must be in range [0, 100]. Pay attention to core_size parameter: the lower value makes details at photo less important, and the higher value makes details mach important while comparing information at images. It’s implemented only dHash comparing method for now.
17
15
-**clean-annotations** - find annotation files in directory that doesn't have corresponding files
16
+
-**convert-annotations** - converts annotations from source format to destination format
17
+
18
+
#### to see command syntax and arguments use:
19
+
python data_forge.py <command> -h
20
+
18
21
## How to use:
19
22
clone git repository:
20
23
@@ -36,11 +39,11 @@ read the --help command for learn more about available commands and arguments:
36
39
37
40
for check available commands
38
41
39
-
python fileManager.py --help
42
+
python data_forge.py --help
40
43
41
44
for check the command usage and available arguments
42
45
43
-
python fileManager.py {command} --help
46
+
python data_forge.py {command} --help
44
47
45
48
46
49
## What else?
@@ -51,5 +54,5 @@ For more comfortable using FileManager with multiple tasks you can create an .sh
0 commit comments