A Rust library for decoding Super Smash Bros. Melee music files.
Here is a quick example of how to play a stereo .hps
file using rodio 0.17:
```rust use hps_decode::{Hps, PcmIterator}; use rodio::Source; use std::error::Error;
fn main() -> Result<(), Box
// Play the song with the rodio library
let (_stream, stream_handle) = rodio::OutputStream::try_default()?;
let source = MySource(pcm);
stream_handle.play_raw(source.convert_samples())?;
// Rodio plays sound in a separate audio thread,
// so we need to keep the main thread alive while it's playing.
std::thread::sleep(std::time::Duration::from_secs(120));
Ok(())
}
// This wrapper allows us to implement rodio::Source
struct MySource(PcmIterator);
impl Iterator for MySource {
type Item = i16;
fn next(&mut self) -> Option
impl rodio::Source for MySource {
fn currentframelen(&self) -> Option
Check out docs.rs for more details about the library.
For general purpose, language agnostic information about the .hps
file format,
see here.