HPS Decode
A Rust library for parsing and decoding Super Smash Bros. Melee music files.
Quick Start
Decoding a stereo .hps file into audio and listening to it with
rodio:
Install dependencies:
In your main.rs:
use Hps;
use ;
use Error;
Documentation
Check out docs.rs for more details about the library.
Benchmarking
This library can be benchmarked using criterion by running cargo bench. Reports with the results will be generated at target/criterion/report/index.html
.HPS File Layout
For general purpose, language agnostic information about the .hps file format,
see here.