Requirements for the song: Has a fit media Has at least 1 loop Has at least 2 setEffects Only one of the effects can be volume To access clipchamp: Go to Microsoft stream Open up Video Project Upload your video clips Upload your audio Edit and move the clips and music into the timeline Please see below for Rubric! Earsketch Major Earsketch Major Criteria Ratings Pts This criterion is linked to a Learning OutcomeVariable - Line number and name of your variable. Plus variable matches the correct data type. 5 pts This criterion is linked to a Learning OutcomeStudent correctly explained what the variable's purpose was in the code. 5 pts This criterion is linked to a Learning OutcomeLoop - Student correctly identified the line numbers of the loop and how many times it iterated. 5 pts This criterion is linked to a Learning OutcomeStudent correctly explained the purpose of the loop in their code. 5 pts This criterion is linked to a Learning OutcomeStudent correctly identified the line number and value of a parameter in their code. 5 pts This criterion is linked to a Learning OutcomeStudent correctly described how the code would be different if another value was passed in the parameter. 5 pts This criterion is linked to a Learning OutcomeStudent explained what they did to make their song match their emotion. 10 pts This criterion is linked to a Learning OutcomeStudent discussed what they learned about music production by doing this project. 5 pts This criterion is linked to a Learning OutcomeStudent explained what they learned about variables, parameters or loops by doing this project. 10 pts This criterion is linked to a Learning OutcomeStudent gave good advice about what they whish they knew 5 pts This criterion is linked to a Learning OutcomeVideo clip is good and matches emotion/tells a story 25 pts This criterion is linked to a Learning OutcomeStudent submitted song that matches requirements 15-30 seconds • Has at least 2 fit medias • Has at least 2 make beats • Has at least 1 loop • Has at least 1 setEffect with 4 parameters • Hast at least 1 setEffect with 6 parameters • Only one of the effects can be volume 15 pts Total Points: 100 THE THEME FOR THE SONG IS SCARY, AND USE ACTUALL EAR SKETCH AUDIOS

1 answer

To create a song with a scary theme using EarSketch, here’s a structured approach you can follow along with the requirements you've provided:

Outline for Your Scary Themed Song in EarSketch

1. Setup your EarSketch environment:

  • Log in to EarSketch and create a new project.
  • Select a scary-sounding kit and sound samples that match your theme. You can browse through the library for sound effects or audio clips that fit the horror genre, like creaks, howls, thunder, eerie melodies, etc.

2. Uploading Audio Clips:

  • Ensure to include at least two fitting media (audio clips) with a scary vibe.
  • Import audio clips reflecting the theme, like screams or spooky instrumental music.

3. Creating the Musical Composition:

  • Basic Structure: Plan for a song that lasts between 15-30 seconds.
  • Beats and Rhythms: Create at least two beats. Use different instruments to layer and add depth to your soundscape.
  • Loops: Incorporate at least one loop (for example, a haunting melody or rhythmic drum pattern that plays throughout the song).

4. Effects:

  • Add at least two effects to your track. Consider the following:
    • setEffect 1 - A reverb effect (6 parameters) on a haunting melody to create distance.
    • setEffect 2 - A delay effect (4 parameters) on a scream sound to create an echoing effect.
    • Ensure that one of these effects adjusts the volume on one of your sounds.

Implementation Example in EarSketch:

Here’s how your code may look in EarSketch with the elements incorporated. Below is a fictional code segment demonstrating this setup:

from earsketch import *

init()
setTempo(120)

# Load your scary clips
clip1 = makeAudioClip("scream1.wav", 1, 0, 5)  # First scary audio clip
clip2 = makeAudioClip("creepyMusic.wav", 2, 0, 6)  # Second scary audio clip

# Add your loops
loop1 = makeBassLoop("eerieBassLoop.wav", 3, 0, 8)  # A bass loop for the foundation

# Apply effects
setEffect(1, VOLUME, GAIN, -6)  # Volume effect on clip1
setEffect(2, REVERB, ROOM_SIZE, 0.8, DAMPING, 0.6, WET_LEVEL, 0.5, DRY_LEVEL, 0.5, WIDTH, 1, FREEZE_MODE, 0)  # Reverb on clip2
setEffect(3, DELAY, TIME, 0.25, FEEDBACK, 0.5, WET_LEVEL, 0.4, DRY_LEVEL, 0.5) # Delay effect on clip1

# Main arrangement
fitMedia(clip1, 1, 1, 5)  # Place first clip 
fitMedia(clip2, 2, 0, 6)  # Place second clip
fitMedia(loop1, 3, 0, 8)   # Place loop

# Finish up
finish()

Add Your Commentary:

  1. Variable Explanation: Describe what each variable (like clip1, clip2, loop1) represents.

  2. Loop Identification: Specify where your loop is and how many times it plays.

  3. Purpose of the Loop: Explain that the loop serves to build a foundational rhythm or mood.

  4. Parameter Identification: Identify the parameters you’ve used (like GAIN, ROOM_SIZE).

  5. Changing Parameters: Discuss how altering values (e.g., increasing GAIN) could change the song's volume.

  6. Emotion Match Explanation: Describe how you used eerie sounds and effects to evoke fear.

  7. Learning Reflection: Reflect on what you learned regarding music production, such as arranging tracks and applying effects.

  8. Technical Skills: Describe what you learned about using variables, parameters, and loops in programming.

  9. Advice: Share what you wish you had known before starting this project.

  10. Clip and Story: Ensure your music tells a scary story and matches the intended emotion.

Final Review:

  • Once you've composed your song, review it to ensure every requirement is met.
  • Export your project and check that it fits the scary theme while telling a coherent story.

By following these steps, you'll be able to create a fittingly scary song using EarSketch that meets all the requirements laid out in your rubric. Good luck!