Csound class abstract

Implementers

Constructors

Csound({Function? onReady, Function? onStop})
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

compileCsd(String csdPath) Future<int>
compileCsdSync(String csdPath) int
compileCsdText(String text) Future<int>
compileCsdTextSync(String text) int
compileOrc(String orc) Future<int>
compileOrcSync(String orc) int
destroy({Function? onDestroyed}) → void
evalCode(String code) Future<double>
evalCodeSync(String code) double
get0dbfs() Future<double>
get0dbfsSync() double
getControlChannel(String channelName) Future<double>
getControlChannelSync(String channelName) double
getKsmps() Future<int>
getKsmpsSync() int
getNchnls() Future<int>
getNchnlsSync() int
getSr() Future<double>
getSrSync() double
getStringChannel(String channelName) Future<String>
getStringChannelSync(String channelName) String
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
pause(bool b) → void
perform() int
readScore(String text) Future<int>
readScoreSync(String text) int
reset() → void
resetSync() → void
setAudioChannelCallback(String name, Function callback) → void
setControlChannel(String channelName, double value) → void
setControlChannelCallback(String channelName, dynamic callback(double)) → void
setOption(String opt) Future<int>
setOptionSync(String opt) int
setStringChannel(String channelName, String value) → void
setStringChannelCallback(String channelName, Function callback) → void
setTable(int table, List<double> values) → void
setTableCallback(int table, Function callback) → void
stop() → void
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

platformVersion Future<String>
no setter

Static Methods

EvalCode(String code) double