- bass line improvisation - rhythmic variations in the accompaniment - alternate rendering for songs with ternary (waltzes) and other metrics

Size: px
Start display at page:

Download "- bass line improvisation - rhythmic variations in the accompaniment - alternate rendering for songs with ternary (waltzes) and other metrics"

Transcription

1 ChoroBox by Carlos Eduardo Mello (2012) ChoroBox is an Arduino-based project that implements an automated machine for "choro" music, which can be used by musicians to practice melodic lines with an interactive accompaniment, when connected to a Mac OS X system. Dependencies This project is based on the ardacc and Peduino projects. For software download and details on how to build a Peduino Box, please refer to ChoroBox works by sending MIDI data to a synthesizer, which is expected to produce acoustic guitar sounds (nylon) on channel 1. The data can be routed directly from ardacc's source endpoint (CoreMIDI), or indirectly by connecting the synthesizer to OS X's IAC (Inter Application) MIDI driver. Development Status This project is currently under development and being tested with a prototype version of the Peduino device. The current version provides a basic accompaniment pattern based on a simple, repeated, rhythmic pattern. Development plans for the future include: - bass line improvisation - rhythmic variations in the accompaniment - alternate rendering for songs with ternary (waltzes) and other metrics Rendering Harmonic Changes The data model used in this project reflects a very simplified model for rendering harmony changes in choro music, with the classical guitar (nylon strings). This is based on a syncopated rhythmic pattern, which is very typical of Brazilian music:

2 Most of this music is in 2/4. The down beats are assigned to the bass, played by the thumb on one of the lower 3 three strings (E, A, D). The remaining strings (G, B, E) are typically struck together for the "up" parts of the beat. Harmony changes in choro are fairly fast, often entailing a different chord for each beat. Real performances of this kind of music are a lot more elaborate than represented here. Both melody and accompaniment undergo constant rhythmic variations. In addition to the traditional guitar accompaniment, an obligatory 7-string guitar ("sete cordas") is usually responsible for a fast moving, improvised bass line, which provides a constant counterpoint to the main melodic line. However, for the scope of this implementation, these features are prohibitively complex and will be left for future development. Chords in ChoroBox are defined as array indexes. Each index retrieves a pitch from each of the five synchronized arrays in the code. Pitches are given in MIDI note number. Value '60' corresponds to 'middle C'. Each unit increment changes the pitch by a half step. The two bass arrays alternate for beats with the same chord. The other string arrays correspond to the 3 highest strings on the guitar. This version of ChoroBox plays them always together. Song Data With the scheme above, substituting song data for performing different pieces is quite straightforward. As long as none of the code is modified, it is just a matter of saving the 'chorobox.ino' sketch with a different name (preserving the name extension) and replacing the chord/song data as outlined bellow (instructions and example). The project can then be quickly recompiled with the Arduino Environment and loaded into the device for performance. Replacing Song Data: 1. Locate the section marked [USER CODE: SONG] in the sketch; 2. Under CHORD PITCHES, look at the lines that start with "byte bass1 ", "byte bass2 ", etc. Each line represents a string in the guitar; 3. Each chord has a number entry in each string line inside the curly braces {55,54,52, } on the corresponding string line. 4. In order to replace the chords, you need to: (a) Figure out which chord needs to be played - this is usually shown on the music sheet as a chord change above the solo notes... (b) Decide how the fingers should stop the frets for each chord and identify the exact pitch/octave each string will produce;

3 (c) Convert each note to its MIDI equivalent (see table bellow); (d) Insert the appropriate note number in the corresponding string/chord slot -- note that: the notes inside the curly braces for each string are separated by commas; a commented line above the string arrays indicates the index number for each chord; notes in different strings but with the same index make up a given chord (see example bellow); (e) Be careful not to forget the commas between notes, leave extra commas, or otherwise modify the code in any way other than what is instructed here -- doing so will make it impossible to execute the sketches code. (f) When all the chords have been inserted, update the chord count in the following line: const byte NUMBER_OF_CHORDS = 25; As you can see in the code, array indexes start with 0, so in order to be correct; NUMBER_OF_CHORDS should be one unit greater than the index of the last chord. (g) Once the chords are all represented in the code, you need to indicate what chord is played in each beat of the music; this is done by simply inserting a chord index in the appropriate space in the song array; as with the chord arrays, the number of beats for the song needs to be replaced: const int NUMBER_OF_BEATS = 102; int song[number_of_beats] = { 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 4, 5,... }; Example: Suppose you want to insert a G major chord as the first item in your chord array. There are many ways of playing a G major chord on the guitar, so let's choose one:

4 With the fingers places like this we have G and D for the bass notes and B, D, G for the upper strings. The MIDI protocol uses integers to represent pitches. We want to send notes as MIDI data, so each pitch needs to be converted to the MIDI format. MIDI spec says that a middle C should be coded as number '60'. The other notes can be deduced from this reference point by adding or subtracting one unit for each half-step. Thus, the notes in our chord can be noted as MIDI note numbers as follows: bass1 = 55, bass2 = 62, string1 = 71, string2 = 74, string3 = 79 Now we need to place these numbers in the appropriate position in each string array, like this: // Song Definitions // CHORD PITCHES const byte NUMBER_OF_CHORDS = 25; // ============== CHORD INDEXES: byte bass1[number_of_chords] = {55,60,62}; byte bass2[number_of_chords] = {62,64,57}; byte string1[number_of_chords] = {71,67,69}; byte string2[number_of_chords] = {74,72,72}; byte string3[number_of_chords] = {79,76,78}; Note that the numbers we converted above are now occupying the first slot in each array, corresponding to index 0. Following the same procedure, we can represent other chords like for example C and D7 and place the corresponding numbers in slots 1 and 2. In order to make this code usable, we need to change the number of chords to 3:

5 const byte NUMBER_OF_CHORDS = 3; Now our chord collection contains the data necessary for a basic I-IV-V-I chord progression, and we can reuse these chords in the song accompaniment as many times as necessary, just by referring to the corresponding index number like this: // CHORD CHANGES // each index inside this array is a reference to one of the chords above const int NUMBER_OF_BEATS = 8; int song[number_of_beats] = { 0, 1, 3, 0, 1, 3, 3, 0 }; Before compiling and executing the sketch on the Peduino, remember to change the number of beats to reflect the number of entries in your song array. Here too, commas separate the numbers and any mistakes in the syntax will make the program "crash and burn".

Major Pentatonic Scales: Lesson 1

Major Pentatonic Scales: Lesson 1 Major Pentatonic Scales: Lesson 1 In the next 4 video lessons we will be looking at and discussing some simple concepts for creating grooves and groove solos. The 4 Lessons will focus on Using Major Pentatonic

More information

Rory Garforth Guitar Handouts - 1

Rory Garforth Guitar Handouts - 1 The Anatomy of the Guitar Get familiar with your instrument. Whether you are playing on an electric guitar or an acoustic guitar the basic parts of the guitar are the same. Below is a diagram of both styles

More information

Study Guide. The five lines that we use to demonstrate pitch are called the staff.

Study Guide. The five lines that we use to demonstrate pitch are called the staff. Guitar Class Study Guide Mr. Schopp Included is all the information that we use on a daily basis to play and communicate about playing the guitar. You should make yourself very comfortable with everything,

More information

WK-7500 WK-6500 CTK-7000 CTK-6000 BS A

WK-7500 WK-6500 CTK-7000 CTK-6000 BS A WK-7500 WK-6500 CTK-7000 CTK-6000 Windows and Windows Vista are registered trademarks of Microsoft Corporation in the United States and other countries. Mac OS is a registered trademark of Apple Inc. in

More information

Blues Guitar E E E E E A E E E A E E A A E E A A E E A A E E B A E B B A E B B B E E

Blues Guitar E E E E E A E E E A E E A A E E A A E E A A E E B A E B B A E B B B E E Blues music uses a 3 Chord Progression - I IV V Chord numbering example in the key of C: C = I, D = II, E = III, F = IV, G = V, A = VI, B = VII Examples of different scales A D E B E F C F G D G A E A

More information

Stormy Weather Ted Greene Arrangement Ted made this solo guitar arrangement for a student during a private lesson, so the format is a little rough mor

Stormy Weather Ted Greene Arrangement Ted made this solo guitar arrangement for a student during a private lesson, so the format is a little rough mor Stormy Weather Ted Greene Arrangement Ted made this solo guitar arrangement for a student during a private lesson, so the format is a little rough more of an outline or sketch. There are places where he

More information

Project Two - Building a complete song

Project Two - Building a complete song Project Two - Building a complete song Objective - Our first project involved building an eight bar piece of music and arranging it for three backing instruments. In this second project we will consider

More information

Lesson #11: Fingerpicking Patterns in 3/4 Time Signature

Lesson #11: Fingerpicking Patterns in 3/4 Time Signature : Fingerpicking Patterns in 3/4 Time Signature You ve made it to the final lesson in Part II of Fingerpicking Tricks. So far, you ve discovered the world of rhythmic fingerpicking on the ukulele and how

More information

Lesson #14: Focusing On Fretting Hand Technique

Lesson #14: Focusing On Fretting Hand Technique : Focusing On Fretting Hand Technique The next piece you learn provides a nice challenge for your fretting hand involving frequent chord changes and some interesting positions. In addition, turn your attention

More information

Chord Tones: Targeting Blues Guitar. Chord Tones: Targeting Blues Guitar

Chord Tones: Targeting Blues Guitar. Chord Tones: Targeting Blues Guitar Chord Tones: Targeting Blues Guitar Chord Tones: Targeting Blues Guitar In this chord tones lesson we will learn to target the notes in each individual chord of the 12-bar blues progression and adjust

More information

Music and Engineering: Just and Equal Temperament

Music and Engineering: Just and Equal Temperament Music and Engineering: Just and Equal Temperament Tim Hoerning Fall 8 (last modified 9/1/8) Definitions and onventions Notes on the Staff Basics of Scales Harmonic Series Harmonious relationships ents

More information

RICK PAYNE S FINGERSTYLE BLUES

RICK PAYNE S FINGERSTYLE BLUES RICK PAYNE S FINGERSTYLE BLUES 10 lessons in the art of Fingerstyle Blues acousticguitarworkshop.com Welcome to the Fingerstyle Blues - 10 lessons in the art of Acoustic Blues Here is a resume of the course.

More information

EPUB / MELODIC MINOR SCALE GUITAR DOCUMENT

EPUB / MELODIC MINOR SCALE GUITAR DOCUMENT 01 November, 2017 EPUB / MELODIC MINOR SCALE GUITAR DOCUMENT Document Filetype: PDF 232.4 KB 0 EPUB / MELODIC MINOR SCALE GUITAR DOCUMENT Here's the free C Melodic Minor Scale. It can also be easily remembered

More information

Lesson #8: Simultaneous Patterns Using the Alternating Thumb Technique

Lesson #8: Simultaneous Patterns Using the Alternating Thumb Technique : Simultaneous Patterns Using the Alternating Thumb Technique Like the last lesson, in this lesson, continue to focus on simultaneous pinched patterns, but this time, learn patterns that use the alternating

More information

Electric Guitar Foundation Level 1

Electric Guitar Foundation Level 1 Electric Guitar Foundation Level 1 & INSTRUMENT The student should adopt the correct playing position including, how to hold the instrument and place both hands in the correct position. The student should

More information

Understanding and Using Pentatonics Creatively: Lesson 1

Understanding and Using Pentatonics Creatively: Lesson 1 Understanding and Using Pentatonics Creatively: Lesson 1 Major and Minor Scales When we write melodies, play bass lines and improvise solos, we derive our information from scales. There are many types

More information

Virginia Standards of Learning IB.16. Guitar I Beginning Level. Technique. Chords 1. Perform I-IV-V(V7) progressions in F, C, G, Scales

Virginia Standards of Learning IB.16. Guitar I Beginning Level. Technique. Chords 1. Perform I-IV-V(V7) progressions in F, C, G, Scales Guitar I Beginning Level Technique 1. Demonstrate knowledge of basic guitar care and maintenance 2. Demonstrate proper sitting position 3. Demonstrate proper left-hand and right-hand playing techniques

More information

CONTENT AREA: MUSIC EDUCATION

CONTENT AREA: MUSIC EDUCATION COURSE TITLE: Advanced Guitar Techniques (Grades 9-12) CONTENT AREA: MUSIC EDUCATION GRADE/LEVEL: 9-12 COURSE DESCRIPTION: COURSE TITLE: ADVANCED GUITAR TECHNIQUES I, II, III, IV COURSE NUMBER: 53.08610

More information

Funk Guitar Chords: Techniques. Funk Guitar Chords: Techniques

Funk Guitar Chords: Techniques. Funk Guitar Chords: Techniques Funk Guitar Chords: Techniques Funk Guitar Chords: Techniques One of the defining features of funk music is that the harmony of a tune is often quite static. There may only be one or two chords in a whole

More information

Jazz Standard Study Guide Corcovado

Jazz Standard Study Guide Corcovado Jazz Standard Study Guide Corcovado Written By: Matthew Warnock Published By: Guitar for Life LLC Cover Photo By: Twizzlebird Creative Copyright 2017 Guitar for Life LLC Introduction to This Study Guide

More information

Chapter 3: Scales, arpeggios, and easy pieces. Scales

Chapter 3: Scales, arpeggios, and easy pieces. Scales Scales Modern western music is based on a 12-tone scale of consonances and dissonances divided into equal intervals of tones and semitones: C, C#, D, D#, E, F, F#, G, G#, A, A#, B. Major scales are built

More information

HS Virtual Jazz Final Project Test Option Spring 2012 Mr. Chandler Select the BEST answer

HS Virtual Jazz Final Project Test Option Spring 2012 Mr. Chandler Select the BEST answer HS Virtual Jazz Final Project Test Option Spring 2012 Mr. Chandler Select the BEST answer 1. Most consider the most essential ingredient in jazz to be A. time B. jazz "sounds" C. improvisation D. harmony

More information

Travis Picking on the Irish Tenor Banjo

Travis Picking on the Irish Tenor Banjo Travis Picking on the Irish Tenor Banjo By Mirek Patek This is the third article that presents fingerstyle opportunities on tenor banjo from the perspective of playing melody together with some rhythmic

More information

GUITAR REQUIREMENTS AND INFORMATION

GUITAR REQUIREMENTS AND INFORMATION GUITAR REQUIREMENTS AND INFORMATION Subject Code: 07 This syllabus is valid from 2009 until further notice. This section provides a summary of the most important points that teachers and candidates need

More information

Read Notes on Guitar: An Essential Guide. Read Notes on Guitar: An Essential Guide

Read Notes on Guitar: An Essential Guide. Read Notes on Guitar: An Essential Guide Read Notes on Guitar: An Essential Guide Read Notes on Guitar: An Essential Guide As complicated as it might seem at first, the process to read notes on guitar may be broken down into just three simple

More information

AUTOMATED MUSIC TRACK GENERATION

AUTOMATED MUSIC TRACK GENERATION AUTOMATED MUSIC TRACK GENERATION LOUIS EUGENE Stanford University leugene@stanford.edu GUILLAUME ROSTAING Stanford University rostaing@stanford.edu Abstract: This paper aims at presenting our method to

More information

Verse (Bars 5 20) The Contour of the Acoustic Guitar Riff

Verse (Bars 5 20) The Contour of the Acoustic Guitar Riff Verse (Bars 5 20) The Contour of the Acoustic Guitar Riff a. The Guitar riff starts with five descending stepwise notes (D#, C#, B, A# and G#), followed by six notes (G#) repeated at the same pitch, then

More information

G (IV) D (I) 5 R. G (IV) o o o

G (IV) D (I) 5 R. G (IV) o o o THE D PROGRESSION D (I) x o o G (IV) o o o A7 (V7) o o o o R 5 In this unit, you will learn a I - IV - V7 progression in each key. For the key of D, those chords are D - G - A7. To change easily from D

More information

Choosing your own song for Vocals Initial Grade 8

Choosing your own song for Vocals Initial Grade 8 Choosing your own song for Vocals Initial 8 All techniques are cumulative but it is not expected that songs will contain everything in the list; this is intended to be a general guide to the type of techniques

More information

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino

EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs Introduction to Arduino EE-110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Labs 10-11 Introduction to Arduino In this lab we will introduce the idea of using a microcontroller as a tool for controlling

More information

Sight Reading For Bass Lesson #1. Lesson #1

Sight Reading For Bass Lesson #1. Lesson #1 Lesson #1 Hello and welcome to Sight Reading For Bass Guitar & Acoustic Bass. Thanks so much for enrolling. I really appreciate it! I'm Cliff Engel, and I will be your instructor for this online bass course.

More information

Foundation Piano Level 1

Foundation Piano Level 1 Foundation Piano Level 1 Be able to sit comfortably in a balanced position and play with basic dynamics. Have a good hand shape without flat fingers. Read a range of notes over a fifth in both treble and

More information

Improv Pathways. Table of Contents. CD 1 Track List

Improv Pathways. Table of Contents. CD 1 Track List Introduction....................... 1-2 Lessons 1-8: The I Chord............ 3-10 Head Charts: I Chord.............. 11-12 Lessons 9-13: The IV Chord........ 13-17 Head Charts: I & IV Chords........ 18-19

More information

Piano Chord Accompaniment Guide READ ONLINE

Piano Chord Accompaniment Guide READ ONLINE Piano Chord Accompaniment Guide READ ONLINE Piano Chord Progressions Piano Lessons - Learn common chord progressions on the piano in this piano lesson with Nate Bosch! There are a few chord progressions

More information

Arts Education Guitar II Curriculum. Guitar II Curriculum. Arlington Public Schools Arts Education

Arts Education Guitar II Curriculum. Guitar II Curriculum. Arlington Public Schools Arts Education Arlington Public Schools Arts Education 1 This curriculum was written by Matt Rinker, Guitar Teacher, Gunston Middle School Kristin Snyder, Guitar Teacher, Yorktown High School Carol Erion, Arts Education

More information

MUS 194: BEGINNING CLASS GUITAR I FOR NON-MAJORS. COURSE SYLLABUS Spring Semester, 2014 ASU School of Music

MUS 194: BEGINNING CLASS GUITAR I FOR NON-MAJORS. COURSE SYLLABUS Spring Semester, 2014 ASU School of Music MUS 194: BEGINNING CLASS GUITAR I FOR NON-MAJORS Instructor: Brendan Lake Email: Brendan.Lake@asu.edu COURSE SYLLABUS Spring Semester, 2014 ASU School of Music REQUIRED MATERIALS *Acoustic Guitar - Bring

More information

Ableton announces Live 9 and Push

Ableton announces Live 9 and Push Ableton announces Live 9 and Push Berlin, October 25, 2012 Ableton is excited to announce two groundbreaking new music-making products: Live 9, the music creation software with inspiring new possibilities,

More information

By John Geraghty ISBN Copyright 2015 Green Olive Publications Ltd All Rights Reserved

By John Geraghty ISBN Copyright 2015 Green Olive Publications Ltd All Rights Reserved By John Geraghty ISBN 978-0-9933558-0-6 Copyright 2015 Green Olive Publications Ltd All Rights Reserved Book One Manual and CD 1 Table of Contents Introduction... 1 Contents within the Course Part 1...

More information

Teach Yourself Guitar Overnight: Lesson 2

Teach Yourself Guitar Overnight: Lesson 2 Teach Yourself Guitar Overnight: Lesson 2 Introduction to Playing Guitar Chords Brought to you by www.seymourproducts.com Visit us now to get a free ebook with master resale rights. Welcome back! So you

More information

Beginner s Course Workbook

Beginner s Course Workbook Begi nner s Cour se Lesson W or kbook Beginner s Course Workbook Lesson #1: Absolute Basics Anatomy Of The Bass Guitar The following diagram gives an overview of the three main parts of the bass guitar.

More information

Tony Grey Bass Academy

Tony Grey Bass Academy Tony Grey Bass Academy BeBop Study Lesson 1 Step 1 Tony Grey Bass Academy This lesson is taken directly from inside the Tony Grey Bass Academy were we do a full course on all of the different approach

More information

POWER USER ARPEGGIOS EXPLORED

POWER USER ARPEGGIOS EXPLORED y POWER USER ARPEGGIOS EXPLORED Phil Clendeninn Technical Sales Specialist Yamaha Corporation of America If you think you don t like arpeggios, this article is for you. If you have no idea what you can

More information

The Heritage. Fingerstyle Guitar Arrangements. By Stuart Ryan. Includes FREE CD!

The Heritage. Fingerstyle Guitar Arrangements. By Stuart Ryan. Includes FREE CD! The Heritage Fingerstyle Guitar Arrangements Includes FREE CD! By Stuart Ryan The Heritage An Overview PICKING HAND TECHNIQUES There are several different approaches to the picking hand that you will encounter

More information

Ultimate Bass Kit user manual

Ultimate Bass Kit user manual Ultimate Bass Kit user manual Introducing Ultimate Bass Kit... 1 So what is Ultimate Bass Kit?... 1 Different formats... 1 SoundFonts... 1 ManyStation wusiksnd format... 1 Installing your soundsets...

More information

Middle School Guitar

Middle School Guitar Middle School Guitar APP0700 Course Description Have you ever dreamed of playing the guitar? Whether you love music, want to play guitar for your family and friends, or desire to be a music star, this

More information

Rock Guitar Basics instructor Rick Mollindo B.A.

Rock Guitar Basics instructor Rick Mollindo B.A. Rock Guitar Basics instructor Rick Mollindo B.A. www.lessonsonlocation.com 2005 Rick Mollindo T he scope of this course is to introduce you to the basics of playing Rock Style Guitar. Elements of Scales,

More information

Jazz-Blues changes based on Joe Pass chord-melody solo The Blues. 50shadesofguitar - The Guitar Blog

Jazz-Blues changes based on Joe Pass chord-melody solo The Blues. 50shadesofguitar - The Guitar Blog 27/12/2016 Jazz-Blues changes based on Joe Pass chord-melody solo The Blues 50shadesofguitar - The Guitar Blog Here you can see 2 choruses of the changes from great Joe Pass Blues transposed to all 12

More information

Introduction to Lead Guitar. Playing Scales-Introducing the Minor Pentatonic Scale

Introduction to Lead Guitar. Playing Scales-Introducing the Minor Pentatonic Scale Lesson Nineteen Gigajam Guitar School Lesson 19 IGS ILGP Introducing Lead Guitar Playing Lesson Objectives. Introduce the idea of playing individual notes as a Scale. Introduce and be able to play a Minor

More information

How To Create Your Own Solo Pieces

How To Create Your Own Solo Pieces How To Create Your Own Solo Pieces As you learned from the video lesson, you only really need 2 elements to create a solo piece on bass. They were the melody, and some kind of accompaniment being bass

More information

Scarborough Fair. Chord Solo Arrangement by Karl Aranjo. Karl Aranjo,

Scarborough Fair. Chord Solo Arrangement by Karl Aranjo. Karl Aranjo, Karl Aranjo, www.guitaru.com This study is an arrangement of a classic British folk ballad called. Although the song dates back to at least the Renaissance period, a version of it was made popular by the

More information

Guitar Wheel. User s Guide

Guitar Wheel. User s Guide Guitar Wheel User s Guide Complete and concise the Guitar Wheel provides a foundation to accelerate learning and playing. The Guitar Wheel is a fully functional and interactive tool that works in all 12

More information

Legacy High School A Global Studies School

Legacy High School A Global Studies School Legacy High School A Global Studies School Course Expectations 2015-2016 Beginning Guitar Instructor: Brian Levanger, Elizabeth McFadden LHS Room 319, 208 Phone: (702) 799-1777 Voice Mail: Mr. Levanger

More information

Riff Broken Chord Arpeggio. Phrase. Improvisation Phrase Back Beat

Riff Broken Chord Arpeggio. Phrase. Improvisation Phrase Back Beat Riff Broken Chord Arpeggio Scale Pattern or Scalic Question and Answer Phrase Blues Scale and Blues Notes Improvisation Phrase Back Beat 4/4 3/4 Also known as simple time Syncopation Swing This maybe a

More information

Modern Band: Chart Notation Guide

Modern Band: Chart Notation Guide At the top of each lead sheet, you ll fi nd information on the song s key (in this case, A major), tempo (90 BPM), chords, and song structure. You ll see the chords listed with a letter name and a roman

More information

Riff Broken Chord Arpeggio. Phrase. Improvisation Phrase Back Beat

Riff Broken Chord Arpeggio. Phrase. Improvisation Phrase Back Beat Riff Broken Chord Arpeggio Scale Pattern or Scalic Question and Answer Phrase Blues Scale and Blues Notes Improvisation Phrase Back Beat 4/4 3/4 Also known as simple time Syncopation Swing This maybe a

More information

High School Guitar APP2800

High School Guitar APP2800 High School Guitar APP2800 Course Description Have you ever dreamed of playing the guitar? Whether you love music, want to play guitar for your family and friends, or desire to be a music star, this course

More information

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 The

More information

How to Make Scales Sound Like Solos

How to Make Scales Sound Like Solos How to Make Scales Sound Like Solos Part 1: Introduction to the Pentatonic Scale Live Stream Thursday April 5 th 2018 By Erich Andreas YourGuitarSage.com Click Here to Watch the First 30 UGS Lessons TODAY!

More information

Ultimate Songwriting Jumpstart Module 4 Song Structure & Awesome Arrangements. epicsongwriting.com

Ultimate Songwriting Jumpstart Module 4 Song Structure & Awesome Arrangements. epicsongwriting.com Ultimate Songwriting Jumpstart Module 4 Song Structure & Awesome Arrangements epicsongwriting.com Chord Progressions History of chords Key & Key Signature, Scales Nashville Numbers Functional Progressions

More information

Tones sound and roar and storm about me until I have set them down in notes ~Ludwig van Beethoven

Tones sound and roar and storm about me until I have set them down in notes ~Ludwig van Beethoven Learn how to Jam: Tones sound and roar and storm about me until I have set them down in notes ~Ludwig van Beethoven Learn why things work when determining soloing avenues and all about how to jam over

More information

Esperanza Spalding: Samba Em Prelúdio (from the album Esperanza) Background information and performance circumstances Performer

Esperanza Spalding: Samba Em Prelúdio (from the album Esperanza) Background information and performance circumstances Performer Esperanza Spalding: Samba Em Prelúdio (from the album Esperanza) (for component 3: Appraising) Background information and performance circumstances Performer Esperanza Spalding was born in Portland, Oregon,

More information

WHITTIER UNION HIGH SCHOOL DISTRICT Whittier, California. June BOARD APPROVED: August 18, 2008 COURSE OF STUDY

WHITTIER UNION HIGH SCHOOL DISTRICT Whittier, California. June BOARD APPROVED: August 18, 2008 COURSE OF STUDY WHITTIER UNION HIGH SCHOOL DISTRICT Whittier, California June 2008 BOARD APPROVED: August 18, 2008 COURSE OF STUDY Course Title: Department: GUITAR 2 P FINE ARTS Grade Levels: 10 12 COURSE DESCRIPTION

More information

Contents. Bassic Fundamentals Module 1 Workbook

Contents. Bassic Fundamentals Module 1 Workbook Contents 1-1: Introduction... 4 Lesson 1-2: Practice Tips & Warmups... 5 Lesson 1-3: Tuning... 5 Lesson 1-4: Strings... 5 Lesson 1-6: Notes Of The Fretboard... 6 1. Note Names... 6 2. Fret Markers... 6

More information

ÂØÒňΠGuitar synthesizer July 10, 1995

ÂØÒňΠGuitar synthesizer July 10, 1995 GR-1 ÂØÒňΠGuitar synthesizer July 10, 1995 Supplemental Notes MIDI Sequencing with the GR-1 This is an application guide for use with the GR-1 and an external MIDI sequencer. This guide will cover MIDI

More information

Rhythm. Chords. Play these three chords in the following pattern of 12 bars.

Rhythm. Chords. Play these three chords in the following pattern of 12 bars. This is a very short, brief, inadequate, introduction to playing blues on a guitar. Shown is a twelve bar blues in A because it's easy to get started. Have fun! Rhythm You've heard this rhythm before:

More information

GUITAR CHORDS EASY viviso.com GUITAR CHORDS EASY. page 1 / 5

GUITAR CHORDS EASY viviso.com GUITAR CHORDS EASY. page 1 / 5 page 1 / 5 page 2 / 5 guitar chords easy pdf When learning jazz chords, essential shapes and progressions can be difficult to play on guitar. While there are grips that take time to master, there are also

More information

Jim Hall Chords and Comping Techniques

Jim Hall Chords and Comping Techniques Jim Hall Chords and Comping Techniques Jazz guitar comping is an art form in its own right. The comping rhythms, melodies, and voicings of the greatest Jazz guitarists are delightful to listen to, with

More information

The Fundamental Triad System

The Fundamental Triad System The Fundamental Triad System A chord-first approach to jazz guitar Volume I Creating Improvised Lines Pete Pancrazi Introduction / The Chord-First Approach Any jazz guitar method must address the challenge

More information

Jim Hall Chords and Comping Techniques

Jim Hall Chords and Comping Techniques Jim Hall Chords and Comping Techniques Jazz guitar comping is an art form in its own right. The comping rhythms, melodies, and voicings of the greatest Jazz guitarists are delightful to listen to, with

More information

GUERRILLA TACTICS FOR GUITAR IMPROVISATION. A Non-Jazz Oriented Approach

GUERRILLA TACTICS FOR GUITAR IMPROVISATION. A Non-Jazz Oriented Approach GUERRILLA TACTICS FOR GUITAR IMPROVISATION A Non-Jazz Oriented Approach WHY GUITAR IMPROVISATION? The guitar s fretboard presents some unique problems because of its tuning disposition. The work offers

More information

Approach Notes and Enclosures for Jazz Guitar Guide

Approach Notes and Enclosures for Jazz Guitar Guide Approach Notes and Enclosures for Jazz Guitar Guide As a student of Jazz guitar, learning how to improvise can involve listening as well as learning licks, solos, and transcriptions. The process of emulating

More information

Bass Lines You Should Know: Week 5. Bass Line Played By Bernard Odum Cold Sweat by James Brown

Bass Lines You Should Know: Week 5. Bass Line Played By Bernard Odum Cold Sweat by James Brown Bass Lines You Should Know: Week 5 Bass Line Played By Bernard Odum Cold Sweat by James Brown This lesson contains: A Video Demonstration A Lesson Outline Document A Downloadable Mp3 Playalong Track I

More information

Tutorial 3K: Dominant Alterations

Tutorial 3K: Dominant Alterations Tutorial 3K: Dominant Alterations Welcome! In this tutorial you ll learn how to: Other Tutorials 1. Find and use dominant alterations 3A: More Melodic Color 2. Play whole-tone scales that use alterations

More information

Blues turnaround chord melody lick

Blues turnaround chord melody lick Blues turnaround chord melody lick Week 1: 52 weeks to better jazz guitar Blues turnaround chord melody lick Page 1 Copyright Darren Dutson Bromley Blues Turnaround Chord Melody Lick. As a guitarist, regardless

More information

Playing Jazz Guitar Bass Lines with Chords

Playing Jazz Guitar Bass Lines with Chords Playing Jazz Guitar Bass Lines with Chords The guitar is an extremely versatile instrument, with seemingly endless techniques and tones around every corner. One very important and widely used jazz guitar

More information

Group Piano. E. L. Lancaster Kenon D. Renfrow BOOK 1 SECOND EDITION ALFRED S

Group Piano. E. L. Lancaster Kenon D. Renfrow BOOK 1 SECOND EDITION ALFRED S BOOK SECOND EDITION ALFRED S Group Piano FOR A D U LT S An Innovative Method Enhanced with Audio and MIDI Files for Practice and Performance E. L. Lancaster Kenon D. Renfrow Unit 9 Scales (Group ) and

More information

Autoharp. Name: John Cerrigione. Address: 56 Egypt Road, Ellington, CT Phone: BIO:

Autoharp. Name: John Cerrigione. Address: 56 Egypt Road, Ellington, CT Phone: BIO: Name: John Cerrigione Address: 56 Egypt Road, Ellington, CT 06029 Phone: 860-872-3264 BIO: John Cerrigione is a multi-instrumentalist from Ellington, CT. He has performed and taught workshops on Autoharp,

More information

AG 110. Blues and Beyond. Adrian Whyte. Freight Train

AG 110. Blues and Beyond. Adrian Whyte. Freight Train AG Blues and Beyond Adrian Whyte Freight Train This month I want to share with you a wonderful piece of music that I first discovered myself as a young Australian Guitar Magazine reader back many years

More information

Harmonizing Jazz Melodies Using Clusters

Harmonizing Jazz Melodies Using Clusters Harmonizing Jazz Melodies Using Clusters As a jazz pianist, I am always looking for ways to arrange jazz tunes. One technique that I find myself working with involves using clusters in the right hand in

More information

CURRICULUM AT-A-GLANCE

CURRICULUM AT-A-GLANCE Course Name: CURRICULUM AT-A-GLANCE Grade Level: 8 th Grade Guitar Content(s): Unit Name Unit Length Unit Dates Unit 1: Introduction to the Guitar Unit 2: Beginning Chords, 1 st String Notes, & Musical

More information

for ELEMENTARY CLASS GUITAR

for ELEMENTARY CLASS GUITAR STUDENT EDITION for ELEMENTARY CLASS GUITAR An Innovative Method for Class Instruction Jason YEARY Aaron STANG Congratulations on beginning to learn to play the guitar! With the help of your teacher, you

More information

Pat Metheny. (Across the) Heartland Ensemble: Danny Gottleib. Keywords: Ostinato Pentatonic Diatonic Syncopation Polymetric Motif Motif Variant

Pat Metheny. (Across the) Heartland Ensemble: Danny Gottleib. Keywords: Ostinato Pentatonic Diatonic Syncopation Polymetric Motif Motif Variant Pat Metheny 5 (Across the) Heartland-1979 Keywords: Ostinato Pentatonic Diatonic Syncopation Polymetric Motif Motif Variant Key Features of Jazz Fusion: Jazz Fusion began in the late 60s when jazz artists

More information

Fretboard Secrets Exposed. Step-by-Step Workout Exercises and

Fretboard Secrets Exposed. Step-by-Step Workout Exercises and Fretboard Secrets Exposed Step-by-Step Workout Exercises and How To Navigate the Fretboard Live Webcast With Erich Andreas July 23rd 2016 Workout: Read Diatonic Harmony (page 5) 1. Takeaways 1. The open

More information

Using Impro- Visor in the Jazz Laboratory

Using Impro- Visor in the Jazz Laboratory Using Impro- Visor in the Jazz Laboratory TI:ME 2012 Presentation Robert M. Keller Harvey Mudd College 5 January 2012 Copyright 2012 by Robert M. Keller. All rights reserved. Motivation Having taught jazz

More information

Music I. Marking Period 1. Marking Period 3

Music I. Marking Period 1. Marking Period 3 Week Marking Period 1 Week Marking Period 3 1 Intro. Piano, Guitar, Theory 11 Intervals Major & Minor 2 Intro. Piano, Guitar, Theory 12 Intervals Major, Minor, & Augmented 3 Music Theory meter, dots, mapping,

More information

Worship Team Expectations

Worship Team Expectations Worship Team Expectations General Expectations: To participate on the worship team, you must consider FaithBridge to be your home church. Being an active member of the FaithBridge family means: Participate

More information

Ear Training Exercises Ted Greene 1975, March 10 and May 8

Ear Training Exercises Ted Greene 1975, March 10 and May 8 Ear Training Exercises Ted Greene 1975, March 10 and May 8 PART 1 Wherever the word sing is used, you might wish to substitute hum or whistle if you prefer to do these. If you do sing the exercises you

More information

Weekly Bass Lessons: Week 7 Walking Bass Line Concepts

Weekly Bass Lessons: Week 7 Walking Bass Line Concepts Weekly Bass Lessons: Week 7 Walking Bass Line Concepts In this weeks lesson we will be focusing on some Walking Bass Line Concepts. The Chord Progression I m using is based on the changes to the popular

More information

5 th Grade Orchestra Curriculum Map

5 th Grade Orchestra Curriculum Map 5 th Grade Orchestra Curriculum Map Music Reading: Student can read and perform the following notes: o Violin G string: G, A, Bb, B, C, C#, D D string: D, Eb, E, F, F#, G, G#, A A string: A, Bb, C, C#,

More information

So far, you ve learned a strumming pattern with all quarter notes and then one with all eighth notes. Now, it s time to mix the two.

So far, you ve learned a strumming pattern with all quarter notes and then one with all eighth notes. Now, it s time to mix the two. So far, you ve learned a strumming pattern with all quarter notes and then one with all eighth notes. Now, it s time to mix the two. In this lesson, you re going to learn: a versatile strumming pattern

More information

COMPLETE GUITAR COURSE

COMPLETE GUITAR COURSE COMPLETE GUITAR COURSE Level 1 Week 1 00:00 Course overview and how to get started 01:50 The journey begins guitar tablature 02:37 How to read tab.pdf 02:46 Frets explained 03:23 How to play an A-minor

More information

Improv Pathways. Table of Contents. CD 1 Track List

Improv Pathways. Table of Contents. CD 1 Track List Introduction & CD Track Lists........ 1-3 Lessons 1-8: The I Chord............ 4-14 Head Charts: I Chord.............. 15-16 Lessons 9-13: The IV Chord........ 17-23 Head Charts: I & IV Chords........

More information

Scale Patterns for Guitar and Why You Need Them

Scale Patterns for Guitar and Why You Need Them Scale Patterns for Guitar and Why You Need Them In this lesson, the topic of scale patterns for guitar will be covered in detail. You ll be both introduced to a number of scale patterns, and taught how

More information

Introduction To The Renaissance Lute for Guitar Players by Rob MacKillop

Introduction To The Renaissance Lute for Guitar Players by Rob MacKillop Introduction To The Renaissance Lute for Guitar Players by Rob MacKillop Today it is not unknown for students to go directly to the lute as their first instrument. However there are still many lute players

More information

Assessment Schedule 2014 Music: Demonstrate knowledge of conventions used in music scores (91094)

Assessment Schedule 2014 Music: Demonstrate knowledge of conventions used in music scores (91094) NCEA Level 1 Music (91094) 2014 page 1 of 7 Assessment Schedule 2014 Music: Demonstrate knowledge of conventions used in music scores (91094) Evidence Statement Question Sample Evidence ONE (a) (i) Dd

More information

COMPLETE GUITAR COURSE

COMPLETE GUITAR COURSE COMPLETE GUITAR COURSE Stage One Week 1 Complete Chapter List- Program length: 28:17 00:00 Course overview and how to get started 01:50 The journey begins guitar tablature 02:37 How to read tab.pdf 02:46

More information

LEVEL FOUR. Please consult our website for the schedule of fees. REQUIREMENTS & MARKING ONE SUPPLEMENTARY 10

LEVEL FOUR. Please consult our website for the schedule of fees.  REQUIREMENTS & MARKING ONE SUPPLEMENTARY 10 LEVEL FOUR Length of the examination: Examination Fee: Co-requisite: 25 minutes Please consult our website for the schedule of fees. www.conservatorycanada.ca None. There is no written examination corequisite

More information

A Revolutionary Method for Individual or Class Instruction

A Revolutionary Method for Individual or Class Instruction GUITAR BOOK 2 for GUITAR A Revolutionary Method for Individual or Class Instruction Aaron STANG Bill PURSE Congratulations on successfully completing Sound Innovations for Guitar Book 1! Sound Innovations

More information

Lesson Plans Contents

Lesson Plans Contents 2 Lesson Plans Contents Introduction... 3 Tuning... 4 MusicPlus Digital Checklist... 5 How to use MusicPlus Digital... 6 MPD Mnemonics explained... 7 Lesson 1 - Learn the Ukulele... 8 Lesson 2 - Strings...

More information

IMPROVISING NOTE ARPEGGIOS PDF

IMPROVISING NOTE ARPEGGIOS PDF IMPROVISING NOTE ARPEGGIOS PDF ==> Download: IMPROVISING NOTE ARPEGGIOS PDF IMPROVISING NOTE ARPEGGIOS PDF - Are you searching for Improvising Note Arpeggios Books? Now, you will be happy that at this

More information