保存先:
書誌詳細
主要な著者: Johannes Hentschel, Yannis Rammos, Markus Neuwirth, Martin Rohrmeier
フォーマット: Recurso digital
言語:
出版事項: Zenodo 2025
主題:
オンライン・アクセス:https://doi.org/10.5281/zenodo.14997004
タグ: タグ追加
タグなし, このレコードへの初めてのタグを付けませんか!
目次:
  • <p>This is a README file for a data repository originating from the <a href="https://github.com/DCMLab/dcml_corpora">DCML corpus initiative</a> and serves as welcome page for both</p> <ul> <li>the GitHub repo <a href="https://github.com/DCMLab/kleine_geistliche_konzerte">https://github.com/DCMLab/kleine_geistliche_konzerte</a> and the corresponding</li> <li>documentation page <a href="https://dcmlab.github.io/kleine_geistliche_konzerte">https://dcmlab.github.io/kleine_geistliche_konzerte</a></li> </ul> <p>For information on how to obtain and use the dataset, please refer to <a href="https://dcmlab.github.io/kleine_geistliche_konzerte/introduction">this documentation page</a>.</p> <h1>Heinrich Schütz – Kleine Geistliche Konzerte (A corpus of annotated scores)</h1> <p>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.</p> <h2>Getting the data</h2> <ul> <li>download repository as a <a href="https://github.com/DCMLab/kleine_geistliche_konzerte/archive/main.zip">ZIP file</a></li> <li>download a <a href="https://specs.frictionlessdata.io/data-package/">Frictionless Datapackage</a> that includes concatenations of the TSV files in the four folders (<code>measures</code>, <code>notes</code>, <code>chords</code>, and <code>harmonies</code>) and a JSON descriptor:<ul> <li><a href="https://github.com/DCMLab/kleine_geistliche_konzerte/releases/latest/download/kleine_geistliche_konzerte.zip">kleine_geistliche_konzerte.zip</a></li> <li><a href="https://github.com/DCMLab/kleine_geistliche_konzerte/releases/latest/download/kleine_geistliche_konzerte.datapackage.json">kleine_geistliche_konzerte.datapackage.json</a></li> </ul> </li> <li>clone the repo: <code>git clone https://github.com/DCMLab/kleine_geistliche_konzerte.git</code></li> </ul> <h2>Data Formats</h2> <p>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:</p> <ul> <li><code>MS3/op08n01swv282_Eile_mich,_Gott,_zu_erretten.mscx</code>: Uncompressed MuseScore 3.6.2 file including the music and annotation labels.</li> <li><code>notes/op08n01swv282_Eile_mich,_Gott,_zu_erretten.notes.tsv</code>: 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)</li> <li><code>measures/op08n01swv282_Eile_mich,_Gott,_zu_erretten.measures.tsv</code>: A table with relevant information about the measures in the score.</li> <li><code>chords/op08n01swv282_Eile_mich,_Gott,_zu_erretten.chords.tsv</code>: A table containing layer-wise unique onset positions with the musical markup (such as dynamics, articulation, lyrics, figured bass, etc.).</li> <li><code>harmonies/op08n01swv282_Eile_mich,_Gott,_zu_erretten.harmonies.tsv</code>: A table of the included harmony labels (including cadences and phrases) with their positions in the score.</li> </ul> <p>Each TSV file comes with its own JSON descriptor that describes the meanings and datatypes of the columns ("fields") it contains, follows the <a href="https://specs.frictionlessdata.io/tabular-data-resource/">Frictionless specification</a>, and can be used to validate and correctly load the described file.</p> <h3>Opening Scores</h3> <p>After navigating to your local copy, you can open the scores in the folder <code>MS3</code> with the free and open source score editor <a href="https://musescore.org">MuseScore</a>. Please note that the scores have been edited, annotated and tested with <a href="https://github.com/musescore/MuseScore/releases/tag/v3.6.2">MuseScore 3.6.2</a>. MuseScore 4 has since been released which renders them correctly but cannot store them back in the same format.</p> <h3>Opening TSV files in a spreadsheet</h3> <p>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 <code>Data --> From Text/CSV</code> or the free alternative <a href="https://www.libreoffice.org/download/download/">LibreOffice Calc</a>. Other than that, TSV data can be loaded with every modern programming language.</p> <h3>Loading TSV files in Python</h3> <p>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 <code>pip install -U ms3</code> (requires Python 3.10 or later) you'll be able to load any TSV like this:</p> <pre><code>import ms3 labels = ms3.load_tsv("harmonies/op08n01swv282_Eile_mich,_Gott,_zu_erretten.harmonies.tsv") notes = ms3.load_tsv("notes/op08n01swv282_Eile_mich,_Gott,_zu_erretten.notes.tsv") </code></pre> <h2>Version history</h2> <p>See the <a href="https://github.com/DCMLab/kleine_geistliche_konzerte/releases">GitHub releases</a>.</p> <h2>Questions, Suggestions, Corrections, Bug Reports</h2> <p>Please <a href="https://github.com/DCMLab/kleine_geistliche_konzerte/issues">create an issue</a> and/or feel free to fork and submit pull requests.</p> <h2>Cite as</h2> <blockquote> <p>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 }}</p> </blockquote> <h2>License</h2> <p>Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>).</p>