linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / DiskIn.schelp
blobebe62d507eb624c7eb6856fcdabf8a8961604af1
1 class:: DiskIn
2 summary:: Stream in audio from a file.
3 related:: Classes/PlayBuf, Classes/DiskOut
4 categories::  UGens>InOut, UGens>Buffer
6 Description::
8 Continously play a longer soundfile from disk. This requires a buffer to
9 be preloaded with one buffer size of sound.
12 classmethods::
13 private:: categories
15 method::ar
17 argument::numChannels
18 Number of channels. This must match the number of channels in the buffer.
20 argument::bufnum
21 Buffer number
22 Note:: The Buffer's numFrames must be a power of two and is recommended to be at least 65536 -- preferably 131072 or 262144. Smaller buffer sizes mean more frequent disk access, which can cause glitches. ::
24 argument:: loop
25 If set to 1, the soundfile will loop.
27 discussion::
28 This UGen will set the link::Classes/Done##'done' flag:: when finished playing.
30 instancemethods::
31 private:: init
33 Examples::
35 code::
36 s.boot; // start the server
39 SynthDef("help-Diskin", { arg bufnum = 0;
40         Out.ar(0, DiskIn.ar(1, bufnum));
41 }).send(s)
45 subsection:: OSC Messaging Style
46 code::
47 // allocate a disk i/o buffer
48 s.sendMsg("/b_alloc", 0, 65536, 1);
50 // open an input file for this buffer, leave it open
51 s.sendMsg("/b_read", 0, Help.dir +/+ "sounds/a11wlk01-44_1.aiff", 0, 65536, 0, 1);
53 // create a diskin node
54 s.sendMsg("/s_new", "help-Diskin", x = s.nextNodeID, 1, 1);
56 s.sendMsg("/b_close", 0); // close the file (very important!)
59 // again
60 // don't need to reallocate and Synth is still reading
61 s.sendMsg("/b_read", 0, Help.dir +/+ "sounds/a11wlk01-44_1.aiff", 0, 0, 0, 1);
63 s.sendMsg("/n_free", x); // stop reading
65 s.sendMsg("/b_close", 0); // close the file.
67 s.sendMsg("/b_free", 0); // frees the buffer
70 subsection:: Using Buffer (Object Style)
71 code::
72 b = Buffer.cueSoundFile(s, Help.dir +/+ "sounds/a11wlk01-44_1.aiff", 0, 1);
74 x = { DiskIn.ar(1, b.bufnum) }.play;
76 b.close;
78 // again
79 // note the like named instance method, but different arguments
80 b.cueSoundFile(Help.dir +/+ "sounds/a11wlk01-44_1.aiff", 0);
82 x.free; b.close; b.free;
86 // loop it (for better looping use PlayBuf!)
88 p = Help.dir +/+ "sounds/a11wlk01-44_1.aiff";
89 a = SoundFile.new;
90 a.openRead(p);
91 d = a.numFrames/s.sampleRate; // get the duration
92 a.close; // don't forget
93 b = Buffer.cueSoundFile(s, p, 0, 1);
94 f = { DiskIn.ar(1, b.bufnum) };
95 x = f.play;
96 r = Routine({
97         loop({ d.wait; x.free; x = f.play; b.close( b.cueSoundFileMsg(p, 0)) });
98 }).play; )
99 r.stop; x.free; b.close; b.free; // you need to do all these to properly cleanup
103 // cue and play right away
105 SynthDef("help-Diskin", { arg bufnum = 0;
106         Out.ar(0, DiskIn.ar(1, bufnum));
107 }).send(s);
110 x = Synth.basicNew("help-Diskin");
111 m = { arg buf; x.addToHeadMsg(nil, [\bufnum,buf.bufnum])};
113 b = Buffer.cueSoundFile(s,Help.dir +/+ "sounds/a11wlk01-44_1.aiff",0,1, completionMessage: m);