rhythm-open-exchange 0.6.2

A try to create the ffmpeg of vsrg
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Quaver .qua format codec.
//!
//! Quaver files are YAML-based and contain:
//! - Metadata (title, artist, creator, etc.)
//! - Timing points (BPM changes)
//! - Slider velocities (scroll speed changes)
//! - Hit objects (notes and holds)

pub mod decoder;
pub mod encoder;
pub mod parser;
pub mod types;

pub use decoder::QuaDecoder;
pub use encoder::QuaEncoder;