Milky2018/moon_rodio/decoder does not have a README file
pub suberror DecoderError {
InvalidFormat(String)
Unsupported(String)
} derive(Eq, @moonbitlang/core/debug.DebugDebug)impl Show for DecoderErrorpub struct DecodedSamples {
channels : Int
sample_rate : Int
samples : Array[Double]
cursor : @moonbitlang/core/ref.RefRef[Int]
}fn DecodedSamples::new(channels : Int, sample_rate : Int, samples : Array[Double]) -> DecodedSamplespub struct ReadSeekSource {
inner : Bytes
byte_len : Int?
is_seekable : Bool
}fn ReadSeekSource::from_bytes(bytes : Bytes, byte_len? : Int?, is_seekable? : Bool) -> ReadSeekSourceNative-only MoonBit port of Rust rodio with playback pipeline, source effects, and WAV/MP3/FLAC/Vorbis/MP4A decoding.
Dependencies