Recent Releases of frescobaldi_fiori_musicali

frescobaldi_fiori_musicali - Updated metadata

This is a README file for a data repository originating from the DCML corpus initiative and serves as welcome page for both

For information on how to obtain and use the dataset, please refer to this documentation page.

Girolamo Frescobaldi (1583-1643) – Fiori Musicali, op. 12 (1635)

Frescobaldi, sometimes organist at St. Peter's Basilica in Rome, composed Fiori Musicali near the beginning of the last of these appointments, under the patronage of Pope Urban VIII. These three organ masses, using borrowed chant melodies in the Renaissance practice, are fairly early examples of a genre that would become much more common in the Baroque, and were regarded for centuries afterward as examples of technical perfection in composition. Johann Joseph Fux incorporated portions of this work into his Gradus ad Parnassum as examples of supreme contrapuntal perfection. Our annotations show the intricacy of harmonic successions created by Frescobaldi's elegant modal counterpoint.

Getting the data

Data Formats

Each piece in this corpus is represented by five files with identical name prefixes, each in its own folder. For example, the first piece, Toccata avanti la Messa della Domenica has the following files:

  • MS3/12.01_Toccata_avanti_la_Messa_della_Domenica.mscx: Uncompressed MuseScore 3.6.2 file including the music and annotation labels.
  • notes/12.01_Toccata_avanti_la_Messa_della_Domenica.notes.tsv: A table of all note heads contained in the score and their relevant features (not each of them represents an onset, some are tied together)
  • measures/12.01_Toccata_avanti_la_Messa_della_Domenica.measures.tsv: A table with relevant information about the measures in the score.
  • chords/12.01_Toccata_avanti_la_Messa_della_Domenica.chords.tsv: A table containing layer-wise unique onset positions with the musical markup (such as dynamics, articulation, lyrics, figured bass, etc.).
  • harmonies/12.01_Toccata_avanti_la_Messa_della_Domenica.harmonies.tsv: A table of the included harmony labels (including cadences and phrases) with their positions in the score.

Each TSV file comes with its own JSON descriptor that describes the meanings and datatypes of the columns ("fields") it contains, follows the Frictionless specification, and can be used to validate and correctly load the described file.

Opening Scores

After navigating to your local copy, you can open the scores in the folder MS3 with the free and open source score editor MuseScore. Please note that the scores have been edited, annotated and tested with MuseScore 3.6.2. MuseScore 4 has since been released which renders them correctly but cannot store them back in the same format.

Opening TSV files in a spreadsheet

Tab-separated value (TSV) files are like Comma-separated value (CSV) files and can be opened with most modern text editors. However, for correctly displaying the columns, you might want to use a spreadsheet or an addon for your favourite text editor. When you use a spreadsheet such as Excel, it might annoy you by interpreting fractions as dates. This can be circumvented by using Data --> From Text/CSV or the free alternative LibreOffice Calc. Other than that, TSV data can be loaded with every modern programming language.

Loading TSV files in Python

Since the TSV files contain null values, lists, fractions, and numbers that are to be treated as strings, you may want to use this code to load any TSV files related to this repository (provided you're doing it in Python). After a quick pip install -U ms3 (requires Python 3.10) you'll be able to load any TSV like this:

```python import ms3

labels = ms3.loadtsv("harmonies/12.01ToccataavantilaMessadellaDomenica.harmonies.tsv") notes = ms3.loadtsv("notes/12.01ToccataavantilaMessadellaDomenica.notes.tsv"") ```

Version history

See the GitHub releases.

Questions, Suggestions, Corrections, Bug Reports

Please create an issue and/or feel free to fork and submit pull requests.

Cite as

Johannes Hentschel, Yannis Rammos, Markus Neuwirth, & Martin Rohrmeier. (2025). Girolamo Frescobaldi (1583-1643) – Fiori Musicali, op. 12 (1635) [Data set]. Zenodo. https://doi.org/10.5281/zenodo.14984864

License

Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0).


Published by github-actions[bot] 12 months ago

frescobaldi_fiori_musicali - Eliminate Warnings

This is a README file for a data repository originating from the DCML corpus initiative and serves as welcome page for both

For information on how to obtain and use the dataset, please refer to this documentation page.

Girolamo Frescobaldi (1583-1643) – Fiori Musicali, op. 12 (1635)

Frescobaldi, sometimes organist at St. Peter's Basilica in Rome, composed Fiori Musicali near the beginning of the last of these appointments, under the patronage of Pope Urban VIII. These three organ masses, using borrowed chant melodies in the Renaissance practice, are fairly early examples of a genre that would become much more common in the Baroque, and were regarded for centuries afterward as examples of technical perfection in composition. Johann Joseph Fux incorporated portions of this work into his Gradus ad Parnassum as examples of supreme contrapuntal perfection. Our annotations show the intricacy of harmonic successions created by Frescobaldi's elegant modal counterpoint.

Getting the data

Data Formats

Each piece in this corpus is represented by five files with identical name prefixes, each in its own folder. For example, the first piece, Toccata avanti la Messa della Domenica has the following files:

  • MS3/12.01_Toccata_avanti_la_Messa_della_Domenica.mscx: Uncompressed MuseScore 3.6.2 file including the music and annotation labels.
  • notes/12.01_Toccata_avanti_la_Messa_della_Domenica.notes.tsv: A table of all note heads contained in the score and their relevant features (not each of them represents an onset, some are tied together)
  • measures/12.01_Toccata_avanti_la_Messa_della_Domenica.measures.tsv: A table with relevant information about the measures in the score.
  • chords/12.01_Toccata_avanti_la_Messa_della_Domenica.chords.tsv: A table containing layer-wise unique onset positions with the musical markup (such as dynamics, articulation, lyrics, figured bass, etc.).
  • harmonies/12.01_Toccata_avanti_la_Messa_della_Domenica.harmonies.tsv: A table of the included harmony labels (including cadences and phrases) with their positions in the score.

Each TSV file comes with its own JSON descriptor that describes the meanings and datatypes of the columns ("fields") it contains, follows the Frictionless specification, and can be used to validate and correctly load the described file.

Opening Scores

After navigating to your local copy, you can open the scores in the folder MS3 with the free and open source score editor MuseScore. Please note that the scores have been edited, annotated and tested with MuseScore 3.6.2. MuseScore 4 has since been released which renders them correctly but cannot store them back in the same format.

Opening TSV files in a spreadsheet

Tab-separated value (TSV) files are like Comma-separated value (CSV) files and can be opened with most modern text editors. However, for correctly displaying the columns, you might want to use a spreadsheet or an addon for your favourite text editor. When you use a spreadsheet such as Excel, it might annoy you by interpreting fractions as dates. This can be circumvented by using Data --> From Text/CSV or the free alternative LibreOffice Calc. Other than that, TSV data can be loaded with every modern programming language.

Loading TSV files in Python

Since the TSV files contain null values, lists, fractions, and numbers that are to be treated as strings, you may want to use this code to load any TSV files related to this repository (provided you're doing it in Python). After a quick pip install -U ms3 (requires Python 3.10) you'll be able to load any TSV like this:

```python import ms3

labels = ms3.loadtsv("harmonies/12.01ToccataavantilaMessadellaDomenica.harmonies.tsv") notes = ms3.loadtsv("notes/12.01ToccataavantilaMessadellaDomenica.notes.tsv"") ```

Version history

See the GitHub releases.

Questions, Suggestions, Corrections, Bug Reports

Please create an issue and/or feel free to fork and submit pull requests.

Cite as

Johannes Hentschel, Yannis Rammos, Markus Neuwirth, & Martin Rohrmeier. (2025). Girolamo Frescobaldi (1583-1643) – Fiori Musicali, op. 12 (1635) [Data set]. Zenodo. https://doi.org/{{ conceptdoi }}_

License

Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0).


Published by github-actions[bot] 12 months ago

frescobaldi_fiori_musicali - Finalizing metadata and readme

https://op-musicology.epfl.ch/projects/distant-listening-corpus/work_packages/1379/

Annotators, Reviewers, and Harmony_version data are completely missing and could not be populated based on the current contents of the README. Annotations appear above the staff -- is this something we still endorse?


Published by github-actions[bot] about 1 year ago

frescobaldi_fiori_musicali - Updated scores to MuseScore 3.6.2 and moved annotations to RNA layer

Also, the duplicate score of 12.16 was removed (keeping the contained annotations in an additional harmonies TSV file).

The currently invalid global key ephrygian was renamed to e.phrygian.


Published by github-actions[bot] over 2 years ago