Music Theory

Question types ::: qtype_musictheory
Maintained by Eric BrissonEric Brisson
Question type supporting several exercises for music theory instruction.
Latest release:
488 sites
96 downloads
43 fans
Current versions available: 3
This question type is designed for music theory instruction. It currently supports the following exercises:

  1. Note writing: The respondent is asked to enter a given note on the staff.
  2. Note identification: The response is asked to identify a give note.
  3. Keyboard Input: The respondent is asked to select a given key on the piano keyboard.
  4. Key signature writing: The respondent is asked to enter a given key signature.
  5. Key signature identification: The respondent is asked to identify a given major or minor key signature.
  6. Interval writing: The respondent is asked to enter a given interval above or below a given note.
  7. Interval identification: The respondent is asked to identify the quality and size of a given interval.
  8. Scale writing: The respondent is asked to enter a given scale.
  9. Scale identification: The respondent is asked to identify a given scale.
  10. Chord quality writing: Given a chord root and quality (e.g. 'G major', 'D minor'), the respondent is asked to enter corresponding chord on the staff.
  11. Chord quality identification: The respondent is asked to identify the quality of a given chord (e.g. 'major', 'minor', etc.).
  12. Harmonic function writing: The respondent is asked to enter a given harmonic function in a given key (e.g. 'IV in D minor').
  13. Harmonic function identification: The respondent is asked to identify the harmonic function of a given chord in a given key.
When Javascript is enabled, answers are entered and displayed in an HTML5 graphical user interface, using two separate Javascript components (Music Theory GUI and Keyboard Input) packaged as YUI modules. All the exercises above are fully functional without Javascript, except for 1) Note writing, 2) Note identification and 3) Keyboard Input.

Each of the exercises above (except for #3, Keyboard Input) can also be configured so that a specific question is randomly generated upon starting an activity. The randomization can be based on a set of parameters configured when the question is created or edited. For example, it is possible to configure an interval writing question so that it asks for a perfect fifth above a randomly chosen given note. This randomization process, configured during question creation, alleviates the need to create very large question banks, and can be particularly useful for interval and chord/harmonic function questions, given that the number of possible questions for these exercises is very large.

I made a choice to create a framework where the correctness of a given question is automatically computed, without having to enter individual answers during question creation. A framework for adding various grading strategies for each exercise is also in place, and is currently used for the scale writing exercise (currently allowing either an "all-or-nothing" grading strategy, or a "partial grade" approach where each correct note is given partial credit).

This plugin was developed with the hope of creating a music question type that would support a wide range of music theory exercises, using a single graphical user interface that is flexible enough to support such exercises. It is hoped that it will facilitate further development and Moodle server maintenance.

Special thanks to Jay Huber for his very significant contributions to the existing standalone Moodle music question types (Music Key Signature, Music Interval and Music Scale), and for inspiring me to develop this new question type.

Many thanks to colleagues in Winona State University's TLT and IT departments for their support of my Moodle development efforts.

Screenshots

Screenshot #0
Screenshot #1
Screenshot #2
Screenshot #3

Contributors

Eric Brisson
Eric Brisson (Lead maintainer): Question type author
Please login to view contributors details and/or to contact them

Comments RSS

Comments

  • Eric Brisson
    Sat, 24 Mar 2018, 6:24 AM
    Coordinación Tic: Regarding your question - Yes, I am currently supporting and maintaining this plugin.
    Best,
    Eric
  • sean young
    Sun, 10 June 2018, 4:36 AM
    Hi Eric, thanks for this fantastic plugin.

    I'm just wondering whether it would be possible to have a feature where a user inputs a series of given notes, which the plugin checks against a given answer provided when a question is created?

    I'm trying to find a way of creating simple music dictation tasks using Moodle, and wondered how easy it would be to implement within your plugin?

    Best,
    Sean
  • Marco Renoldi
    Tue, 28 Aug 2018, 5:37 PM
    Hi Eric
    the plugin is really good. I wondered if it would be possible to have the solfege syllables (do re mi fa sola la si) instead of the letters.
    Marco
  • Marco Renoldi
    Wed, 29 Aug 2018, 3:01 PM
    Eric... nevermind.. I'm translating the plugin into italian
  • Eric Brisson
    Sun, 23 Sept 2018, 12:39 AM
    Hi Sean,

    Thank you for your note! I'm sorry for my very late reply. It might be possible to create an additional exercise for the purpose that you mentioned, but it would be very limited from a rhythmic standpoint (essentially, with the current note input interface, all notes would be whole notes, and there wouldn't be support for rhythm [note values, meter, barlines, etc.]).

    I unfortunately don't anticipate having enough time to devote to implement this feature, although it's an exercise that I have considered adding in the past and that I think would add flexibility for non-standard questions. Adding support for rhythm and meter would be a very significant upgrade to the note input interface, which I definitely don't anticipate having enough time to implement in the next few years. I'm sorry that I can't be of more help with your question at the moment.

    Best,
    Eric
  • Eric Brisson
    Sun, 23 Sept 2018, 12:43 AM
    Hi Marco,

    Thank you so much for your translation - I appreciate it very much!

    Eric
  • Eric Brisson
    Sun, 23 Sept 2018, 1:15 AM
    I just released version 1.3.5 for Moodle 3.5+ [2018092200].

    If you were already using the previous version (1.3.5 for Moodle 3.1+ [2017022100]) in Moodle 3.5, I recommend upgrading to avoid any potential incompatibility during question creation/edit.

    I have made an adjustment to this version that will facilitate upgrades to future Moodle releases by making it less dependent on possible changes to the Moodle question engine.

    Many thanks to all translation contributors!

    Best,
    Eric
  • Jerry Lau
    Sat, 6 Oct 2018, 7:26 AM
    I ran a check for foreign violation keys and your table came up as a violation .. it says

    "Foreign key questionid on table qtype_musictheory points to a non-existent table questions." There is no query presented like the others.

    Running Moodle 3.4.7+ on Redhat 7.1 enterprise 64-bit, php 7.1.8 with MySQL 5.7.21-community

    Any thoughts on how to fix this?

    thanks
  • Eric Brisson
    Mon, 26 Nov 2018, 7:30 AM
    Hi Jerry,

    I'm sorry for my late reply to your question.

    This error is happening because the xml file used to create the database table for the plugin has an incorrect foreign key reference to a non-existent table "questions" (plural) - the reference should refer to the table "question" instead (singular).

    Since referential integrity isn't currently enforced at the database level in Moodle, this error shouldn't have any effect on the plugin's behavior, but if you still want to fix it on your Moodle instance (to avoid the error in the xmldb editor), you could edit the following line in /question/type/musictheory/db/install.xml ( https://github.com/brissone/moodle-qtype_musictheory/blob/MOODLE_35_STABLE/db/install.xml ):

    On line 31: replace REFTABLE="questions" with REFTABLE="question"

    This fix should allow you to check for foreign key violations in the xmldb editor.

    I am planning to release a new version in the near future (hopefully, over winter break) that will fix this issue, as well as other minor issues. The new version will automatically fix this issue.

    Please let me know if you have any other questions.

    Best,
    Eric
  • Eric Brisson
    Tue, 16 July 2019, 9:10 PM
    I just released version 1.4.2 for Moodle 3.5+ [2019071600].

    This version includes:

    - GDPR compatibility (the plugin does not store any personal data)
    - A minor bug fix (https://github.com/brissone/moodle-qtype_musictheory/issues/28)
    - A fix for the xmldb editor foreign key violation check ("Foreign key questionid on table qtype_musictheory points to a non-existent table questions.")
    - A number of code format adjustments to ensure additional compatibility with Moodle's code checker. I will work on the remaining code prechecks in a future version.

    Many thanks, again, to all translation contributors!

    Best,
    Eric
  • Jeff M
    Mon, 5 Aug 2019, 6:36 AM
    Hello, Eric! Your music theory plugin looks amazing. I installed it in my Moodle 3.7.1 site, and got all the correct success messages... but when I go to "add an activity or resourse" in a course, there's no option in the list for any new question types. sad Do you have any idea what I'm doing wrong?
  • Eric Brisson
    Tue, 6 Aug 2019, 5:39 AM
    Hi Jeff,

    From what you described, it seems like the question type installed successfully. To test it, you would first need to create a quiz in "Add an activity or resource", and then add a question on the quiz editing page. When creating a new question for the quiz, you should see the "Music theory" question type as a possible option (along with the standard Moodle question types such as short answer, true/false, etc.). This link may be helpful for information on building quizzes in Moodle: https://docs.moodle.org/37/en/Building_Quiz . I hope this is helpful - don't hesitate to let me know if you have any other questions.

    Best,
    Eric
  • Daniel Liang
    Thu, 10 Oct 2019, 10:45 AM
    Hi Eric,
    I really like your plugin. It helps me a lot. I wonder if you can add one more flexible question type for music dictation or theory. It will not limit the answer to be certain chords or scales. It allow the teacher manually input the answer in the staff or from a series drop down menus. For example, the teacher can select three notes from a drop down menu, select "chord", and type in C, F, A as the answer. The teacher can manually type in the question text. With that flexible question type, teachers can easily add seventh chords, inversions and uncommon scales. Please also add an option to show the first note. This option is very useful for questions like "enter a chord above a given note." as you did in Interval writing.
  • Juliane Braunstein
    Wed, 23 Oct 2019, 9:14 PM
    Hi Eric,
    this plugin looks amazing smile
    Is it possible to translate it into German? The English-skills of my 10-14 year old students are not good enough yet to manage these questions in a foreign language wink
  • Eric Brisson
    Thu, 24 Oct 2019, 8:25 PM
    Hi Daniel,

    Adding a more generic question subtype as you described is something that I have considered several times and that I am still contemplating. I do think that it could provide a useful feature for the purpose of asking less conventional questions. I will continue to keep it in my plans - I may have some time next summer to design a first draft. I'm glad to hear that the plugin is useful for you!

    Best,
    Eric
Please login to post comments