From aba82ce96f8d4b5517554dbc2258887cd417ed02 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Mon, 13 Feb 2023 00:09:56 -0500 Subject: [PATCH] Add README.md --- README.md | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9d75f3e --- /dev/null +++ b/README.md @@ -0,0 +1,43 @@ +# retrotool [![Build Status]][actions] + +[Build Status]: https://github.com/encounter/retrotool/actions/workflows/build.yml/badge.svg +[actions]: https://github.com/encounter/retrotool/actions + +> **Warning** +> Under active development, not guaranteed to be useful or even function. + +Tools for working with Retro game formats. Currently only supports *Metroid Prime Remastered*. + +## Commands + +### pak extract + +Extracts files from a given `.pak`. + +```shell +$ retrotool pak extract [in_pak] [out_dir] +``` + +### pak package + +Re-packages a `.pak`, given an extracted directory. + +```shell +$ retrotool pak package [in_dir] [out_pak] +``` + +### fmv0 extract + +Extracts the contained video from a given `FMV0` file. + +```shell +$ retrotool fmv0 extract [in_fmv0] [out_mp4] +``` + +### fmv0 replace + +Replaces the video within the given `FMV0` file. + +```shell +$ retrotool fmv0 replace [inout_fmv0] [in_mp4] +```