This file is indexed.

/usr/share/doc/chuck/examples/special/readme-LiSa2.ck is in chuck 1.2.0.8.dfsg-1.4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
//-----------------------------------------------------------------------------
// name: readme-LiSa2.ck
// desc: Live sampling utilities for ChucK
//
// author: Dan Trueman, 2007
//
// LiSa allows for multiple voice playback from a live-sampled buffer. Useful
// for granular sampling (a la [munger~] from PeRColate) and looping (a la 
// LoopLoop, Jamman, Echoplex, etc....). The methods are overloaded, taking
// a "voice" number as a first arg. if no voice number is specified, LiSa
// assumes 0=>voice.
//
// Below is a simple example to show how to crossfade two voices. See also the 
// LiSa-munger examples for other approaches.
// 
// Below the example find a (lengthy) command summary.
//-----------------------------------------------------------------------------

// signal chain; record a sine wave, play it back
SinOsc s => Envelope e => LiSa loopme => dac;
s => dac; // direct monitor
440. => s.freq;
0.2 => s.gain;

// alloc memory
6::second => loopme.duration;

// play s for a bit
500::ms => now;

// sweep the freq for fun
Envelope pitchmod => blackhole;
pitchmod.duration( 2000::ms );
pitchmod.value( s.freq() );
pitchmod.target( 880. );

// set times for recording fade in/out and sample loop length
100::ms => dur recfadetime;
1000::ms => dur mylooplen;
e.duration( recfadetime );

// start recording input; record 1 seconds worth
loopme.record( 1 );
// can also do without the Envelope and use loopme.recramp( dur ) to set a recording ramp
e.keyOn(); 

now + (mylooplen - recfadetime) => time later;
while( now < later )
{
    pitchmod.value() => s.freq;
    10::ms => now;
}
e.keyOff();
recfadetime => now;
loopme.record( 0 );

// disconnect input and hangout a bit
s =< dac;
1000::ms => now;

// now, manipulate the sample
// get a voicenumber; note that this voice won't actually be reserved until you play it
loopme.getVoice() => int voice1;

// we'll play voice 1 forward, and then crossfade it with voice 2 backwards
loopme.play( voice1, 1 );
(mylooplen - recfadetime) => now;

// just as voice 1 is going to fade, bring in voice 2
loopme.getVoice() => int voice2;
loopme.rate( voice2, -1. );
loopme.playPos( voice2, mylooplen ); 
loopme.play( voice2, 1 );

// wait until voice 1 had finished fading, then turn off
recfadetime => now;
loopme.play( voice1, 0 );

// wait for voice 2 to finish
1000::ms => now;

//-----------------------------------------------------------------------------

//LiSa Command Summary:
//
//  mylisa.duration(dur); required -- sets max length of buffer
//  mylisa.record(1/0); turn on/off recording into buffer
//  mylisa.getVoice() => voice (int); returns first free voice number
//  mylisa.maxVoices(int); sets maximum # of allowable voices
//  mylisa.play(voice, 1/0); turn on/off play for particular voice
//  mylisa.rampUp(voice, dur); turn on play for voice with ramp
//  mylisa.rampDown(voice, dur); ramp down voice and then turn off play
//  mylisa.rate(voice, float); sets play rate for "voice"
//  mylisa.playPos(voice, dur); sets playback position for "voice" within buffer
//  mylisa.playPos(voice); returns playback position for "voice"
//  mylisa.recordPos(dur); sets record position
//  mylisa.recordPos(); gets record position
//  mylisa.recRamp(dur); sets ramping for the edges of the record buffer
//  mylisa.loopStart(dur, voice); sets loopstart point for "voice"
//  mylisa.loopStart(voice); get loopstart
//  mylisa.loopEnd(voice, dur); sets loopend point for "voice"
//  mylisa.loopEnd(voice); gets loopend
//  mylisa.loop(voice, 1/0); turn on/off looping for "voice"
//  mylisa.loop(voice); get looping state
//  mylisa.bi(voice, 1/0); turn on/off bidirectional looping for "voice"
//  mylisa.bi(voice); get bi state
//  mylisa.loopEndRec(dur); set looping end point for recording
//  mylisa.loopEndRec(); get ...
//  mylisa.feedback(float); set feedback amount [0,1] for recording
//  mylisa.feedback(); get...
//  mylisa.clear(); clear recording buffer
//
// All of these commands should work without the "voice" arg; 0=>voice will be assumed
//-----------------------------------------------------------------------------