DIGITAL AUDIO WORKSTATION

CODE EDITOR

# At the end of module 3 you should be building confidence with the fitMedia function
# CODING CONCEPTS
# Use fitMedia every time you want to add a sound to your song
# fitMedia(sound, track, startmeasure, endmeasure)
#
# MUSIC CONCEPTS
# In order to hear different sounds such as drum and vocals at the same time
# Put the sounds on different tracks
# Use the startmeasure and endmeasure to control when you hear the sound
#
# STORYTELLING CONCEPTS
# The lyrics in songs can be used to promote social justice
from earsketch import *

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

#Vocals on track 1
# 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
fitMedia(JWOLF_COTG_VOX_MISC_SHOUT,1,2,5)
fitMedia(DKBEAR_FREE_TALK_MUST_DO,1,6,7)

# Drums are on track 2
# I have chosen a percussion background that sounds like a ticking clock to reinforce the sense of urgency
fitMedia(DKBEAR_FREE_PERC_AUX,2,1,8)


# DOES THIS SONG MEET THE MINIMUM REQUIREMENTS FOR THE 2024 CANADIAN YOUR VOICE IS POWER COMPETITION?
# NO
# NO - Minimum 30 seconds
# YES - Maximum 3 minutes
# NO - Minimum 5 unique sounds
# YES - Includes at least one sound clip from an Indigenous artist featured in the program
# YES - Does not include any copyrighted clips
# YES - Uses fitMedia() function
IMPORT TO EDIT