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

K0lb3/adx2wav

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)