home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 5.7 KB | 152 lines | [TEXT/ScoM] |
- >Controllers are essential for simulating arco movements,
- >expresive vibrato, dynamics... As I have found the only way to use them
- >for expressive purposes is defining other instrument.. Is there any other
- >way?
-
- One way I have used much is to define two elements for each instrument,
- the one that plays notes and the other that plays controllers. For example
- in the following you'll not many instruments contain mel and cnt parts.
-
- (def-orchestra 'orchestra
- all-instruments (drums theme bass seq chords strings)
- drums (hihat1 hihat2 kicks snare fill crash)
- hihat2 (hihat2mel hihat2cnt)
- kicks (rapidkic1 rapidkic2 kick)
- theme (pianoth stringth)
- pianoth (pianothmel pianothcnt)
- bass (bass1 bass2)
- seq (seq1 seq2)
- seq1 (seq1mel seq1cnt)
- seq2 (seq2mel seq2cnt)
- chords (chords1 chords2 chords3)
- )
-
- When you define the zone for, lets say pianoth, this zone value becomes
- the value of both pianotmel and pianocnt. Also the channel becomes the
- same for each of these sub instruments. Now you can define separately
- the symbol for pianomel and then the controller for pianocnt. Here the
- pianothmel plays in 1/32 rate and the controller sends in 1/16 rate.
-
- (def-section sect-a
- pianoth
- zone '(1/1 1/1 1/1 1/1)
- tonality (activate-tonality (major c 4))
- channel 2
- pianothmel
- length '(1/32)
- symbol '(a b c)
-
- ; controllers
-
- pianothcnt
- symbol '(=)
- velocity '(0)
- length '(1/16)
- controller (mu80-controllers
- filter (vector-round (center -10) (center 10) (gen-sin 1 1 96))
- volume (vector-round (center -10) (center 10) (gen-sin 1 1 96)))
- )
-
- Why to use instrument and controller separately? If you want to control
- filter and volume regularly with sine wave then this method allows
- to send the controller events at rate determined by pianothcnt length.
- The controller goes to the same channel as the notes and thus enhances
- how the notes are played.
-
- Another way to use controllers is to have a single instrument and then
- just include the controller slot.
-
- (def-section sect-a
- pianoth
- channel 2
- zone '(1/1 1/1 1/1 1/1)
- tonality (activate-tonality (major c 4))
- symbol '(a b c)
- velocity '(0)
- length '(1/16)
- controller (mu80-controllers
- filter (vector-round (center -10) (center 10) (gen-sin 1 1 96))
- volume (vector-round (center -10) (center 10) (gen-sin 1 1 96)))
- )
-
- This case controllers are generated each time a note is generated. In the
- above example this happens in 1/16. Check out in the tools/extensions/
- gm setup menu and define similarly your synth. Then store this file in
- the SCOM 4.0/environment/extensions folder and it will be loaded when
- you boot SCOM. Then you will have a controller setup that has all the
- controllers your synth recognizes (like the mu80-controller here).
-
- >How to compose a BACH-Kind Fugue plenty of imitations and counterpoint
- >procedures inside a Vertical Harmonic Structure? How to correct the
- >results of a motive transformation in order to fit into a Harmonic Scheme?
- >Is there any Late-Baroque or Classical multipart Counterpoint Piece
- >Written with SCOM ?
-
- Check these examples
-
- tools/examples/demos/endless
- tools/examples/demos/prelude
-
- Prelude shows example how to apply the harmonizer to get rid of
- intervals that do not belong in harmonic music. Endless shows the
- mechanism how to generate minimum energy chord progressions resembling
- those used in harmonic styles. You'll notice that chord progression
- based tonalities may need transpose symbols, or the tonalities
- have to be distorted or enriched with the tonality processors found
- from the Macro Menus. Usually you'll end up using a main progression
- and then several distortions based on it, or even a scale that suits
- in the chord progressions.
-
- Also related is the
-
- tools/examples/demos/fade in/out
-
- Compile the files. Try to modify them to your needs.
-
- >I am interested not only in a Harmony Vertical Scheme, but Rythm Scheme,
- >progressive accentuation inside a rythm, ponderation inside it and all
- >kind of vertical conditioners.
-
- The easiest way to make rhythms is to use def-instrument-timesheet.
- This enables to define both when each instruments are playing and
- also their rhythms, melodies and velocities. To build more advanced
- rhythms use the functions in the PowerPack plug-in, or try to write
- your own in Lisp.
-
- >3. SCOM and OMS
- >I usually use Cubase Audio with OMS 2.2 as my basic system. I can not use
- >it with SCOM. For this moment I forget Midishare and compile a midi file
- >into disk. Then I run SoundApp to quickly listen to it.
-
- Put the following plug-in into the SCOM Environment/Extensions folder.
- Here are instructions.
-
- Installing Midi Launcher
-
- To install the Midi Launcher follow these instructions.
-
- 1. Put Midi Launcher into the Environment/Extensions folder
-
- 2. Restart SCOM and perform reindex hyperhelp from the menu.
-
- 3. To launch a sequencer, scorewrite or other application that accepts
- MIDI files compile the file with play-file, compile-song or compile-instrument,
- and then use the launch-midi command. Supply it the four letter creator
- code of the application you want to launch, and the filename. This filename
- must be located in ccl;output folder.
-
- The four letter here "SCPL" means the creator code of SoundApp. It could be
- any other sequencer that acceps apple events. However, notice that not all
- MIDI software accept apple events.
-
- (play-file "Endless midi"
- all-instr '(sect-a sect-b)
- )
-
- (launch-midi "SCPL" "Endless midi")
-
- I'm using both Midishare and OMS. The MAC OS system extension do not
- interfere in any ways. It is convenient to be able to test the Symbolic
- Composer results immediately. You can try if you can get throw the MIDI
- files directly to the sequencer in the method described above.
-