Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type driver_t = private {
id : int;
kind : driver_kind_t;
short_name : string;
name : string;
comment : string;
priority : int;
preferred_byte_format : byte_format_t;
options : string list;
}
val get_default_driver : unit -> driver_t
val drivers : driver_t list
val open_live :
?bits:int ->
?rate:int ->
?channels:int ->
?channels_matrix:string ->
?byte_format:byte_format_t ->
?options:(string * string) list ->
?driver:driver_t ->
unit ->
t
val open_file :
?bits:int ->
?rate:int ->
?channels:int ->
?channels_matrix:string ->
?byte_format:byte_format_t ->
?options:(string * string) list ->
?driver:driver_t ->
?overwrite:bool ->
string ->
t
val find_driver : string -> driver_t
val play : t -> string -> unit
val close : t -> unit
val driver_kind : driver_t -> driver_kind_t
val driver_name : driver_t -> string
val driver_short_name : driver_t -> string
val driver_comment : driver_t -> string
val driver_author : driver_t -> string
val driver_priority : driver_t -> int
val driver_preferred_byte_format : driver_t -> byte_format_t
val driver_options : driver_t -> string list