Skip to content
This repository has been archived by the owner on Oct 19, 2023. It is now read-only.

Latest commit

 

History

History
32 lines (20 loc) · 472 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 472 Bytes

ADX2WAV

An adx2wav c-extension for Python based on adx2wavmod3 found on hcs64.com/vgm_ripping.

Installation

PIP

pip install adx2wav

Manual

python setup.py install

Example

from adx2wav import adx2wav

with open("test.adx" , "rb") as f:
    data = f.read()

wav = adx2wav(data)

with open("test.wav", "wb") as f:
    f.write(wav)