Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for HUS and VIP conversion from PES #165

Open
ali-sajjad-rizavi opened this issue Oct 17, 2023 · 1 comment
Open

Add support for HUS and VIP conversion from PES #165

ali-sajjad-rizavi opened this issue Oct 17, 2023 · 1 comment

Comments

@ali-sajjad-rizavi
Copy link
Contributor

No description provided.

@tatarize
Copy link
Contributor

I believe I currently read HUS files, and while I did build a method of supporting ArchiveLib Level 4 compression via GreenLeaf Technologies as a written format, I don't think I fully finished the work on it outputting HUS.

def compress(data):
    size = len(data)
    return (
        bytearray([(size >> 0) & 0xFF, (size >> 8) & 0xFF, 0x02, 0xA0, 0x01, 0xFE])
        + data
    )

Is my compression routine, the result of about a year of work on and off. As for VIP format, I don't think I even parse it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants