DIGITAL AUDIO WORKSTATION

CODE EDITOR

# At the end of module 6 you should have added a custom function to your song
# The example meets the minimum coding requirements for the competition because it has
# -Variables
# -Custom Functions
# -A score greater than 60
# CODING CONCEPTS
# Functions are re-usable sections of code
# Call the function when you want the code to run
# This example has functions with NO PARAMETERS
#
# MUSIC CONCEPTS
# As your song develops you can change the tempo if you wish
#
# STORYTELLING CONCEPTS
# Role models can be a good source for positive and hopeful storytelling

from earsketch import *

# I have chosen a fast tempo to create a sense of urgency
setTempo(140)

#SOUNDBANK
#Instrumental
drums = DKBEAR_FREE_PERC_AUX

#Vocals
shout = JWOLF_COTG_VOX_MISC_SHOUT
dosomething = DKBEAR_FREE_TALK_MUST_DO
notinahurry = DKBEAR_FREE_VOX_CHORUS_1
stormsraging = TFLAMES_OMEN_VOX_VRS_1

#Create functions for each section of the song
def intro():
# INTRO from measures 1 to 8
# Set the tone of the song with a shout and the phrase 'we must do somethign and we need to do it now'
# Deliberately leaving gaps between the vocals so you can hear the ticking drum sound
IMPORT TO EDIT