package llama

  1. Overview
  2. Docs
Language for Live Audio Module Arrangement

Install

Dune Dependency

Authors

Maintainers

Sources

0.0.1_rust-deps-vendored.tar.gz
sha256=2fb4da5b4478409118b6267f26c0c7f64f10c85d02cbb73c8ead648fc430e860
sha512=ab238268cf22fbb62d5955f849b1837bbee4a12470dde29feb0bf5237023daf01ce6d52dfad30e871948bde13b18808376d254dee90bfeeb82a8c2619d459a8f

doc/src/llama.io/llama_io.ml.html

Source file llama_io.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
open! Llama

module Wav = struct
  type t = { path : string }

  let of_file_at_path path = { path }

  let read_wav_file_mono_exn { path } =
    Llama_low_level.Wav.read_wav_file_mono_exn path

  let sample_player_mono t =
    let data = read_wav_file_mono_exn t in
    Dsl.sample_player_mono data
end
OCaml

Innovation. Community. Security.