Skip to content

Commit

Permalink
Created instruments for full sections (#59)
Browse files Browse the repository at this point in the history
* Created instruments for full sections

* Reduced volumes

* Updated README
  • Loading branch information
peastman authored Nov 2, 2024
1 parent ebbc859 commit 2afd094
Show file tree
Hide file tree
Showing 31 changed files with 387 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ SSO includes the following instruments and articulations:
|Solo Viola |Sustain, Marcato, Staccato, Legato, Pizzicato |
|Solo Cello |Sustain, Marcato, Staccato, Legato, Pizzicato |
|Solo Bass |Sustain, Marcato, Staccato, Legato, Pizzicato |
|All Strings |Sustain, Marcato, Staccato, Pizzicato, Col Legno, Tremolo, Harmonics |

**Brass**

Expand All @@ -48,6 +49,7 @@ SSO includes the following instruments and articulations:
|Solo French Horn |Sustain (non-looped, looped, decay), Marcato (non-looped, looped, decay), Staccato, Legato|
|Solo Tenor Trombone|Sustain (non-looped, looped, decay), Marcato (non-looped, looped, decay), Staccato, Legato|
|Solo Bass Trombone |Sustain (non-looped, looped, decay), Marcato (non-looped, looped, decay), Staccato, Legato|
|All Brass |Sustain, Marcato, Staccato |

**Woodwinds**

Expand All @@ -67,6 +69,7 @@ SSO includes the following instruments and articulations:
|Solo Bass Clarinet|Sustain (non-looped, looped, decay), Staccato, Legato |
|Solo Bassoon |Sustain (non-looped, looped, decay), Staccato, Legato |
|Solo Contrabassoon|Sustain (non-looped, looped, decay), Staccato, Legato |
|All Woodwinds |Sustain, Staccato |

**Pitched Percussion**

Expand Down
26 changes: 26 additions & 0 deletions Sonatina Symphonic Orchestra/Brass - Notation/All Brass KS.sfz
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<global>
sw_default=c0
sw_lokey=c0
sw_hikey=e0
sw_last=c0
sw_label=Sustain

#include "All Brass Sustain.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=e0
sw_last=d0
sw_label=Marcato

#include "All Brass Marcato.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=e0
sw_last=e0
sw_label=Staccato

#include "All Brass Staccato.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<master>
master_volume=-5

#include "Trumpets Marcato (looped).sfz"
#include "Horns Marcato.sfz"
#include "Trombones Marcato (looped).sfz"
#include "Bass Trombone Solo Marcato (looped, decay).sfz"
#include "Tuba Marcato (looped).sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<master>
master_volume=-5

#include "Trumpets Staccato.sfz"
#include "Horns Staccato.sfz"
#include "Trombones Staccato.sfz"
#include "Bass Trombone Solo Staccato.sfz"
#include "Tuba Staccato.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<master>
master_volume=-5

#include "Trumpets Sustain (looped).sfz"
#include "Horns Sustain.sfz"
#include "Trombones Sustain (looped).sfz"
#include "Bass Trombone Solo Sustain (looped, decay).sfz"
#include "Tuba Sustain (looped).sfz"
26 changes: 26 additions & 0 deletions Sonatina Symphonic Orchestra/Brass - Performance/All Brass KS.sfz
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<global>
sw_default=c0
sw_lokey=c0
sw_hikey=e0
sw_last=c0
sw_label=Sustain

#include "All Brass Sustain.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=e0
sw_last=d0
sw_label=Marcato

#include "All Brass Marcato.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=e0
sw_last=e0
sw_label=Staccato

#include "All Brass Staccato.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<master>
master_volume=-5

#include "Trumpets Marcato (looped).sfz"
#include "Horns Marcato.sfz"
#include "Trombones Marcato (looped).sfz"
#include "Bass Trombone Solo Marcato (looped, decay).sfz"
#include "Tuba Marcato (looped).sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<master>
master_volume=-5

#include "Trumpets Staccato.sfz"
#include "Horns Staccato.sfz"
#include "Trombones Staccato.sfz"
#include "Bass Trombone Solo Staccato.sfz"
#include "Tuba Staccato.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<master>
master_volume=-5

#include "Trumpets Sustain (looped).sfz"
#include "Horns Sustain.sfz"
#include "Trombones Sustain (looped).sfz"
#include "Bass Trombone Solo Sustain (looped, decay).sfz"
#include "Tuba Sustain (looped).sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<master>
master_volume=-3

#include "1st Violins Col Legno.sfz"
#include "Violas Col Legno.sfz"
#include "Celli Col Legno.sfz"
#include "Basses Col Legno.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<master>
master_volume=-5

#include "1st Violins Harmonics.sfz"
#include "Violas Harmonics.sfz"
#include "Celli Harmonics.sfz"
63 changes: 63 additions & 0 deletions Sonatina Symphonic Orchestra/Strings - Notation/All Strings KS.sfz
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=c0
sw_label=Sustain

#include "All Strings Sustain.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=d0
sw_label=Marcato

#include "All Strings Marcato.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=e0
sw_label=Staccato

#include "All Strings Staccato.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=f0
sw_label=Pizzicato

#include "All Strings Pizzicato.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=f#0
sw_label=Col Legno

#include "All Strings Col Legno.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=g0
sw_label=Tremolo

#include "All Strings Tremolo.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=a0
sw_label=Harmonics

#include "All Strings Harmonics.sfz"

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<master>
master_volume=-5

#include "1st Violins Marcato.sfz"
#include "Violas Marcato.sfz"
#include "Celli Marcato.sfz"
#include "Basses Marcato.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<master>
master_volume=-5

#include "1st Violins Pizzicato.sfz"
#include "Violas Pizzicato.sfz"
#include "Celli Pizzicato.sfz"
#include "Basses Pizzicato.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<master>
master_volume=-5

#include "1st Violins Staccato.sfz"
#include "Violas Staccato.sfz"
#include "Celli Staccato.sfz"
#include "Basses Staccato.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<master>
master_volume=-5

#include "1st Violins Sustain.sfz"
#include "Violas Sustain.sfz"
#include "Celli Sustain.sfz"
#include "Basses Sustain.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<master>
master_volume=-5

#include "1st Violins Tremolo.sfz"
#include "Violas Tremolo.sfz"
#include "Celli Tremolo.sfz"
#include "Basses Tremolo.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<master>
master_volume=-3

#include "1st Violins Col Legno.sfz"
#include "Violas Col Legno.sfz"
#include "Celli Col Legno.sfz"
#include "Basses Col Legno.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<master>
master_volume=-5

#include "1st Violins Harmonics.sfz"
#include "Violas Harmonics.sfz"
#include "Celli Harmonics.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=c0
sw_label=Sustain

#include "All Strings Sustain.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=d0
sw_label=Marcato

#include "All Strings Marcato.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=e0
sw_label=Staccato

#include "All Strings Staccato.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=f0
sw_label=Pizzicato

#include "All Strings Pizzicato.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=f#0
sw_label=Col Legno

#include "All Strings Col Legno.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=g0
sw_label=Tremolo

#include "All Strings Tremolo.sfz"

<global>
sw_default=c0
sw_lokey=c0
sw_hikey=a0
sw_last=a0
sw_label=Harmonics

#include "All Strings Harmonics.sfz"

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<master>
master_volume=-5

#include "1st Violins Marcato.sfz"
#include "Violas Marcato.sfz"
#include "Celli Marcato.sfz"
#include "Basses Marcato.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<master>
master_volume=-5

#include "1st Violins Pizzicato.sfz"
#include "Violas Pizzicato.sfz"
#include "Celli Pizzicato.sfz"
#include "Basses Pizzicato.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<master>
master_volume=-5

#include "1st Violins Staccato.sfz"
#include "Violas Staccato.sfz"
#include "Celli Staccato.sfz"
#include "Basses Staccato.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<master>
master_volume=-5

#include "1st Violins Sustain.sfz"
#include "Violas Sustain.sfz"
#include "Celli Sustain.sfz"
#include "Basses Sustain.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<master>
master_volume=-5

#include "1st Violins Tremolo.sfz"
#include "Violas Tremolo.sfz"
#include "Celli Tremolo.sfz"
#include "Basses Tremolo.sfz"
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<global>
sw_default=c2
sw_lokey=c2
sw_hikey=d2
sw_last=c2
sw_label=Sustain

#include "All Woodwinds Sustain.sfz"

<global>
sw_default=c2
sw_lokey=c2
sw_hikey=d2
sw_last=d2
sw_label=Staccato

#include "All Woodwinds Staccato.sfz"
Loading

0 comments on commit 2afd094

Please sign in to comment.