Tuesday, November 11, 2008
Thursday, July 27, 2006
Search, forum, audio
I'm looking into phpBB to add a forum to my site. Looks easy enough, and flexible.
I added an Audio page to THoTH. So now users can not only see music notation for a song or musical exercise, but they can hear it. My plan is to record some of the musical exercises and make mp3 files available to THoTH users. Haven't figured out exactly how to distribute them yet. I think a zip package that would install the files and update the database through a script.
Sunday, April 23, 2006
THoTH 2.0 Released
Thursday, March 30, 2006
THoTH song form additions
I've decided to add two tabs to the song form: Lessons, and Notation.
Lessons will contain a list of lesson files. Selecting one and clicking the View button will bring up the PDF. At first it will be my lesson PDF files. But the THoTH user will be able to add his own lesson files to the list. This might be helpful to music teachers and students.
The Notation tab will contain a list of notation files (Finale, Sibelius, Notion, etc.) I'll provide a few notation files for the tunes I've provided lessons for, such as "Blue Bossa" and "Body and Soul". Since this is for educational purposes, I think that will fall under the "Fair Use" section of the copyright law. The THoTH user will be able to add his own notation files to the list. Each row in the list, in addition to the file name, will have the name of the notation program that created the file, so selecting a file and clicking View will open the file in the appropriate program (assuming the program can be launched with a file name in the command line).
Sunday, March 19, 2006
THoTH ready for next Beta
So now the user can add a tune record in THoTH, fill in the name of the MusicXML file, and run an analysis. THoTH will display the analysis, save the analysis to the database, and update the tune record.
Once I've add more MusicXML files, run more analyses, and added more results to the analysis table, I'll be able to to meta-analysis across tunes. Like "what is the most common measure for the appearance of a IVm6 chord?"
Saturday, December 17, 2005
THoTH analysis data-driven
So the methodology is in place. No it's just a matter of adding the other rules to the database. That will be a couple of hours work. At that point I should be able to parse a MusicXML file and output the analysis.
Firebird's selectable stored procedure made this task pretty simple.
Saturday, December 10, 2005
Logical
12/10/2005
I've been working on THoTH, translating the program logic into database logic. In the original program, all the rules for chord-scales were in one large "IF" statement, and now I'm moving them into the database. For readers who are confused by this, all it really means is that the rules are being moved from a text file to a database. The rules are based on Bill Leavitt's approach to chord-scale analysis, as he expressed them in his Modern Method for Guitar series.
As I was working on this, I was thinking, "What would Bill think of all this -- translating his chord-scale analysis into computer code?" He never had any involvement with personal computers -- they came into common use very near the end of his life. But he would have liked the logic of the computer. Bill was a very logical guy. His analysis was systematic, which is why it translates so well to computer logic. But Bill also understood exceptions. He used to say, "There is no such thing as 'never' or 'always' in music." I thought of that as I wrote the logic for transposing B-natural up a fifth. In most cases, if the root in question is named with a sharp, when we transpose up a fifth, we name with a sharp: up a fifth from C# is G#, not Ab. And if the root is natural, up a fifth is natural: up a fifth from A is E, not D##. But up a fifth from B is F#. We do this intuitively. But computers are not intuitive; we must tell them about the exceptions.