Recent Releases of kleine_geistliche_konzerte

kleine_geistliche_konzerte - First public release

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.

Heinrich Schütz – Kleine Geistliche Konzerte (A corpus of annotated scores)

These "Small Sacred Concertos" are not virtuosic solo instrumental pieces with orchestral support like most concertos we know. Rather, in early-seventeenth-century repertoire, "Concerto" means a short piece of indeterminate form for some combination of voices and instruments: a mixture of contrasting timbres in concert. Schütz, whose music arguably sits directly on the cusp of Renaissance and Baroque, found an immense variety of musical possibilities in this genre, incorporating everything from virtuosic solo arias and imitative modal counterpoint to dramatic choruses. This is some of the oldest music represented in the DCML corpora, so the harmonic successions found in the annotations do not often reflect what we would today think of as conventional tonal syntax. There may be significant potential for future research in quantitative investigation of the ways expected chord succession changed in the century or so after these pieces were completed.

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 concerto, Eile mich, Gott, zu erretten, of the first volume, Op. 8 has the following files:

  • MS3/op08n01swv282_Eile_mich,_Gott,_zu_erretten.mscx: Uncompressed MuseScore 3.6.2 file including the music and annotation labels.
  • notes/op08n01swv282_Eile_mich,_Gott,_zu_erretten.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/op08n01swv282_Eile_mich,_Gott,_zu_erretten.measures.tsv: A table with relevant information about the measures in the score.
  • chords/op08n01swv282_Eile_mich,_Gott,_zu_erretten.chords.tsv: A table containing layer-wise unique onset positions with the musical markup (such as dynamics, articulation, lyrics, figured bass, etc.).
  • harmonies/op08n01swv282_Eile_mich,_Gott,_zu_erretten.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 or later) you'll be able to load any TSV like this:

```python import ms3

labels = ms3.loadtsv("harmonies/op08n01swv282Eilemich,Gott,zuerretten.harmonies.tsv") notes = ms3.loadtsv("notes/op08n01swv282Eilemich,Gott,zuerretten.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). Heinrich Schütz – Kleine Geistliche Konzerte (A corpus of annotated scores) [Data set]. Zenodo. https://doi.org/{{ concept_doi }}

License

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


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

kleine_geistliche_konzerte - Metadata (will add README on same PR)

  • Metadata is updated and written
  • Score prelims are cleaned where possible
  • Some file issues: SWV335 and some others are missing anywhere for the prelim fields to write: I was concerned adding this manually would cause data anomalies SWV329 and others had layout atrocities already Some anomalies throughout e.g. redundant clefs that nonetheless don't impact extracted data quality

Since at this point the metadata and extracted dataset files are fine, I don't think these are pressing items but are worth calling attention to as future issues


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

kleine_geistliche_konzerte - Eliminate warnings concerning op08 and op09

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

Several encoding errors plague this repository, resulting in warnings that persist as noted in the Issues linked.

Figured bass had in the past often been added to the lyrics field, resulting in all kinds of randomness.

As per the README, scores have indeed been used from that link, but not yet added to the repo as pdfs.

All other warnings have been dealt with.


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