Piano experts? Any tutorial

Discussion in 'Education' started by samsome, Mar 15, 2021.

  1. samsome

    samsome Guest

    So i know the major and minor chords.....and i guess i can learn a few other chords thats not an issue

    but i want to get better at like messing a bit more with individual notes within chords....

    to carry out the song a bit more interesting throughout.....

    do you recommend any way to improve on this? any tutorial or method

    i don't want to sight read at this stage
     
  2.  
  3. Sillytune

    Sillytune Ultrasonic

    Joined:
    Apr 19, 2017
    Messages:
    52
    Likes Received:
    27
    ----
    Bruh.

    First of all you haven't even stated what's exactly that you are looking tutorial for.

    But reading from what you've written, you're interested in music harmony, chord progression/cadences/modulation
    Again everything that's with music harmony

    For that you gotta do a little bit of research :)
     
  4. Smoove Grooves

    Smoove Grooves Audiosexual

    Joined:
    Jan 26, 2019
    Messages:
    5,184
    Likes Received:
    1,962
    It sounds like you should learn the scales that the chords are built from.
    Or rather, the scales that can go with the chords.
    eg. natural, melodic, and harmonic minor scales.
    And the modes of every scale: Ionian, Dorian, Phrygian, Lydian, Mixolydian, Aolian & Locrian.
    Ionian is your major scale, and Aolian is your relative minor.
    Only 5 left to learn!
     
    Last edited: Mar 15, 2021
  5. Moogerfooger

    Moogerfooger Audiosexual

    Joined:
    Jun 11, 2016
    Messages:
    1,447
    Likes Received:
    781
    Barry Harris.... Coltrane sought him out for lessons, the Motown session players took lessons from him & Monk used to live at his house. I can honestly say my life changed after listening to Barry. Amazing thing is he's still alive & gives lessons..


    A brief example of how Barry teaches


    A VERY basic intro to Barry's method


    Clips from his classes at The Hague
    https://www.franselsen.com/?page_id=32

    A nice presentation of Barry's method
     
    • Like Like x 1
    • Useful Useful x 1
    • List
  6. Smoove Grooves

    Smoove Grooves Audiosexual

    Joined:
    Jan 26, 2019
    Messages:
    5,184
    Likes Received:
    1,962
    Ah. Back to chords. Not scales as said above! :mad: But still useful where you are at.
    That above quote was what made me think you meant scale notes, but I guess you mean chords like minor 9ths, 13ths etc.
    So, do you know every inversion of the major and minor chords you know?
    Root, first, and second. And even 3rd depending on the chord.
    The thing is, I can't recommend any tutes because I have never used any!
    I can guarantee that the Barry Harris vids will be of use though, without even watching them!
     
  7. ArticStorm

    ArticStorm Moderator Staff Member

    Joined:
    Jun 7, 2011
    Messages:
    7,847
    Likes Received:
    4,021
    Location:
    AudioSexPro
    I am using this Perfect Ear app on android, its almost free, you have to pay only for extra sounds, when you are tired of MIDI sounds and custom exercises. All exercises are completely free.

    I am doing everyday 20 mins in this app, drills, rhythum stuff, scales, chords, intervals, everything one could need, think im doing this now for 2 weeks and i saw small improvements already.
    Started to use my master keybaord to input and quantisize stuff.

    Ive learned more with that like i did with tutorials over all the 12 years.
    So thats my suggestion.
     
  8. Futurewine

    Futurewine Audiosexual

    Joined:
    Oct 4, 2017
    Messages:
    885
    Likes Received:
    558
    Location:
    Sound City Labs
    here's a script snippet using C# to generate random pattern of notes of your choice..

    just edit, paste, run in online C# compiler here..
    https://repl.it/languages/csharp :shalom:

    PHP:
    using System;

    using System.Collections.Generic;
    using System.Linq;

    class 
    Program {

        
        static 
    void Main(string[] args) {


          var 
    notes = new List<string>
            
          
    // add/delete notes to randomize inside { }, here .. 
          
    {"C","D","E","F","G","A","B"}; // example: c major scale

          // change number of random pattern to generate, here..
          
    var patternAmount 10;

          
    // leave this as is.. havefun..
          
    for(var 0ipatternAmounti++)
          {     
            var 
    randomize notes.OrderBy(=> Guid.NewGuid()).ToList();
            
    Console.Write("Pattern {0}: "i+1);
            
    randomize.ForEach(note => Console.Write("{0} "note));
            
    Console.WriteLine();
          }
        }
    }
    just add/remove notes inside curly braces there..
    PHP:
          // add/delete notes to randomize inside { }, here ..
          
    {"C","D","E","F","G","A","B"};
    and number of pattern to generate, there..
    PHP:
          // change number of random pattern to generate, here..
          
    var patternAmount 10;
    example output:
    Code:
    Pattern 1: A C B F D G E
    Pattern 2: C G E F D A B
    Pattern 3: G B C A D E F
    Pattern 4: F D C E B A G
    Pattern 5: F A C G E D B
    Pattern 6: C D B F E G A
    Pattern 7: B G E C D A F
    Pattern 8: C G B D F A E
    Pattern 9: G A D F B C E
    Pattern 10: E D C G A B F
    :shalom:
     
Loading...
Similar Threads - Piano experts tutorial Forum Date
Piano Library Playthroughs & Reviews by Rabih Rahana Software Reviews and Tutorials Nov 24, 2024
Lightweight Piano Vst Software Nov 23, 2024
Virtual piano: THE OESER 50% off Software News Nov 16, 2024
Free IK Multimedia Brandenburg Piano Software News Sep 23, 2024
"Period-Instrument" Piano Library/VST Software Sep 19, 2024
Loading...