Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/myst6re/qt-lzs
Simple command-line tool to compress/decompress LZS files
https://github.com/myst6re/qt-lzs
cli ff7 ff8 final-fantasy-vii final-fantasy-viii lzs lzss squaresoft
Last synced: 6 days ago
JSON representation
Simple command-line tool to compress/decompress LZS files
- Host: GitHub
- URL: https://github.com/myst6re/qt-lzs
- Owner: myst6re
- License: gpl-3.0
- Created: 2014-06-28T23:35:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-03-23T22:55:25.000Z (almost 4 years ago)
- Last Synced: 2024-04-22T05:24:15.481Z (8 months ago)
- Topics: cli, ff7, ff8, final-fantasy-vii, final-fantasy-viii, lzs, lzss, squaresoft
- Language: C++
- Homepage:
- Size: 29.3 KB
- Stars: 11
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
qt-lzs
======Simple command-line tool to compress/decompress LZS files (mainly used in Final Fantasy VII and VIII).
Usage
-----lzs [-d] [-h] [-q] [-p offset] [-s size] [files...] [output directory]
unlzs [-h] [-q] [-p offset] [-s size] [files...] [output directory]
Options
-d --decompress --uncompress
Decompress.
-h --help
Show this help and quit.
-p --offset
Start offset (=position) in the source file.
--no-header
The input file starts directly with compressed data.
--no-header-test
Do not test the header integrity.
-q --quiet
Suppress all outputs
-s --size
Read at most size bytes (excluding lzs header) from the source file.Compilation
-----------qt-lzs is a Qt project, use these commands to build it:
qmake
makeTo compile the unlzs executable, run:
qmake "CONFIG+=configUNLZS"
make