From 39beaab851ffb93d3fabebe9867c11ea96d74a4e Mon Sep 17 00:00:00 2001 From: tmpz23 <28760271+tmpz23@users.noreply.github.com> Date: Tue, 11 Apr 2023 11:07:54 +0200 Subject: [PATCH] Basic readme redaction. --- mottool/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 mottool/README.md diff --git a/mottool/README.md b/mottool/README.md new file mode 100644 index 0000000..40a1648 --- /dev/null +++ b/mottool/README.md @@ -0,0 +1,13 @@ +# mottool.py +Python3 script for unpack/pack MOT file format. Currently under development. Unit tests are not implemented yet. MIT License. + +## User manual +Unpack **source_mot.bin** in the default new folder _source_mot_. +If optional_dest_folder is specified we unpack in _optional_dest_folder_. Not fully implemented yet. +``` +mottool.py --unpack source_mot.bin optional_dest_folder +``` +Pack **source_folder** in the default new file _source_folder.bin_. If optional_dest_file.bin is specified we pack in _optional_dest_file.bin_. Not implemented yet. +``` +mottool.py --pack source_folder optional_dest_file.bin +```