DIGITAL AUDIO WORKSTATION

CODE EDITOR

# At the end of module 2 you should have comments included in your script
# CODING CONCEPTS
# Any line in your script preceded by a '#' is a comment
# Comments are used to document what we have done to anyone reading our script
# Comments are ignored when the program runs and do not affect program execution
#
# MUSIC CONCEPTS
# You can use comments to help your teacher, or the judges understand the different sections of your song
# And the musical choices you have made, for example you might add a comment explaining why you chose
# a fast or slow tempo
#
# STORYTELLING CONCEPTS
# Use comments to explain to your teacher or the judges the story you are sharing with your song
from earsketch import *

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

# I have chosen a percussion background that sounds like a ticking clock to reinforce the sense of urgency
fitMedia(DKBEAR_FREE_PERC_AUX,1,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
# NO - Uses variables
# NO - Uses custom functions to define song sections
# YES - Uses comments describe code and document song message
# NO - Minimum Code complexity score of 60 (2 functions)
# NO - Includes a call to action to promote equity and justice, demonstrates awareness or analysis of racial injustice
IMPORT TO EDIT