3 asScore{|duration=1.0, timeOffset=0.0, protoEvent|
5 ^ScoreStreamPlayer.new.makeScore(this.asStream, duration, protoEvent, timeOffset);
13 render { arg path, maxTime=60, sampleRate = 44100,
14 headerFormat = "AIFF", sampleFormat = "int16", options, inputFilePath, action;
16 var file, oscFilePath, score;
17 oscFilePath = "temp_oscscore" ++ UniqueID.next;
18 score = this.asScore(maxTime);
20 oscFilePath, path, inputFilePath, sampleRate, headerFormat, sampleFormat,
21 options, "; rm" + oscFilePath, action: action;
30 score = Pseq([this]).asScore.score;
31 ^score.copyRange(1, score.size - 2);