rodio-xm

Crates.iorodio-xm
lib.rsrodio-xm
version0.1.1
sourcesrc
created_at2021-11-27 11:52:12.826526
updated_at2021-11-27 11:53:29.608134
descriptionprovides a source for playback of fasttracker 2 extended modules in rodio
homepage
repositoryhttps://tinybird.dev/max/rodio-xm
max_upload_size
id488376
size94,329
Max (synth-ruiner)

documentation

README

rodio-xm

provides a Source for playback of FastTracker 2 extended modules in rodio

examples

use std::path::PathBuf;

use rodio::{OutputStream, Sink};
use rodio_xm::XMSource;

fn main() {
    let source = XMSource::from_file(
        PathBuf::from("path/to/file.xm"),
        44100
    );

    let (_stream, stream_handle) = OutputStream::try_default().unwrap();
    let sink = Sink::try_new(&stream_handle).unwrap();

    sink.append(source);
    sink.play();

    loop {}
}

see more in the examples directory.

license

released under the MIT license.

example track "Chica-pop!" is in the public domain.

Commit count: 0

cargo fmt