From 1fd9fdc92744ed48aaee4a31116aff0e24f7387a Mon Sep 17 00:00:00 2001 From: Augustin Braud <127300341+GusBraud@users.noreply.github.com> Date: Mon, 21 Jul 2025 11:08:08 +0200 Subject: [PATCH 1/5] Update mei_metadata_processor.py --- mei_tools/mei_metadata_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mei_tools/mei_metadata_processor.py b/mei_tools/mei_metadata_processor.py index cc168dc..4b3155b 100644 --- a/mei_tools/mei_metadata_processor.py +++ b/mei_tools/mei_metadata_processor.py @@ -109,7 +109,7 @@ def remove_ids_from_head_children(element): # pubStmt pubStmt_el = fileDesc_el.find('mei:pubStmt', namespaces=ns) pubStmt_el.clear() - pubStmt_el.append(etree.fromstring("""Gesualdo Online https://ricercardatalab.cesr.univ-tours.fr/fr/projects/3/""")) + pubStmt_el.append(etree.fromstring("""Gesualdo Online""")) for distributor in matching_dict['Copyright_Owner'].split('|'): pubStmt_el.append(etree.fromstring(f'{distributor}')) From e0a5eac11b43ee63ee48680e0db80d89d7205ca6 Mon Sep 17 00:00:00 2001 From: Augustin Braud <127300341+GusBraud@users.noreply.github.com> Date: Mon, 21 Jul 2025 11:52:57 +0200 Subject: [PATCH 2/5] Update mei_metadata_processor.py --- mei_tools/mei_metadata_processor.py | 563 ++++++++++++++++++---------- 1 file changed, 373 insertions(+), 190 deletions(-) diff --git a/mei_tools/mei_metadata_processor.py b/mei_tools/mei_metadata_processor.py index 4b3155b..b760431 100644 --- a/mei_tools/mei_metadata_processor.py +++ b/mei_tools/mei_metadata_processor.py @@ -40,200 +40,383 @@ def __init__(self, input_folder=None, output_folder=None, namespace=None, verbos self.failed_updates = 0 # now the functions - def apply_metadata(self, mei_path, matching_dict, output_folder): - """Updates metadata in an MEI file based on the provided matching dictionary. - + def apply_metadata(self, mei_file_path, metadata_dict, output_folder): + """ + Applies metadata from a dictionary to an MEI file. + Args: - mei_path (str): Path to the MEI file to update - matching_dict (dict): Dictionary containing metadata values to apply - output_folder (str): Path to the output folder for the updated file - - Returns: - str: Formatted XML string of the updated MEI file + mei_file_path (str): The path to the input MEI file. + metadata_dict (dict): A dictionary containing the metadata. + output_folder (str): The folder to save the updated MEI file. """ - # get the file and build revised name - full_path = os.path.basename(mei_path) - basename = os.path.splitext(os.path.basename(full_path))[0] - revised_name = basename + "_rev.mei" - print('Getting ' + basename) - + if metadata_dict is None: + print(f"No metadata found for {os.path.basename(mei_file_path)}. Skipping.") + return + + print(f"Getting {os.path.basename(mei_file_path)}") + + parser = etree.XMLParser(remove_blank_text=True) try: - # Parse the MEI file using lxml.etree - mei_doc = etree.parse(mei_path) - root = mei_doc.getroot() - except etree.ParseError as e: - print(f"Error parsing {mei_path}: {e}") - return f"Error: Could not parse {mei_path}. Make sure it contains valid XML." - - # define namespace for mei - ns = {'mei': 'http://www.music-encoding.org/ns/mei'} + tree = etree.parse(mei_file_path, parser) + root = tree.getroot() + except Exception as e: + print(f"Error parsing MEI file {mei_file_path}: {e}") + return - # new ID removal - - def remove_ids_from_head_children(element): - # Remove xml:id if present - attrib_key = "{http://www.w3.org/XML/1998/namespace}id" - if attrib_key in element.attrib: - del element.attrib[attrib_key] - - # Recursively process children - for child in element: - remove_ids_from_head_children(child) - - # already doing this in the music feature tool with optional module - # Revert staffDef/label to staffDef/@label - # staffDefs = root.findall('.//mei:staffDef', namespaces=ns) - # for staffDef in staffDefs: - # label = staffDef.find('mei:label', namespaces=ns) - # if label is not None and label.text: - # staffDef.set('label', label.text) - - # work on fileDesc - head_el = root.find('mei:meiHead', namespaces=ns) - fileDesc_el = head_el.find('mei:fileDesc', namespaces=ns) - - # title + ns = {'mei': 'http://www.music-encoding.org/ns/mei/4.0'} + + # Find or create the element + mei_head_el = root.find('mei:meiHead', namespaces=ns) + if mei_head_el is None: + mei_head_el = etree.Element(etree.QName(ns['mei'], 'meiHead'), nsmap=ns) + root.insert(0, mei_head_el) # Insert at the beginning + + # Find or create the element + fileDesc_el = mei_head_el.find('mei:fileDesc', namespaces=ns) + if fileDesc_el is None: + fileDesc_el = etree.Element(etree.QName(ns['mei'], 'fileDesc'), nsmap=ns) + mei_head_el.append(fileDesc_el) + + # Find or create the element titleStmt_el = fileDesc_el.find('mei:titleStmt', namespaces=ns) - titleStmt_el.clear() - title_el = etree.SubElement(titleStmt_el, 'title') - title_el.text = matching_dict['Title'] - - # respStmt_el = etree.SubElement(titleStmt_el, 'respStmt') - # editors - # editors = matching_dict['Editor'].split(' | ') - # orcids = matching_dict['Editor_ORCID'].split(' | ') - # for editor, orcid in zip(editors, orcids): - # editor_el = etree.Element('persName', {'role': 'editor', 'auth': 'ORCID', 'auth.uri': orcid}) - # editor_el.text = editor.strip() - - # pubStmt + if titleStmt_el is None: + titleStmt_el = etree.Element(etree.QName(ns['mei'], 'titleStmt'), nsmap=ns) + fileDesc_el.append(titleStmt_el) + + # Add or update the element + title_el = titleStmt_el.find('mei:title', namespaces=ns) + if title_el is None: + title_el = etree.Element(etree.QName(ns['mei'], 'title'), nsmap=ns) + titleStmt_el.append(title_el) + title_el.text = metadata_dict.get('Title', '') + + # Add or update the <composer> element + composer_el = titleStmt_el.find('mei:composer', namespaces=ns) + if composer_el is None: + composer_el = etree.Element(etree.QName(ns['mei'], 'composer'), nsmap=ns) + titleStmt_el.append(composer_el) + + persName_el = composer_el.find('mei:persName', namespaces=ns) + if persName_el is None: + persName_el = etree.Element(etree.QName(ns['mei'], 'persName'), nsmap=ns) + composer_el.append(persName_el) + persName_el.text = metadata_dict.get('Composer_Name', '').replace('#265 ', '') # Remove '#265 ' prefix + + # Add or update @role="composer" to <persName> if not present + if 'role' not in persName_el.attrib: + persName_el.set('role', 'composer') + + # Add or update @assoc to <persName> with RDL_ID + rdl_id = metadata_dict.get('RDL_ID', '') + if rdl_id: + persName_el.set('assoc', f"https://ricercardatalab.cesr.univ-tours.fr/works/{rdl_id}/") + + # Add or update @sameas with VIAF and BNF IDs + sameas_uris = [] + composer_viaf = metadata_dict.get('Composer_VIAF', '') + if composer_viaf: + sameas_uris.append(composer_viaf) + composer_bnf = metadata_dict.get('Composer_BNF_ID', '') + if composer_bnf: + sameas_uris.append(composer_bnf) + + if sameas_uris: + persName_el.set('sameas', ' '.join(sameas_uris)) + + # Find or create the <pubStmt> element pubStmt_el = fileDesc_el.find('mei:pubStmt', namespaces=ns) - pubStmt_el.clear() - pubStmt_el.append(etree.fromstring("""<publisher>Gesualdo Online""")) - - for distributor in matching_dict['Copyright_Owner'].split('|'): - pubStmt_el.append(etree.fromstring(f'<distributor>{distributor}</distributor>')) - - current_date = datetime.now().isoformat() - pubStmt_el.append(etree.fromstring(f'<date isodate="{current_date}"/>')) - pubStmt_el.append(etree.fromstring(f'<availability>{matching_dict["Rights_Statement"]}</availability>')) - - # appInfo - appInfo_el = head_el.find('mei:encodingDesc/mei:appInfo', namespaces=ns) - if appInfo_el is not None: - # Remove all existing application tags - for app in appInfo_el.findall('mei:application', namespaces=ns): - appInfo_el.remove(app) - - # Add the new application tag - application = """<application version="2.0.0"> - <name>MEI Updater 2025</name> - </application>""" - appInfo_el.append(etree.fromstring(application)) - - - # work data - worklist_el = head_el.find('mei:workList', namespaces=ns) - work_el = worklist_el.find('mei:work', namespaces=ns) - # title - work_el.find('mei:title', namespaces=ns).text = matching_dict['Title'] - # composer (using persName structure) - composer_el = etree.Element('persName', { - 'role': 'composer', - 'auth': 'VIAF', - 'auth.uri': matching_dict['Composer_VIAF'] - }) - composer_el.text = matching_dict['Composer_Name'] - etree.SubElement(work_el, 'composer').append(deepcopy(composer_el)) - - classification = f'<classification><termList><term>{matching_dict["Genre"].strip()}</term></termList></classification>' - work_el.append(etree.fromstring(classification)) - - # Create a new manifestationList without any attributes - new_manifestation_list = etree.Element("manifestationList") - - # Create the manifestation element - manifestation = etree.SubElement(new_manifestation_list, "manifestation") - - # Add titleStmt with proper structure - title_stmt = etree.SubElement(manifestation, "titleStmt") - title = etree.SubElement(title_stmt, "title") - title.text = matching_dict['Source_Title'] - - # Add pubStmt with proper structure - pub_stmt = etree.SubElement(manifestation, "pubStmt") - publisher = etree.SubElement(pub_stmt, "publisher") - pers_name = etree.SubElement(publisher, "persName") - pers_name.set("auth", "VIAF") - pers_name.set("auth.uri", matching_dict['Publisher_1_VIAF']) - pers_name.text = matching_dict['Source_Publisher_1'] - - # Add date element - date = etree.SubElement(pub_stmt, "date") - date.text = matching_dict['Source_Date'] - - # Add physLoc with proper structure - phys_loc = etree.SubElement(manifestation, "physLoc") - repository = etree.SubElement(phys_loc, "repository") - corp_name = etree.SubElement(repository, "corpName") - corp_name.text = matching_dict['Source_Institution'] - - # Add shelfmark with proper structure - identifier = etree.SubElement(repository, "identifier") - identifier.text = matching_dict['Source_Shelfmark'] - - # Add geogName with proper structure - geog_name = etree.SubElement(repository, "geogName") - geog_name.text = matching_dict['Source_Location'] - - # Append to head element instead of root - head_el.append(new_manifestation_list) - - # check for second publisher - if len(matching_dict['Source_Publisher_2'].strip()) > 1: - # add second publisher - publisher.append( - etree.fromstring(f'<persName auth="VIAF" auth.uri="{matching_dict["Publisher_2_VIAF"]}">{matching_dict["Source_Publisher_2"]}</persName>') - ) - - # pub date - date.text = matching_dict['Source_Date'] - - # now we REMOVE the ids from anywhere in the head - head_el = root.find('mei:meiHead', namespaces=ns) - if head_el is not None: - # Skip root meiHead but process its children - for child in head_el: - remove_ids_from_head_children(child) - - # save the result - output_file_path = os.path.join(output_folder, revised_name) - - # Get the MEI namespace - mei_ns = "http://www.music-encoding.org/ns/mei" - - # Modify the existing root element instead of creating a new one - root.attrib["meiversion"] = root.get("meiversion", "4.0.0") - - # Remove any existing xml:id if it exists - if "{http://www.w3.org/XML/1998/namespace}id" in root.attrib: - del root.attrib["{http://www.w3.org/XML/1998/namespace}id"] - - # Format the XML with proper indentation - etree.indent(root, space=" ") + if pubStmt_el is None: + pubStmt_el = etree.Element(etree.QName(ns['mei'], 'pubStmt'), nsmap=ns) + fileDesc_el.append(pubStmt_el) + + # Add or update publisher information (Corrected XML string) + try: + pubStmt_el.append(etree.fromstring("""<publisher>Gesualdo Online https://ricercardatalab.cesr.univ-tours.fr/fr/projects/3/</publisher>""", parser=parser)) + except Exception as e: + print(f"Error adding publisher element: {e}") + + + # Add or update the <availability> element + availability_el = pubStmt_el.find('mei:availability', namespaces=ns) + if availability_el is None: + availability_el = etree.Element(etree.QName(ns['mei'], 'availability'), nsmap=ns) + pubStmt_el.append(availability_el) + + # Add or update the <useStmt> element + useStmt_el = availability_el.find('mei:useStmt', namespaces=ns) + if useStmt_el is None: + useStmt_el = etree.Element(etree.QName(ns['mei'], 'useStmt'), nsmap=ns) + availability_el.append(useStmt_el) + + # Add or update the <licence> element + licence_el = useStmt_el.find('mei:licence', namespaces=ns) + if licence_el is None: + licence_el = etree.Element(etree.QName(ns['mei'], 'licence'), nsmap=ns) + useStmt_el.append(licence_el) + + # Add or update the @target attribute of the <licence> element + licence_el.set('target', 'https://creativecommons.org/licenses/by-nc-sa/4.0/') + + # Add or update the text content of the <licence> element + licence_el.text = 'Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License' + + + # Add or update the <editor> elements + editors = metadata_dict.get('Editor', '').split(' | ') + editor_orcids = metadata_dict.get('Editor_ORCID', '').split(' | ') + + # Remove existing editor elements to avoid duplicates + for existing_editor in fileDesc_el.findall('.//mei:editor', namespaces=ns): + fileDesc_el.remove(existing_editor) + + for i, editor_name in enumerate(editors): + if editor_name: # Check if editor_name is not empty + editor_el = etree.Element(etree.QName(ns['mei'], 'editor'), nsmap=ns) + fileDesc_el.append(editor_el) + + persName_el = etree.Element(etree.QName(ns['mei'], 'persName'), nsmap=ns) + editor_el.append(persName_el) + persName_el.text = editor_name.strip() + + # Add or update ORCID if available + if i < len(editor_orcids) and editor_orcids[i]: + editor_el.set('orcid', editor_orcids[i].strip()) + + + # Add or update the <date> element within <fileDesc> + date_el = fileDesc_el.find('mei:date', namespaces=ns) + if date_el is None: + date_el = etree.Element(etree.QName(ns['mei'], 'date'), nsmap=ns) + fileDesc_el.append(date_el) + + # Add or update the @when attribute of the <date> element + last_revised = metadata_dict.get('Last_Revised', '') + if last_revised: + date_el.set('when', last_revised) + + # Add or update the text content of the <date> element + date_el.text = last_revised + + + # Find or create the <workDesc> element + workDesc_el = mei_head_el.find('mei:workDesc', namespaces=ns) + if workDesc_el is None: + workDesc_el = etree.Element(etree.QName(ns['mei'], 'workDesc'), nsmap=ns) + mei_head_el.append(workDesc_el) + + # Find or create the <work> element + work_el = workDesc_el.find('mei:work', namespaces=ns) + if work_el is None: + work_el = etree.Element(etree.QName(ns['mei'], 'work'), nsmap=ns) + workDesc_el.append(work_el) + + # Add or update the <title> element within <work> + work_title_el = work_el.find('mei:title', namespaces=ns) + if work_title_el is None: + work_title_el = etree.Element(etree.QName(ns['mei'], 'title'), nsmap=ns) + work_el.append(work_title_el) + work_title_el.text = metadata_dict.get('Title', '') + + # Add or update the <composer> element within <work> + work_composer_el = work_el.find('mei:composer', namespaces=ns) + if work_composer_el is None: + work_composer_el = etree.Element(etree.QName(ns['mei'], 'composer'), nsmap=ns) + work_el.append(work_composer_el) + + work_persName_el = work_composer_el.find('mei:persName', namespaces=ns) + if work_persName_el is None: + work_persName_el = etree.Element(etree.QName(ns['mei'], 'persName'), nsmap=ns) + work_composer_el.append(work_persName_el) + work_persName_el.text = metadata_dict.get('Composer_Name', '').replace('#265 ', '') # Remove '#265 ' prefix + + # Add or update @role="composer" to <persName> if not present + if 'role' not in work_persName_el.attrib: + work_persName_el.set('role', 'composer') + + # Add or update @sameas with VIAF and BNF IDs + if sameas_uris: + work_persName_el.set('sameas', ' '.join(sameas_uris)) + + # Add or update the <creation> element within <work> (Corrected XML structure) + creation_el = work_el.find('mei:creation', namespaces=ns) + if creation_el is None: + creation_el = etree.Element(etree.QName(ns['mei'], 'creation'), nsmap=ns) + work_el.append(creation_el) + + # Add or update the <date> element within <creation> + creation_date_el = creation_el.find('mei:date', namespaces=ns) + if creation_date_el is None: + creation_date_el = etree.Element(etree.QName(ns['mei'], 'date'), nsmap=ns) + creation_el.append(creation_date_el) + + piece_date = metadata_dict.get('Piece_Date', '') + if piece_date: + creation_date_el.set('when', str(piece_date)) # Ensure date is a string + creation_date_el.text = str(piece_date) # Add text content as well + + # Add or update the <genre> element within <work> + genre_el = work_el.find('mei:genre', namespaces=ns) + if genre_el is None: + genre_el = etree.Element(etree.QName(ns['mei'], 'genre'), nsmap=ns) + work_el.append(genre_el) + genre_el.text = metadata_dict.get('Genre', '') + + + # Find or create the <physDesc> element within <fileDesc> + physDesc_el = fileDesc_el.find('mei:physDesc', namespaces=ns) + if physDesc_el is None: + physDesc_el = etree.Element(etree.QName(ns['mei'], 'physDesc'), nsmap=ns) + fileDesc_el.append(physDesc_el) + + # Find or create the <sourceDesc> element within <physDesc> + sourceDesc_el = physDesc_el.find('mei:sourceDesc', namespaces=ns) + if sourceDesc_el is None: + sourceDesc_el = etree.Element(etree.QName(ns['mei'], 'sourceDesc'), nsmap=ns) + physDesc_el.append(sourceDesc_el) + + # Find or create the <source> element within <sourceDesc> + source_el = sourceDesc_el.find('mei:source', namespaces=ns) + if source_el is None: + source_el = etree.Element(etree.QName(ns['mei'], 'source'), nsmap=ns) + sourceDesc_el.append(source_el) + + # Add or update the <title> element within <source> + source_title_el = source_el.find('mei:title', namespaces=ns) + if source_title_el is None: + source_title_el = etree.Element(etree.QName(ns['mei'], 'title'), nsmap=ns) + source_el.append(source_title_el) + source_title_el.text = metadata_dict.get('Source_Title', '') + + # Add or update the <date> element within <source> + source_date_el = source_el.find('mei:date', namespaces=ns) + if source_date_el is None: + source_date_el = etree.Element(etree.QName(ns['mei'], 'date'), nsmap=ns) + source_el.append(source_date_el) + + source_date = metadata_dict.get('Source_Date', '') + if source_date: + source_date_el.set('when', str(source_date)) # Ensure date is a string + source_date_el.text = str(source_date) # Add text content as well + + # Add or update the <pubStmt> element within <source> + source_pubStmt_el = source_el.find('mei:pubStmt', namespaces=ns) + if source_pubStmt_el is None: + source_pubStmt_el = etree.Element(etree.QName(ns['mei'], 'pubStmt'), nsmap=ns) + source_el.append(source_pubStmt_el) + + # Add or update publisher 1 information within source pubStmt + source_publisher1 = metadata_dict.get('Source_Publisher_1', '') + publisher1_viaf = metadata_dict.get('Publisher_1_VIAF', '') + publisher1_bnf = metadata_dict.get('Publisher_1_BNF_ID', '') + + if source_publisher1: + publisher1_el = source_pubStmt_el.find(f".//mei:publisher[text()='{source_publisher1.strip()}']", namespaces=ns) + if publisher1_el is None: + publisher1_el = etree.Element(etree.QName(ns['mei'], 'publisher'), nsmap=ns) + source_pubStmt_el.append(publisher1_el) + publisher1_el.text = source_publisher1.strip() + + if publisher1_viaf or publisher1_bnf: + sameas_uris = [] + if publisher1_viaf: + sameas_uris.append(publisher1_viaf) + if publisher1_bnf: + sameas_uris.append(publisher1_bnf) + publisher1_el.set('sameas', ' '.join(sameas_uris)) + + + # Add or update publisher 2 information within source pubStmt + source_publisher2 = metadata_dict.get('Source_Publisher_2', '') + publisher2_viaf = metadata_dict.get('Publisher_2_VIAF', '') + publisher2_bnf = metadata_dict.get('Publisher_2_BNF_ID', '') + + if source_publisher2: + publisher2_el = source_pubStmt_el.find(f".//mei:publisher[text()='{source_publisher2.strip()}']", namespaces=ns) + if publisher2_el is None: + publisher2_el = etree.Element(etree.QName(ns['mei'], 'publisher'), nsmap=ns) + source_pubStmt_el.append(publisher2_el) + publisher2_el.text = source_publisher2.strip() + + if publisher2_viaf or publisher2_bnf: + sameas_uris = [] + if publisher2_viaf: + sameas_uris.append(publisher2_viaf) + if publisher2_bnf: + sameas_uris.append(publisher2_bnf) + publisher2_el.set('sameas', ' '.join(sameas_uris)) + + # Add or update the <identifier> element within <source> for Permalink + permalink = metadata_dict.get('Permalink', '') + if permalink: + identifier_el = source_el.find('mei:identifier', namespaces=ns) + if identifier_el is None: + identifier_el = etree.Element(etree.QName(ns['mei'], 'identifier'), nsmap=ns) + source_el.append(identifier_el) + identifier_el.text = permalink + identifier_el.set('type', 'permalink') + + + # Add or update the <locus> element within <source> for Source_Position + source_position = metadata_dict.get('Source_Position', '') + if source_position: + locus_el = source_el.find('mei:locus', namespaces=ns) + if locus_el is None: + locus_el = etree.Element(etree.QName(ns['mei'], 'locus'), nsmap=ns) + source_el.append(locus_el) + locus_el.text = source_position + + + # Add or update the <repository> element within <source> for location details + source_location = metadata_dict.get('Source_Location', '') + source_institution = metadata_dict.get('Source_Institution', '') + source_shelfmark = metadata_dict.get('Source_Shelfmark', '') + + if source_location or source_institution or source_shelfmark: + repository_el = source_el.find('mei:repository', namespaces=ns) + if repository_el is None: + repository_el = etree.Element(etree.QName(ns['mei'], 'repository'), nsmap=ns) + source_el.append(repository_el) + + # Add or update <corpName> for institution + if source_institution: + corpName_el = repository_el.find('mei:corpName', namespaces=ns) + if corpName_el is None: + corpName_el = etree.Element(etree.QName(ns['mei'], 'corpName'), nsmap=ns) + repository_el.append(corpName_el) + corpName_el.text = source_institution + + # Add or update <geogName> for location + if source_location: + geogName_el = repository_el.find('mei:geogName', namespaces=ns) + if geogName_el is None: + geogName_el = etree.Element(etree.QName(ns['mei'], 'geogName'), nsmap=ns) + repository_el.append(geogName_el) + geogName_el.text = source_location + + # Add or update <shelfMark> for shelfmark + if source_shelfmark: + shelfMark_el = repository_el.find('mei:shelfMark', namespaces=ns) + if shelfMark_el is None: + shelfMark_el = etree.Element(etree.QName(ns['mei'], 'shelfMark'), nsmap=ns) + repository_el.append(shelfMark_el) + shelfMark_el.text = source_shelfmark + + + # Add or update the <notes> element within <source> for Source_Reference + source_reference = metadata_dict.get('Source_Reference', '') + if source_reference: + notes_el = source_el.find('mei:notes', namespaces=ns) + if notes_el is None: + notes_el = etree.Element(etree.QName(ns['mei'], 'notes'), nsmap=ns) + source_el.append(notes_el) + notes_el.text = source_reference + + + # Save the updated MEI file + output_path = os.path.join(output_folder, os.path.basename(mei_file_path)) + try: + tree.write(output_path, pretty_print=True, xml_declaration=True, encoding='utf-8') + print(f"Successfully updated metadata for {os.path.basename(mei_file_path)} and saved to {output_path}") + except Exception as e: + print(f"Error saving updated MEI file {output_path}: {e}") - - # Serialize to string with XML declaration - formatted_xml = etree.tostring( - root, - pretty_print=True, - encoding='utf-8', - xml_declaration=True - ) - - # Write to file - with open(output_file_path, 'wb') as f: - f.write(formatted_xml) - - print(f'Saved updated {revised_name}') - return formatted_xml From b7242c24e9404f146b494c5cdaed39e573838c01 Mon Sep 17 00:00:00 2001 From: Augustin Braud <127300341+GusBraud@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:23:27 +0200 Subject: [PATCH 3/5] Update mei_metadata_processor.py --- mei_tools/mei_metadata_processor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mei_tools/mei_metadata_processor.py b/mei_tools/mei_metadata_processor.py index b760431..9564943 100644 --- a/mei_tools/mei_metadata_processor.py +++ b/mei_tools/mei_metadata_processor.py @@ -40,7 +40,7 @@ def __init__(self, input_folder=None, output_folder=None, namespace=None, verbos self.failed_updates = 0 # now the functions - def apply_metadata(self, mei_file_path, metadata_dict, output_folder): + def apply_metadata(self, mei_file_path, metadata_dict, output_folder): """ Applies metadata from a dictionary to an MEI file. @@ -420,3 +420,4 @@ def apply_metadata(self, mei_file_path, metadata_dict, output_folder): except Exception as e: print(f"Error saving updated MEI file {output_path}: {e}") + From 508dd7c25b180b6cae762cadb2d84f7aa4485442 Mon Sep 17 00:00:00 2001 From: Augustin Braud <127300341+GusBraud@users.noreply.github.com> Date: Tue, 22 Jul 2025 12:03:22 +0200 Subject: [PATCH 4/5] Version brouillon - encore un second header mais OK --- meitools_Gesualdo_v2.ipynb | 7977 ++++++++++++++++++++++++++++++++++++ 1 file changed, 7977 insertions(+) create mode 100644 meitools_Gesualdo_v2.ipynb diff --git a/meitools_Gesualdo_v2.ipynb b/meitools_Gesualdo_v2.ipynb new file mode 100644 index 0000000..a0f62f6 --- /dev/null +++ b/meitools_Gesualdo_v2.ipynb @@ -0,0 +1,7977 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [], + "mount_file_id": "1pcRnwNh5h7dsXDko2YOn7SQhw8Fwfrhp", + "authorship_tag": "ABX9TyOICzPAjLjhMFRXd1b0STtQ", + "include_colab_link": true + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "<a href=\"https://colab.research.google.com/github/GusBraud/mei_tools/blob/gesualdo_dev/meitools_Gesualdo_v2.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>" + ] + }, + { + "cell_type": "markdown", + "source": [ + "**Update des métadonnées**" + ], + "metadata": { + "id": "AXjsqqhQDCN7" + } + }, + { + "cell_type": "code", + "source": [ + "!rm -r mei_tools\n", + "!git clone https://github.com/GusBraud/mei_tools" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "C4MC2-fmHfm8", + "outputId": "671325b2-53dd-4a8f-e523-3b9deb2760f6" + }, + "execution_count": 310, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Cloning into 'mei_tools'...\n", + "remote: Enumerating objects: 416, done.\u001b[K\n", + "remote: Counting objects: 100% (74/74), done.\u001b[K\n", + "remote: Compressing objects: 100% (59/59), done.\u001b[K\n", + "remote: Total 416 (delta 46), reused 32 (delta 15), pack-reused 342 (from 1)\u001b[K\n", + "Receiving objects: 100% (416/416), 730.32 KiB | 4.77 MiB/s, done.\n", + "Resolving deltas: 100% (229/229), done.\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "%cd mei_tools\n", + "%pip install -e ." + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "rQbld2aX2pdx", + "outputId": "9b00f39f-9d2f-462a-ebd3-fcd0d672686a" + }, + "execution_count": 311, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "/content/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools\n", + "Obtaining file:///content/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools\n", + " Installing build dependencies ... \u001b[?25l\u001b[?25hdone\n", + " Checking if build backend supports build_editable ... \u001b[?25l\u001b[?25hdone\n", + " Getting requirements to build editable ... \u001b[?25l\u001b[?25hdone\n", + " Preparing editable metadata (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n", + "Requirement already satisfied: datetime<6.0,>=5.5 in /usr/local/lib/python3.11/dist-packages (from mei_tools==2.0.2) (5.5)\n", + "Requirement already satisfied: lxml<6.0.0,>=5.3.1 in /usr/local/lib/python3.11/dist-packages (from mei_tools==2.0.2) (5.4.0)\n", + "Requirement already satisfied: zope.interface in /usr/local/lib/python3.11/dist-packages (from datetime<6.0,>=5.5->mei_tools==2.0.2) (7.2)\n", + "Requirement already satisfied: pytz in /usr/local/lib/python3.11/dist-packages (from datetime<6.0,>=5.5->mei_tools==2.0.2) (2025.2)\n", + "Requirement already satisfied: setuptools in /usr/local/lib/python3.11/dist-packages (from zope.interface->datetime<6.0,>=5.5->mei_tools==2.0.2) (75.2.0)\n", + "Building wheels for collected packages: mei_tools\n", + " Building editable for mei_tools (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n", + " Created wheel for mei_tools: filename=mei_tools-2.0.2-py3-none-any.whl size=5254 sha256=f38dadc0d10086d496a860bc600908e07319844bbc3e124922a20bcb33cf779e\n", + " Stored in directory: /tmp/pip-ephem-wheel-cache-9c29jpyy/wheels/d6/c1/d8/29cd9c39e68244eaaad8cd4073bbf167a2f5eb39abfb6fb014\n", + "Successfully built mei_tools\n", + "Installing collected packages: mei_tools\n", + " Attempting uninstall: mei_tools\n", + " Found existing installation: mei_tools 2.0.2\n", + " Uninstalling mei_tools-2.0.2:\n", + " Successfully uninstalled mei_tools-2.0.2\n", + "Successfully installed mei_tools-2.0.2\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "!pip install setuptools wheel twine" + ], + "metadata": { + "id": "g5GmhaF861nC", + "colab": { + "base_uri": "https://localhost:8080/" + }, + "outputId": "827bddc9-1b99-4a20-8414-ff3ea54ef8f0" + }, + "execution_count": 312, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Requirement already satisfied: setuptools in /usr/local/lib/python3.11/dist-packages (75.2.0)\n", + "Requirement already satisfied: wheel in /usr/local/lib/python3.11/dist-packages (0.45.1)\n", + "Requirement already satisfied: twine in /usr/local/lib/python3.11/dist-packages (6.1.0)\n", + "Requirement already satisfied: readme-renderer>=35.0 in /usr/local/lib/python3.11/dist-packages (from twine) (44.0)\n", + "Requirement already satisfied: requests>=2.20 in /usr/local/lib/python3.11/dist-packages (from twine) (2.32.3)\n", + "Requirement already satisfied: requests-toolbelt!=0.9.0,>=0.8.0 in /usr/local/lib/python3.11/dist-packages (from twine) (1.0.0)\n", + "Requirement already satisfied: urllib3>=1.26.0 in /usr/local/lib/python3.11/dist-packages (from twine) (2.4.0)\n", + "Requirement already satisfied: keyring>=15.1 in /usr/local/lib/python3.11/dist-packages (from twine) (25.6.0)\n", + "Requirement already satisfied: rfc3986>=1.4.0 in /usr/local/lib/python3.11/dist-packages (from twine) (2.0.0)\n", + "Requirement already satisfied: rich>=12.0.0 in /usr/local/lib/python3.11/dist-packages (from twine) (13.9.4)\n", + "Requirement already satisfied: packaging>=24.0 in /usr/local/lib/python3.11/dist-packages (from twine) (25.0)\n", + "Requirement already satisfied: id in /usr/local/lib/python3.11/dist-packages (from twine) (1.5.0)\n", + "Requirement already satisfied: SecretStorage>=3.2 in /usr/local/lib/python3.11/dist-packages (from keyring>=15.1->twine) (3.3.3)\n", + "Requirement already satisfied: jeepney>=0.4.2 in /usr/local/lib/python3.11/dist-packages (from keyring>=15.1->twine) (0.9.0)\n", + "Requirement already satisfied: importlib_metadata>=4.11.4 in /usr/local/lib/python3.11/dist-packages (from keyring>=15.1->twine) (8.7.0)\n", + "Requirement already satisfied: jaraco.classes in /usr/local/lib/python3.11/dist-packages (from keyring>=15.1->twine) (3.4.0)\n", + "Requirement already satisfied: jaraco.functools in /usr/local/lib/python3.11/dist-packages (from keyring>=15.1->twine) (4.2.1)\n", + "Requirement already satisfied: jaraco.context in /usr/local/lib/python3.11/dist-packages (from keyring>=15.1->twine) (6.0.1)\n", + "Requirement already satisfied: nh3>=0.2.14 in /usr/local/lib/python3.11/dist-packages (from readme-renderer>=35.0->twine) (0.3.0)\n", + "Requirement already satisfied: docutils>=0.21.2 in /usr/local/lib/python3.11/dist-packages (from readme-renderer>=35.0->twine) (0.21.2)\n", + "Requirement already satisfied: Pygments>=2.5.1 in /usr/local/lib/python3.11/dist-packages (from readme-renderer>=35.0->twine) (2.19.2)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.11/dist-packages (from requests>=2.20->twine) (3.4.2)\n", + "Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.11/dist-packages (from requests>=2.20->twine) (3.10)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.11/dist-packages (from requests>=2.20->twine) (2025.7.14)\n", + "Requirement already satisfied: markdown-it-py>=2.2.0 in /usr/local/lib/python3.11/dist-packages (from rich>=12.0.0->twine) (3.0.0)\n", + "Requirement already satisfied: zipp>=3.20 in /usr/local/lib/python3.11/dist-packages (from importlib_metadata>=4.11.4->keyring>=15.1->twine) (3.23.0)\n", + "Requirement already satisfied: mdurl~=0.1 in /usr/local/lib/python3.11/dist-packages (from markdown-it-py>=2.2.0->rich>=12.0.0->twine) (0.1.2)\n", + "Requirement already satisfied: cryptography>=2.0 in /usr/local/lib/python3.11/dist-packages (from SecretStorage>=3.2->keyring>=15.1->twine) (43.0.3)\n", + "Requirement already satisfied: more-itertools in /usr/local/lib/python3.11/dist-packages (from jaraco.classes->keyring>=15.1->twine) (10.7.0)\n", + "Requirement already satisfied: backports.tarfile in /usr/local/lib/python3.11/dist-packages (from jaraco.context->keyring>=15.1->twine) (1.2.0)\n", + "Requirement already satisfied: cffi>=1.12 in /usr/local/lib/python3.11/dist-packages (from cryptography>=2.0->SecretStorage>=3.2->keyring>=15.1->twine) (1.17.1)\n", + "Requirement already satisfied: pycparser in /usr/local/lib/python3.11/dist-packages (from cffi>=1.12->cryptography>=2.0->SecretStorage>=3.2->keyring>=15.1->twine) (2.22)\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "!python -c \"import mei_tools; print('import successful')\"" + ], + "metadata": { + "id": "C9AQAmF1H-JE", + "colab": { + "base_uri": "https://localhost:8080/" + }, + "outputId": "ef5f9de1-1e43-4adb-f5cd-3a87d773ff83" + }, + "execution_count": 313, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "import successful\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "# Import necessary libraries\n", + "import mei_tools\n", + "from mei_tools import MEI_Metadata_Updater\n", + "from mei_tools import MEI_Music_Feature_Processor\n", + "import glob\n", + "import os\n", + "import pandas as pd\n", + "from lxml import etree # Import etree here\n", + "import re # Import regex for cleaning editor names\n", + "\n", + "# Modified MEI_Metadata_Updater class to add static encodingDesc, consolidate annotation text, and remove duplicate meiHeads\n", + "def apply_metadata_fixed(self, mei_file_path, metadata_dict, output_folder):\n", + " \"\"\"\n", + " Adds or updates metadata in the first meiHead from a dictionary,\n", + " consolidates annotation text and static encodingDesc content, adds xml:ids,\n", + " and removes subsequent meiHeads.\n", + "\n", + " Args:\n", + " mei_file_path (str): The path to the input MEI file.\n", + " metadata_dict (dict): A dictionary containing the metadata to apply.\n", + " output_folder (str): The folder to save the updated MEI file.\n", + " \"\"\"\n", + " print(f\"Getting {os.path.basename(mei_file_path)}\")\n", + " try:\n", + " with open(mei_file_path, 'r', encoding='utf-8') as f:\n", + " mei_content = f.read()\n", + "\n", + " # Use a parser to handle potential issues with the input XML\n", + " parser = etree.XMLParser(remove_blank_text=True)\n", + " root = etree.fromstring(mei_content.encode('utf-8'), parser=parser)\n", + " ns = {'mei': 'http://www.music-encoding.org/ns/mei/5'}\n", + " xml_ns = '{http://www.w3.org/XML/1998/namespace}' # Namespace for xml:id\n", + "\n", + " # Counter for generating unique xml:ids\n", + " id_counter = 1\n", + "\n", + " def generate_xml_id(prefix=\"m\"):\n", + " nonlocal id_counter\n", + " current_id = f\"{prefix}-{id_counter}\"\n", + " id_counter += 1\n", + " return current_id\n", + "\n", + " def generate_initials_id(name):\n", + " \"\"\"Generates an xml:id from the initials of a cleaned name.\"\"\"\n", + " # Remove trailing role information like \" - Project manager\"\n", + " cleaned_name = re.sub(r'\\s-\\s.*$', '', name).strip()\n", + " initials = ''.join([word[0].upper() for word in cleaned_name.split() if word])\n", + " # Ensure the ID is a valid XML ID (starts with a letter or underscore, contains letters, digits, hyphens, underscores, periods, colons)\n", + " # A simple approach is to just use the initials, assuming they are letters.\n", + " # If more complex names/characters are expected, more robust validation/cleaning would be needed.\n", + " return initials\n", + "\n", + "\n", + " # Find all meiHead elements\n", + " all_mei_heads = root.findall('.//meiHead', namespaces=ns)\n", + "\n", + " mei_head = None # Initialize mei_head to None\n", + " mei_heads_to_remove = []\n", + "\n", + "\n", + " if not all_mei_heads:\n", + " print(f\"Warning: No meiHead found in {os.path.basename(mei_file_path)}. Cannot update metadata.\")\n", + " # If no meiHead, we can't update.\n", + "\n", + " else:\n", + " # Use the first meiHead found as the target (this is the one we populate with CSV data)\n", + " mei_head = all_mei_heads[0]\n", + " # Add xml:id to the first meiHead if it doesn't have one\n", + " if xml_ns + 'id' not in mei_head.attrib:\n", + " mei_head.set(xml_ns + 'id', generate_xml_id())\n", + "\n", + " # Collect meiHeads to remove (all subsequent ones)\n", + " mei_heads_to_remove.extend(all_mei_heads[1:])\n", + "\n", + "\n", + " # --- Add the specific static encodingDesc block to the first meiHead ---\n", + " # Define the static encodingDesc XML as a string\n", + " encoding_desc_xml = \"\"\"\n", + "<encodingDesc xml:id=\"m-5\">\n", + " <appInfo xml:id=\"m-6\">\n", + " <application xml:id=\"sibelius\" isodate=\"2025-7-11T11:43:22Z\" version=\"7130\">\n", + " <name xml:id=\"m-8\" type=\"operating-system\">Windows 7</name>\n", + " </application>\n", + " <application xml:id=\"sibmei\" type=\"plugin\" version=\"4.1.0\">\n", + " <name xml:id=\"m-10\">Sibelius to MEI 4 Exporter (4.1.0)</name>\n", + " </application>\n", + " </appInfo>\n", + " </encodingDesc>\n", + "\"\"\"\n", + " # Parse the static XML snippet into an element tree\n", + " parser_frag = etree.XMLParser(remove_blank_text=True)\n", + " encoding_desc_elem = etree.fromstring(encoding_desc_xml.strip().encode('utf-8'), parser=parser_frag)\n", + "\n", + " # Find existing encodingDesc in the target meiHead\n", + " existing_encoding_desc = mei_head.find('./encodingDesc', namespaces=ns)\n", + "\n", + " if existing_encoding_desc is not None:\n", + " # If encodingDesc exists, replace it with the new static one\n", + " existing_encoding_desc.getparent().replace(existing_encoding_desc, encoding_desc_elem)\n", + " print(f\" Replaced existing encodingDesc with the specified static block in {os.path.basename(mei_file_path)}\")\n", + " else:\n", + " # If encodingDesc doesn't exist, append the new static one to meiHead\n", + " # Find a position to insert it (e.g., after fileDesc if it exists)\n", + " file_desc_elem = mei_head.find('./fileDesc', namespaces=ns)\n", + " if file_desc_elem is not None:\n", + " # Find the index of fileDesc to insert encodingDesc after it\n", + " file_desc_index = mei_head.index(file_desc_elem)\n", + " mei_head.insert(file_desc_index + 1, encoding_desc_elem)\n", + " else:\n", + " # If no fileDesc, just append to meiHead\n", + " mei_head.append(encoding_desc_elem)\n", + "\n", + " print(f\" Added specified static encodingDesc block to {os.path.basename(mei_file_path)}\")\n", + "\n", + "\n", + " # Proceed only if we have a valid mei_head (the first one found/updated)\n", + " if mei_head is not None:\n", + " # Find or create fileDesc within meiHead\n", + " file_desc = mei_head.find('./fileDesc', namespaces=ns)\n", + " if file_desc is None:\n", + " file_desc = etree.SubElement(mei_head, \"fileDesc\")\n", + " file_desc.set(xml_ns + 'id', generate_xml_id())\n", + "\n", + " # Find or create workList within meiHead\n", + " work_list = mei_head.find('./workList', namespaces=ns)\n", + " if work_list is None:\n", + " work_list = etree.SubElement(mei_head, \"workList\")\n", + " work_list.set(xml_ns + 'id', generate_xml_id())\n", + "\n", + "\n", + " # Find the annot element created by the script (based on CSV data)\n", + " target_annot = work_list.find('.//notesStmt/annot', namespaces=ns)\n", + "\n", + " # Ensure notesStmt and annot exist in the target workList if not already created by CSV data\n", + " if target_annot is None:\n", + " notes_stmt = work_list.find('./notesStmt', namespaces=ns)\n", + " if notes_stmt is None:\n", + " notes_stmt = etree.SubElement(work_list, \"notesStmt\")\n", + " notes_stmt.set(xml_ns + 'id', generate_xml_id())\n", + " target_annot = etree.SubElement(notes_stmt, \"annot\")\n", + " target_annot.set(xml_ns + 'id', generate_xml_id())\n", + " target_annot.text = \"\" # Initialize with empty text\n", + "\n", + "\n", + " # --- Consolidate annotation text from subsequent meiHeads into the target annot ---\n", + " annotation_texts_to_merge = []\n", + " all_mei_heads_for_merge = root.findall('.//meiHead', namespaces=ns) # Re-find all heads\n", + "\n", + " # Iterate through all meiHeads (except the target) to find annotations\n", + " for extra_mei_head in all_mei_heads_for_merge:\n", + " if extra_mei_head is not None and extra_mei_head != mei_head: # Exclude the target meiHead\n", + " extra_annot = extra_mei_head.find('.//notesStmt/annot', namespaces=ns)\n", + " if extra_annot is not None and extra_annot.text:\n", + " annotation_texts_to_merge.append(extra_annot.text.strip())\n", + " print(f\" Extracted annotation text from extra meiHead for annotation consolidation in {os.path.basename(mei_file_path)}\")\n", + "\n", + "\n", + " # Append the collected annotation texts to the target annot\n", + " if annotation_texts_to_merge:\n", + " existing_annot_text = target_annot.text.strip() if target_annot.text else \"\"\n", + " new_annot_text = existing_annot_text\n", + " if new_annot_text:\n", + " new_annot_text += \" ; \" # Add separator if existing text is present\n", + " new_annot_text += \" ; \".join(annotation_texts_to_merge) # Join extracted texts with separator\n", + " target_annot.text = new_annot_text\n", + " print(f\" Consolidated annotation text in target annot.\")\n", + "\n", + "\n", + " # --- Update/Create metadata sections within fileDesc (using spreadsheet data) ---\n", + "\n", + " if file_desc is not None:\n", + " # Find or create titleStmt\n", + " title_stmt = file_desc.find('./titleStmt', namespaces=ns)\n", + " if title_stmt is None:\n", + " title_stmt = etree.SubElement(file_desc, \"titleStmt\")\n", + " title_stmt.set(xml_ns + 'id', generate_xml_id())\n", + "\n", + " # Clear specific existing children within titleStmt to replace with metadata (overwriting original title/author if they were in first header)\n", + " for child in list(title_stmt):\n", + " if child.tag.split('}')[-1] in ['title', 'author', 'composer', 'respStmt']:\n", + " title_stmt.remove(child)\n", + "\n", + " # Add title and author from metadata, with xml:ids\n", + " title = etree.SubElement(title_stmt, \"title\")\n", + " title.set(xml_ns + 'id', generate_xml_id())\n", + " title.text = metadata_dict.get('Title', '')\n", + " author = etree.SubElement(title_stmt, \"author\")\n", + " author.set(xml_ns + 'id', generate_xml_id())\n", + " author.text = metadata_dict.get('Composer_Name', '')\n", + "\n", + "\n", + " # Find or create pubStmt - Preserve existing non-publisher content\n", + " pub_stmt = file_desc.find('./pubStmt', namespaces=ns)\n", + " if pub_stmt is None:\n", + " pub_stmt = etree.SubElement(file_desc, \"pubStmt\")\n", + " pub_stmt.set(xml_ns + 'id', generate_xml_id())\n", + "\n", + " # Clear *only* existing publisher tags added from metadata\n", + " for pub in pub_stmt.findall('./publisher', namespaces=ns):\n", + " pub_stmt.remove(pub)\n", + "\n", + " # Add publisher information (Publisher_1 and Publisher_2) from metadata, with xml:ids\n", + " if metadata_dict.get('Source_Publisher_1'):\n", + " publisher1 = etree.SubElement(pub_stmt, \"publisher\")\n", + " publisher1.set(xml_ns + 'id', generate_xml_id())\n", + " publisher1.text = metadata_dict.get('Source_Publisher_1', '')\n", + " if metadata_dict.get('Publisher_1_VIAF'):\n", + " publisher1.set('ref', metadata_dict.get('Publisher_1_VIAF', ''))\n", + " if metadata_dict.get('Source_Publisher_2'):\n", + " publisher2 = etree.SubElement(pub_stmt, \"publisher\")\n", + " publisher2.set(xml_ns + 'id', generate_xml_id())\n", + " publisher2.text = metadata_dict.get('Source_Publisher_2', '')\n", + " if metadata_dict.get('Publisher_2_VIAF'):\n", + " publisher2.set('ref', metadata_dict.get('Publisher_2_VIAF', ''))\n", + "\n", + "\n", + " # Find or create editionStmt - Clear existing editor structure\n", + " edition_stmt = file_desc.find('./editionStmt', namespaces=ns)\n", + " if edition_stmt is None:\n", + " edition_stmt = etree.SubElement(file_desc, \"editionStmt\")\n", + " edition_stmt.set(xml_ns + 'id', generate_xml_id())\n", + "\n", + " # Clear existing children within editionStmt (edition, respStmt)\n", + " for child in list(edition_stmt):\n", + " if child.tag.split('}')[-1] in ['edition', 'respStmt']:\n", + " edition_stmt.remove(child)\n", + "\n", + " # Add edition and editor information if Editor data is present, with xml:ids (cleaned initials for persName)\n", + " if metadata_dict.get('Editor'):\n", + " edition = etree.SubElement(edition_stmt, \"edition\")\n", + " edition.set(xml_ns + 'id', generate_xml_id())\n", + " resp_stmt = etree.SubElement(edition, \"respStmt\")\n", + " resp_stmt.set(xml_ns + 'id', generate_xml_id())\n", + " resp = etree.SubElement(resp_stmt, \"resp\")\n", + " resp.text = \"editor\"\n", + " editors = metadata_dict.get('Editor', '').split(' | ')\n", + " orcids = metadata_dict.get('Editor_ORCID', '').split(' | ')\n", + " editor_viafs = metadata_dict.get('Editor_VIAF', '').split(' | ')\n", + "\n", + " for i, editor_name in enumerate(editors):\n", + " if editor_name.strip(): # Check if editor name is not empty\n", + " pers_name = etree.SubElement(resp_stmt, \"persName\")\n", + " # Generate xml:id from cleaned initials\n", + " pers_name_id = generate_initials_id(editor_name.strip())\n", + " pers_name.set(xml_ns + 'id', pers_name_id)\n", + " pers_name.text = editor_name.strip()\n", + " # Corrected auth attribute to \"orcid\"\n", + " if i < len(orcids) and orcids[i].strip():\n", + " pers_name.set('auth', 'orcid')\n", + " pers_name.set('auth.uri', orcids[i].strip()) # Use ORCID URI\n", + " elif i < len(editor_viafs) and editor_viafs[i].strip():\n", + " pers_name.set('auth', 'VIAF') # Fallback to VIAF if no ORCID\n", + " pers_name.set('auth.uri', editor_viafs[i].strip())\n", + " else:\n", + " # If no ORCID or VIAF, set auth to \"none\" or omit auth/auth.uri\n", + " pers_name.set('auth', 'none')\n", + "\n", + "\n", + " # Find or create sourceDesc - Clear existing source structure\n", + " source_desc = file_desc.find('./sourceDesc', namespaces=ns)\n", + " if source_desc is None:\n", + " source_desc = etree.SubElement(file_desc, \"sourceDesc\")\n", + " source_desc.set(xml_ns + 'id', generate_xml_id())\n", + " # If sourceDesc already exists, we don't add a new id here\n", + "\n", + " # Clear existing children within sourceDesc (source)\n", + " for child in list(source_desc):\n", + " if child.tag.split('}')[-1] == 'source':\n", + " source_desc.remove(child)\n", + "\n", + " # Add source information, RDL_ID, and Permalink as bibl within sourceDesc/source, with xml:ids\n", + " source = etree.SubElement(source_desc, \"source\")\n", + " source.set(xml_ns + 'id', generate_xml_id())\n", + " title_source = etree.SubElement(source, \"title\")\n", + " title_source.set(xml_ns + 'id', generate_xml_id())\n", + " title_source.text = metadata_dict.get('Source_Title', '')\n", + "\n", + " date_source = etree.SubElement(source, \"date\")\n", + " date_source.set(xml_ns + 'id', generate_xml_id())\n", + " date_source.text = str(metadata_dict.get('Source_Date', ''))\n", + "\n", + " country_source = etree.SubElement(source, \"country\")\n", + " country_source.set(xml_ns + 'id', generate_xml_id())\n", + " country_source.text = metadata_dict.get('Source_Country', '')\n", + "\n", + " settlement_source = etree.SubElement(source, \"settlement\")\n", + " settlement_source.set(xml_ns + 'id', generate_xml_id())\n", + " settlement_source.text = metadata_dict.get('Source_City', '')\n", + "\n", + " identifier_source = etree.SubElement(source, \"identifier\", type=\"shelfmark\")\n", + " identifier_source.set(xml_ns + 'id', generate_xml_id())\n", + " identifier_source.text = metadata_dict.get('Source_Shelfmark', '')\n", + "\n", + " # Add RDL_ID and Permalink as bibl within sourceDesc/source, with xml:ids\n", + " if metadata_dict.get('RDL_ID'):\n", + " rdl_id_elem = etree.SubElement(source, \"identifier\", type=\"RDL_ID\")\n", + " rdl_id_elem.set(xml_ns + 'id', generate_xml_id())\n", + " rdl_id_elem.text = str(metadata_dict.get('RDL_ID', ''))\n", + "\n", + " if metadata_dict.get('Permalink'):\n", + " permalink_bibl = etree.SubElement(source, \"bibl\")\n", + " permalink_bibl.set(xml_ns + 'id', generate_xml_id())\n", + " permalink_bibl.text = metadata_dict.get('Permalink', '')\n", + "\n", + "\n", + " # Find or create workList within meiHead\n", + " work_list = mei_head.find('./workList', namespaces=ns)\n", + " if work_list is None:\n", + " work_list = etree.SubElement(mei_head, \"workList\")\n", + " work_list.set(xml_ns + 'id', generate_xml_id())\n", + "\n", + "\n", + " # Find the annot element created by the script (based on CSV data)\n", + " target_annot = work_list.find('.//notesStmt/annot', namespaces=ns)\n", + "\n", + " # Ensure notesStmt and annot exist in the target workList if not already created by CSV data\n", + " if target_annot is None:\n", + " notes_stmt = work_list.find('./notesStmt', namespaces=ns)\n", + " if notes_stmt is None:\n", + " notes_stmt = etree.SubElement(work_list, \"notesStmt\")\n", + " notes_stmt.set(xml_ns + 'id', generate_xml_id())\n", + " target_annot = etree.SubElement(notes_stmt, \"annot\")\n", + " target_annot.set(xml_ns + 'id', generate_xml_id())\n", + " target_annot.text = \"\" # Initialize with empty text\n", + "\n", + "\n", + " # --- Consolidate annotation text from subsequent meiHeads into the target annot ---\n", + " annotation_texts_to_merge = []\n", + " all_mei_heads_for_merge = root.findall('.//meiHead', namespaces=ns) # Re-find all heads\n", + "\n", + " # Iterate through all meiHeads (except the target) to find annotations\n", + " for extra_mei_head in all_mei_heads_for_merge:\n", + " if extra_mei_head is not None and extra_mei_head != mei_head: # Exclude the target meiHead\n", + " extra_annot = extra_mei_head.find('.//notesStmt/annot', namespaces=ns)\n", + " if extra_annot is not None and extra_annot.text:\n", + " annotation_texts_to_merge.append(extra_annot.text.strip())\n", + " print(f\" Extracted annotation text from extra meiHead for annotation consolidation in {os.path.basename(mei_file_path)}\")\n", + "\n", + "\n", + " # Append the collected annotation texts to the target annot\n", + " if annotation_texts_to_merge:\n", + " existing_annot_text = target_annot.text.strip() if target_annot.text else \"\"\n", + " new_annot_text = existing_annot_text\n", + " if new_annot_text:\n", + " new_annot_text += \" ; \" # Add separator if existing text is present\n", + " new_annot_text += \" ; \".join(annotation_texts_to_merge) # Join extracted texts with separator\n", + " target_annot.text = new_annot_text\n", + " print(f\" Consolidated annotation text in target annot.\")\n", + "\n", + "\n", + " # --- Add work information (from CSV) to the target workList ---\n", + " # Clear existing children of work within workList created by CSV data (if any before adding)\n", + " # This ensures we only add the latest work details from the dictionary.\n", + " if work_list is not None:\n", + " existing_work = work_list.find('./work', namespaces=ns)\n", + " if existing_work is not None:\n", + " work_list.remove(existing_work)\n", + "\n", + "\n", + " # Add work information if enough data is present, with xml:ids\n", + " if work_list is not None:\n", + " if metadata_dict.get('Title') or metadata_dict.get('Composer_Name') or metadata_dict.get('Source_Position') or metadata_dict.get('Source_Title'):\n", + " work = etree.SubElement(work_list, \"work\")\n", + " work.set(xml_ns + 'id', generate_xml_id())\n", + "\n", + " work_title = etree.SubElement(work, \"title\")\n", + " work_title.set(xml_ns + 'id', generate_xml_id())\n", + " work_title.text = metadata_dict.get('Title', '') # Using the main Title for work title\n", + "\n", + " # Add composer within work, with xml:ids\n", + " if metadata_dict.get('Composer_Name'):\n", + " composer_work = etree.SubElement(work, \"composer\")\n", + " composer_work.set(xml_ns + 'id', generate_xml_id())\n", + " pers_name_work = etree.SubElement(composer_work, \"persName\")\n", + " pers_name_work.set(xml_ns + 'id', generate_xml_id()) # Add xml:id to persName\n", + " pers_name_work.text = metadata_dict.get('Composer_Name', '')\n", + " if metadata_dict.get('Composer_VIAF'):\n", + " pers_name_work.set('auth', 'VIAF')\n", + " pers_name_work.set('auth.uri', metadata_dict.get('Composer_VIAF', ''))\n", + "\n", + " # Add lyricist within work (assuming no explicit field), with xml:ids\n", + " lyricist_work = etree.SubElement(work, \"lyricist\")\n", + " lyricist_work.set(xml_ns + 'id', generate_xml_id())\n", + " lyricist_work.text = \"\" # Placeholder\n", + "\n", + " # notesStmt and annot are handled for consolidation above, don't recreate here based on CSV fields\n", + " # notes_stmt = etree.SubElement(work, \"notesStmt\")\n", + " # notes_stmt.set(xml_ns + 'id', generate_xml_id())\n", + " # annot = etree.SubElement(notes_stmt, \"annot\")\n", + " # annot.set(xml_ns + 'id', generate_xml_id())\n", + "\n", + " # # Construct the annot text from metadata fields\n", + " # annot_text_parts = []\n", + " # if metadata_dict.get('Composer_Name'):\n", + " # pass # Already added as <composer> element\n", + "\n", + " # if metadata_dict.get('Source_Position'):\n", + " # annot_text_parts.append(f\"Source : p. {metadata_dict['Source_Position']}\")\n", + " # if metadata_dict.get('Source_Title'):\n", + " # annot_text_parts.append(metadata_dict['Source_Title'])\n", + "\n", + " # annot.text = \" ; \".join(annot_text_parts)\n", + "\n", + "\n", + " # --- Remove the other meiHeads ---\n", + " all_mei_heads_after_processing = root.findall('.//meiHead', namespaces=ns) # Re-find in case any were created/manipulated\n", + " if root is not None:\n", + " for mei_head_to_remove in all_mei_heads_after_processing:\n", + " if mei_head_to_remove is not None and mei_head_to_remove != mei_head: # Exclude the target meiHead\n", + " try:\n", + " root.remove(mei_head_to_remove)\n", + " print(f\" Removed extra meiHead from {os.path.basename(mei_file_path)}\")\n", + " except ValueError:\n", + " print(f\" Warning: Could not remove extra meiHead - not found in root children.\")\n", + "\n", + "\n", + " # Save the updated MEI file\n", + " output_path = os.path.join(output_folder, os.path.basename(mei_file_path))\n", + " with open(output_path, 'wb') as f:\n", + " f.write(etree.tostring(root, pretty_print=True, encoding='utf-8', xml_declaration=True))\n", + "\n", + " except Exception as e:\n", + " print(f\"Error processing {os.path.basename(mei_file_path)}: {e}\")\n", + "\n", + "# Replace the original apply_metadata with the fixed version\n", + "MEI_Metadata_Updater.apply_metadata = apply_metadata_fixed" + ], + "metadata": { + "id": "hIKjQBVxIKTJ" + }, + "execution_count": 314, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "# Load metadata CSV from Gsheet:\n", + "metadata_csv_url = \"https://docs.google.com/spreadsheets/d/1bdme5pDjX7Rolr_2dDEa5lcWJD1audjeBCyR4dyLg4s/export?format=csv&gid=1213086678\"\n", + "\n", + "# a dataframe from that sheet\n", + "df = pd.read_csv(metadata_csv_url).fillna('')\n", + "\n", + "# a list of dictionaries from the dataframe\n", + "gesualdo_metadata_dict_list = df.to_dict(orient='records')" + ], + "metadata": { + "id": "wKWxDHdfKRlH" + }, + "execution_count": 315, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "mei_paths = glob.glob('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/*')\n", + "output_folder = '/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output'" + ], + "metadata": { + "id": "FMkqfoSFLZ-V" + }, + "execution_count": 316, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "metadata_updater = MEI_Metadata_Updater()" + ], + "metadata": { + "id": "Y3uf-eO1NZ_L" + }, + "execution_count": 317, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "6c353723", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "outputId": "6e441cb3-c3f8-4580-dfcc-c6f49fb681df" + }, + "source": [ + "pairs_to_process = []\n", + "for mei_path in mei_paths:\n", + " mei_file_name = os.path.basename(mei_path)\n", + " matching_dict = next((item for item in gesualdo_metadata_dict_list if item['MEI_Name'] == mei_file_name), None)\n", + " tup = mei_path, matching_dict\n", + " pairs_to_process.append(tup)\n", + "\n", + "display(pairs_to_process)" + ], + "execution_count": 318, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/plain": [ + "[('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2729_In_te_Domine_speravi_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2727_All_ombra_degli_allori_RDB.mei',\n", + " {'RDL_ID': 2727,\n", + " 'MEI_Name': '2727_All_ombra_degli_allori_RDB.mei',\n", + " 'Title': \"All'ombra degli allori\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2727/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#205 Ottavo libro de Madrigali, A Cinque Voci, di Pomponio Nenna Cavilier di Cesare',\n", + " 'Source_Position': '18',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2728_Come_vivi_cor_mio_RDB.mei',\n", + " {'RDL_ID': 2728,\n", + " 'MEI_Name': '2728_Come_vivi_cor_mio_RDB.mei',\n", + " 'Title': 'Come vivi, Cor mio',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2728/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#205 Ottavo libro de Madrigali, A Cinque Voci, di Pomponio Nenna Cavilier di Cesare',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2726_Ne_reminiscaris_1585_02_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2559a_Baci_soavi_RDB.mei',\n", + " {'RDL_ID': 2559,\n", + " 'MEI_Name': '2559a_Baci_soavi_RDB.mei',\n", + " 'Title': 'Baci soavi e cari',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2559/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2561_Com_esser_puo_RDB.mei',\n", + " {'RDL_ID': 2561,\n", + " 'MEI_Name': '2561_Com_esser_puo_RDB.mei',\n", + " 'Title': \"Com'esser può ch'io viva se m'uccidi\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2561/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2563b_Mentre_Madonna_RDB.mei',\n", + " {'RDL_ID': 2563,\n", + " 'MEI_Name': '2563b_Mentre_Madonna_RDB.mei',\n", + " 'Title': 'Mentre madonna il lasso fianco posa',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2563/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2565_Si_gioioso_RDB.mei',\n", + " {'RDL_ID': 2565,\n", + " 'MEI_Name': '2565_Si_gioioso_RDB.mei',\n", + " 'Title': 'Sì gioioso mi fanno i dolor miei',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2565/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2567a_Tirsi_morir_volea_RDB.mei',\n", + " {'RDL_ID': 2567,\n", + " 'MEI_Name': '2567a_Tirsi_morir_volea_RDB.mei',\n", + " 'Title': 'Tirsi morir volea',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2567/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2567b_Tirsi_morir_volea_RDB.mei',\n", + " {'RDL_ID': 2567,\n", + " 'MEI_Name': '2567b_Tirsi_morir_volea_RDB.mei',\n", + " 'Title': 'Tirsi morir volea',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2567/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2568_Mentre_mia_stella_RDB.mei',\n", + " {'RDL_ID': 2568,\n", + " 'MEI_Name': '2568_Mentre_mia_stella_RDB.mei',\n", + " 'Title': 'Mentre, mia stella, miri',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2568/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/1021_Son_si_belle_RDB.mei',\n", + " {'RDL_ID': 1021,\n", + " 'MEI_Name': '1021_Son_si_belle_RDB.mei',\n", + " 'Title': 'Son sì belle le rose',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1021/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '19 | 14',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector ',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | | https://orcid.org/0009-0004-9844-9662',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2572_Bella_angioletta_RDB.mei',\n", + " {'RDL_ID': 2572,\n", + " 'MEI_Name': '2572_Bella_angioletta_RDB.mei',\n", + " 'Title': \"Bell'angioletta da le vaghe piume\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2572/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2573a_Caro_amoroso_neo_RDB.mei',\n", + " {'RDL_ID': 2573,\n", + " 'MEI_Name': '2573a_Caro_amoroso_neo_RDB.mei',\n", + " 'Title': 'Caro amoroso neo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2573/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2562_Gel_ha_madonna_RDB.mei',\n", + " {'RDL_ID': 2562,\n", + " 'MEI_Name': '2562_Gel_ha_madonna_RDB.mei',\n", + " 'Title': 'Gelo ha madonna il seno e fiamma il volto',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2562/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2563a_Mentre_Madonna_RDB.mei',\n", + " {'RDL_ID': 2563,\n", + " 'MEI_Name': '2563a_Mentre_Madonna_RDB.mei',\n", + " 'Title': 'Mentre madonna il lasso fianco posa',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2563/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2559b_Baci_soavi_RDB.mei',\n", + " {'RDL_ID': 2559,\n", + " 'MEI_Name': '2559b_Baci_soavi_RDB.mei',\n", + " 'Title': 'Baci soavi e cari',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2559/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2564a_Se_da_si_nobil_RDB.mei',\n", + " {'RDL_ID': 2564,\n", + " 'MEI_Name': '2564a_Se_da_si_nobil_RDB.mei',\n", + " 'Title': 'Se da sì nobil mano',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2564/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2564b_Se_da_si_nobil_RDB.mei',\n", + " {'RDL_ID': 2564,\n", + " 'MEI_Name': '2564b_Se_da_si_nobil_RDB.mei',\n", + " 'Title': 'Se da sì nobil mano',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2564/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2566_O_dolce_RDB.mei',\n", + " {'RDL_ID': 2566,\n", + " 'MEI_Name': '2566_O_dolce_RDB.mei',\n", + " 'Title': 'O dolce mio martire',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2566/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '8',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2569_Non_mirar_RDB.mei',\n", + " {'RDL_ID': 2569,\n", + " 'MEI_Name': '2569_Non_mirar_RDB.mei',\n", + " 'Title': 'Non mirar, non mirare',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2569/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '11',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2570_Questi_leggiadri_RDB.mei',\n", + " {'RDL_ID': 2570,\n", + " 'MEI_Name': '2570_Questi_leggiadri_RDB.mei',\n", + " 'Title': 'Questi leggiadri odorosetti fiori',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2570/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2571a_Felice_primavera_RDB.mei',\n", + " {'RDL_ID': 2571,\n", + " 'MEI_Name': '2571a_Felice_primavera_RDB.mei',\n", + " 'Title': 'Felice primavera',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2571/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2571b_Felice_primavera_RDB.mei',\n", + " {'RDL_ID': 2571,\n", + " 'MEI_Name': '2571b_Felice_primavera_RDB.mei',\n", + " 'Title': 'Felice primavera',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2571/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2573b_Caro_amoroso_neo_RDB.mei',\n", + " {'RDL_ID': 2573,\n", + " 'MEI_Name': '2573b_Caro_amoroso_neo_RDB.mei',\n", + " 'Title': 'Caro amoroso neo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2573/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2574_Hai_rotto_RDB.mei',\n", + " {'RDL_ID': 2574,\n", + " 'MEI_Name': '2574_Hai_rotto_RDB.mei',\n", + " 'Title': 'Hai rotto e sciolto e spento a poco a poco',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2574/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '2',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2575a_Se_per_lieve_RDB.mei',\n", + " {'RDL_ID': 2575,\n", + " 'MEI_Name': '2575a_Se_per_lieve_RDB.mei',\n", + " 'Title': 'Se per lieve ferita',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2575/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2576_In_piu_leggiadro_velo_RDB.mei',\n", + " {'RDL_ID': 2576,\n", + " 'MEI_Name': '2576_In_piu_leggiadro_velo_RDB.mei',\n", + " 'Title': 'In più leggiadro velo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2576/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2577a_Se_cosi_dolce_RDB.mei',\n", + " {'RDL_ID': 2577,\n", + " 'MEI_Name': '2577a_Se_cosi_dolce_RDB.mei',\n", + " 'Title': 'Se così dolce è il duolo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2577/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2578_Se_taccio_il_duol_RDB.mei',\n", + " {'RDL_ID': 2578,\n", + " 'MEI_Name': '2578_Se_taccio_il_duol_RDB.mei',\n", + " 'Title': \"Se taccio, il duol s'avanza\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2578/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2579a_O_com_e_gran_martire_RDB.mei',\n", + " {'RDL_ID': 2579,\n", + " 'MEI_Name': '2579a_O_com_e_gran_martire_RDB.mei',\n", + " 'Title': 'O come è gran martire',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2579/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2579b_O_com_e_gran_martire_RDB.mei',\n", + " {'RDL_ID': 2579,\n", + " 'MEI_Name': '2579b_O_com_e_gran_martire_RDB.mei',\n", + " 'Title': 'O come è gran martire',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2579/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2580_Sento_che_nel_partire_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2581a_Non_e_questa_RDB.mei',\n", + " {'RDL_ID': 2581,\n", + " 'MEI_Name': '2581a_Non_e_questa_RDB.mei',\n", + " 'Title': 'Non è questa la mano',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2581/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2581b_Non_e_questa_RDB.mei',\n", + " {'RDL_ID': 2581,\n", + " 'MEI_Name': '2581b_Non_e_questa_RDB.mei',\n", + " 'Title': 'Non è questa la mano',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2581/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2582_Candida_man_RDB.mei',\n", + " {'RDL_ID': 2582,\n", + " 'MEI_Name': '2582_Candida_man_RDB.mei',\n", + " 'Title': 'Candida man qual neve agli occhi offerse',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2582/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/1018a_Dalle_odorate_spoglie_RDB.mei',\n", + " {'RDL_ID': 1018,\n", + " 'MEI_Name': '1018a_Dalle_odorate_spoglie_RDB.mei',\n", + " 'Title': 'Dalle odorate spoglie',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1018/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '16 | 11',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector ',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | | https://orcid.org/0009-0004-9844-9662',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/1018b_Dalle_odorate_spoglie_RDB.mei',\n", + " {'RDL_ID': 1018,\n", + " 'MEI_Name': '1018b_Dalle_odorate_spoglie_RDB.mei',\n", + " 'Title': 'Dalle odorate spoglie',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1018/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '16 | 11',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector ',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | | https://orcid.org/0009-0004-9844-9662',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2583_Non_mai_non_cangero_RDB.mei',\n", + " {'RDL_ID': 2583,\n", + " 'MEI_Name': '2583_Non_mai_non_cangero_RDB.mei',\n", + " 'Title': 'Non mai non cangerò',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2583/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2584_All_apparir_di_quelle_RDB.mei',\n", + " {'RDL_ID': 2584,\n", + " 'MEI_Name': '2584_All_apparir_di_quelle_RDB.mei',\n", + " 'Title': \"All'apparir di quelle luci ardenti\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2584/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2585_Non_mi_toglia_RDB.mei',\n", + " {'RDL_ID': 2585,\n", + " 'MEI_Name': '2585_Non_mi_toglia_RDB.mei',\n", + " 'Title': 'Non mi toglia il ben mio',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2585/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2586a_Voi_volete_RDB.mei',\n", + " {'RDL_ID': 2586,\n", + " 'MEI_Name': '2586a_Voi_volete_RDB.mei',\n", + " 'Title': \"Voi volete ch'io mora\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2586/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2586b_Voi_volete_RDB.mei',\n", + " {'RDL_ID': 2586,\n", + " 'MEI_Name': '2586b_Voi_volete_RDB.mei',\n", + " 'Title': \"Voi volete ch'io mora\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2586/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2587_Ahi_disperata_RDB.mei',\n", + " {'RDL_ID': 2587,\n", + " 'MEI_Name': '2587_Ahi_disperata_RDB.mei',\n", + " 'Title': 'Ahi, disperata vita',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2587/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '2',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2575b_Se_per_lieve_RDB.mei',\n", + " {'RDL_ID': 2575,\n", + " 'MEI_Name': '2575b_Se_per_lieve_RDB.mei',\n", + " 'Title': 'Se per lieve ferita',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2575/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2730a_Canzon_francese_del_Principe_dim_def_RDB.mei',\n", + " {'RDL_ID': 2730,\n", + " 'MEI_Name': '2730a_Canzon_francese_del_Principe_dim_def_RDB.mei',\n", + " 'Title': 'Canzon franzese del Principe',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2730/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#964 GB-Lbl, MS Add. 30491',\n", + " 'Source_Position': '',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei',\n", + " {'RDL_ID': 2730,\n", + " 'MEI_Name': '2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei',\n", + " 'Title': 'Canzon franzese del Principe',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2730/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#964 GB-Lbl, MS Add. 30491',\n", + " 'Source_Position': '',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2588_Languisco_e_moro_RDB.mei',\n", + " {'RDL_ID': 2588,\n", + " 'MEI_Name': '2588_Languisco_e_moro_RDB.mei',\n", + " 'Title': 'Languisco e moro, ahi, cruda',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2588/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2589_Del_bel_de_bei_RDB.mei',\n", + " {'RDL_ID': 2589,\n", + " 'MEI_Name': '2589_Del_bel_de_bei_RDB.mei',\n", + " 'Title': \"Del bel de' bei vostri occhi\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2589/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2590_Ahi_dispietata_RDB.mei',\n", + " {'RDL_ID': 2590,\n", + " 'MEI_Name': '2590_Ahi_dispietata_RDB.mei',\n", + " 'Title': 'Ahi, dispietata e cruda',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2590/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2591_Dolce_spirto_RDB.mei',\n", + " {'RDL_ID': 2591,\n", + " 'MEI_Name': '2591_Dolce_spirto_RDB.mei',\n", + " 'Title': \"Dolce spirto d'Amore\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2591/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2592a_Sospirava_il_mio_core_RDB.mei',\n", + " {'RDL_ID': 2592,\n", + " 'MEI_Name': '2592a_Sospirava_il_mio_core_RDB.mei',\n", + " 'Title': 'Sospirava il mio core',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2592/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2592b_Sospirava_il_mio_core_RDB.mei',\n", + " {'RDL_ID': 2592,\n", + " 'MEI_Name': '2592b_Sospirava_il_mio_core_RDB.mei',\n", + " 'Title': 'Sospirava il mio core',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2592/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2593_Veggio_si_dal_mio_sole_RDB.mei',\n", + " {'RDL_ID': 2593,\n", + " 'MEI_Name': '2593_Veggio_si_dal_mio_sole_RDB.mei',\n", + " 'Title': 'Veggio sì dal mio sole',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2593/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '8',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2594_Non_t_amo_RDB.mei',\n", + " {'RDL_ID': 2594,\n", + " 'MEI_Name': '2594_Non_t_amo_RDB.mei',\n", + " 'Title': '\"Non t\\'amo\", o voce ingrata',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2594/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2595a_Meraviglia_d_Amore_RDB.mei',\n", + " {'RDL_ID': 2595,\n", + " 'MEI_Name': '2595a_Meraviglia_d_Amore_RDB.mei',\n", + " 'Title': \"Meraviglia d'Amore\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2595/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2595b_Meraviglia_d_Amore_RDB.mei',\n", + " {'RDL_ID': 2595,\n", + " 'MEI_Name': '2595b_Meraviglia_d_Amore_RDB.mei',\n", + " 'Title': \"Meraviglia d'Amore\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2595/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2596_Crudelissima_doglia_RDB.mei',\n", + " {'RDL_ID': 2596,\n", + " 'MEI_Name': '2596_Crudelissima_doglia_RDB.mei',\n", + " 'Title': 'Crudelissima doglia',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2596/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '11',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2597_Se_piange_ohime_RDB.mei',\n", + " {'RDL_ID': 2597,\n", + " 'MEI_Name': '2597_Se_piange_ohime_RDB.mei',\n", + " 'Title': 'Se piange, ohimè, la donna del mio core',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2597/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2598_Ancidetemi_pur_RDB.mei',\n", + " {'RDL_ID': 2598,\n", + " 'MEI_Name': '2598_Ancidetemi_pur_RDB.mei',\n", + " 'Title': 'Ancidetemi pur, grievi martiri',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2598/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2599_Se_vi_miro_RDB.mei',\n", + " {'RDL_ID': 2599,\n", + " 'MEI_Name': '2599_Se_vi_miro_RDB.mei',\n", + " 'Title': 'Se vi miro pietosa',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2599/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2600_Deh_se_gia_fu_crudel_RDB.mei',\n", + " {'RDL_ID': 2600,\n", + " 'MEI_Name': '2600_Deh_se_gia_fu_crudel_RDB.mei',\n", + " 'Title': 'Deh, se già fu crudele al mio martire',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2600/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2601_Dolcissimo_sospiro_RDB.mei',\n", + " {'RDL_ID': 2601,\n", + " 'MEI_Name': '2601_Dolcissimo_sospiro_RDB.mei',\n", + " 'Title': 'Dolcissimo sospiro',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2601/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '16',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2602_Donna_se_m_ancidete_RDB.mei',\n", + " {'RDL_ID': 2602,\n", + " 'MEI_Name': '2602_Donna_se_m_ancidete_RDB.mei',\n", + " 'Title': \"Donna, se m'ancidete\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2602/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2604_Talor_sano_desio_RDB.mei',\n", + " {'RDL_ID': 2604,\n", + " 'MEI_Name': '2604_Talor_sano_desio_RDB.mei',\n", + " 'Title': 'Talor sano desio',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2604/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '2',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2603_Luci_serene_RDB.mei',\n", + " {'RDL_ID': 2603,\n", + " 'MEI_Name': '2603_Luci_serene_RDB.mei',\n", + " 'Title': 'Luci serene e chiare',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2603/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2605a_Io_tacero_RDB.mei',\n", + " {'RDL_ID': 2605,\n", + " 'MEI_Name': '2605a_Io_tacero_RDB.mei',\n", + " 'Title': 'Io tacerò, ma nel silenzio moi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2605/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2605b_Io_tacero_RDB.mei',\n", + " {'RDL_ID': 2605,\n", + " 'MEI_Name': '2605b_Io_tacero_RDB.mei',\n", + " 'Title': 'Io tacerò, ma nel silenzio moi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2605/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2606_Che_fai_meco_RDB.mei',\n", + " {'RDL_ID': 2606,\n", + " 'MEI_Name': '2606_Che_fai_meco_RDB.mei',\n", + " 'Title': 'Che fai meco, mio cor misero e solo?',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2606/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2607_Questa_crudele_RDB.mei',\n", + " {'RDL_ID': 2607,\n", + " 'MEI_Name': '2607_Questa_crudele_RDB.mei',\n", + " 'Title': 'Questa crudele e pia',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2607/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2608a_Or_che_in_gioia_RDB.mei',\n", + " {'RDL_ID': 2608,\n", + " 'MEI_Name': '2608a_Or_che_in_gioia_RDB.mei',\n", + " 'Title': 'Or che in gioia credea viver contento',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2608/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2608b_Or_che_in_gioia_RDB.mei',\n", + " {'RDL_ID': 2608,\n", + " 'MEI_Name': '2608b_Or_che_in_gioia_RDB.mei',\n", + " 'Title': 'Or che in gioia credea viver contento',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2608/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1596.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2609a_Cor_mio_deh_non_piangete_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2609b_cor_mio_deh_non_piangete_RDB.mei',\n", + " {'RDL_ID': 2609,\n", + " 'MEI_Name': '2609b_cor_mio_deh_non_piangete_RDB.mei',\n", + " 'Title': 'Cor mio, deh, non piangete',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2609/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2610_Sparge_la_morte_RDB.mei',\n", + " {'RDL_ID': 2610,\n", + " 'MEI_Name': '2610_Sparge_la_morte_RDB.mei',\n", + " 'Title': 'Sparge la morte al mio signor nel viso',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2610/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '8',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2611a_Moro_e_mentre_sospiro_RDB.mei',\n", + " {'RDL_ID': 2611,\n", + " 'MEI_Name': '2611a_Moro_e_mentre_sospiro_RDB.mei',\n", + " 'Title': 'Moro e mentre sospiro',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2611/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2611b_Moro_e_mentre_sospiro_RDB.mei',\n", + " {'RDL_ID': 2611,\n", + " 'MEI_Name': '2611b_Moro_e_mentre_sospiro_RDB.mei',\n", + " 'Title': 'Moro e mentre sospiro',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2611/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2612_Mentre_gira_costei_RDB.mei',\n", + " {'RDL_ID': 2612,\n", + " 'MEI_Name': '2612_Mentre_gira_costei_RDB.mei',\n", + " 'Title': 'Mentre gira costei',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2612/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2613_A_voi_mentre_il_mio_core_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2614a_Ecco_moriro_dunque_RDB.mei',\n", + " {'RDL_ID': 2614,\n", + " 'MEI_Name': '2614a_Ecco_moriro_dunque_RDB.mei',\n", + " 'Title': 'Ecco, morirò dunque',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2614/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2615_Arde_il_mio_cor_RDB.mei',\n", + " {'RDL_ID': 2615,\n", + " 'MEI_Name': '2615_Arde_il_mio_cor_RDB.mei',\n", + " 'Title': 'Arde il mio cor ed è sì dolce il foco',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2615/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2616_Se_chiudete_nel_core_RDB.mei',\n", + " {'RDL_ID': 2616,\n", + " 'MEI_Name': '2616_Se_chiudete_nel_core_RDB.mei',\n", + " 'Title': 'Se chiudete nel core',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2616/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2617a_Il_sol_RDB.mei',\n", + " {'RDL_ID': 2617,\n", + " 'MEI_Name': '2617a_Il_sol_RDB.mei',\n", + " 'Title': 'Il sol, qualor più splende',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2617/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2617b_Il_sol_RDB.mei',\n", + " {'RDL_ID': 2617,\n", + " 'MEI_Name': '2617b_Il_sol_RDB.mei',\n", + " 'Title': 'Il sol, qualor più splende',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2617/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2618_Gioite_voi_RDB.mei',\n", + " {'RDL_ID': 2618,\n", + " 'MEI_Name': '2618_Gioite_voi_RDB.mei',\n", + " 'Title': 'Gioite voi col canto',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2618/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2619_S_io_non_miro_RDB.mei',\n", + " {'RDL_ID': 2619,\n", + " 'MEI_Name': '2619_S_io_non_miro_RDB.mei',\n", + " 'Title': \"S'io non miro non moro\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2619/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '2',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2620_Itene_o_miei_sospiri_RDB.mei',\n", + " {'RDL_ID': 2620,\n", + " 'MEI_Name': '2620_Itene_o_miei_sospiri_RDB.mei',\n", + " 'Title': 'Itene, o miei sospiri',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2620/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2621_Dolcissima_mia_vita_RDB.mei',\n", + " {'RDL_ID': 2621,\n", + " 'MEI_Name': '2621_Dolcissima_mia_vita_RDB.mei',\n", + " 'Title': 'Dolcissima mia vita',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2621/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2622_O_dolorosa_gioia_RDB.mei',\n", + " {'RDL_ID': 2622,\n", + " 'MEI_Name': '2622_O_dolorosa_gioia_RDB.mei',\n", + " 'Title': 'O dolorosa gioia',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2622/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2623_Qual_fora_donna_RDB.mei',\n", + " {'RDL_ID': 2623,\n", + " 'MEI_Name': '2623_Qual_fora_donna_RDB.mei',\n", + " 'Title': 'Qual fora, donna, un dolce \"Ohimè\" d\\'amore',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2623/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2624_Felicissimo_sonno_RDB.mei',\n", + " {'RDL_ID': 2624,\n", + " 'MEI_Name': '2624_Felicissimo_sonno_RDB.mei',\n", + " 'Title': 'Felicissimo sonno',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2624/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2625_Se_vi_duol_RDB.mei',\n", + " {'RDL_ID': 2625,\n", + " 'MEI_Name': '2625_Se_vi_duol_RDB.mei',\n", + " 'Title': 'Se vi duol il mio duolo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2625/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '8',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2626_Occhi_del_mio_cor_RDB.mei',\n", + " {'RDL_ID': 2626,\n", + " 'MEI_Name': '2626_Occhi_del_mio_cor_RDB.mei',\n", + " 'Title': 'Occhi, del mio cor vita',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2626/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2627_Languisce_al_fin_RDB.mei',\n", + " {'RDL_ID': 2627,\n", + " 'MEI_Name': '2627_Languisce_al_fin_RDB.mei',\n", + " 'Title': 'Languisce al fin chi da la vita parte',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2627/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2628_Merce_grido_RDB.mei',\n", + " {'RDL_ID': 2628,\n", + " 'MEI_Name': '2628_Merce_grido_RDB.mei',\n", + " 'Title': 'Mercé grido piangendo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2628/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '11',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2629_O_voi_RDB.mei',\n", + " {'RDL_ID': 2629,\n", + " 'MEI_Name': '2629_O_voi_RDB.mei',\n", + " 'Title': 'O voi troppo felici',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2629/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2630_Correte_amanti_RDB.mei',\n", + " {'RDL_ID': 2630,\n", + " 'MEI_Name': '2630_Correte_amanti_RDB.mei',\n", + " 'Title': 'Correte, amanti, a prova',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2630/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2631_Asciugate_RDB.mei',\n", + " {'RDL_ID': 2631,\n", + " 'MEI_Name': '2631_Asciugate_RDB.mei',\n", + " 'Title': 'Asciugate i begli occhi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2631/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2632_Tu_m_uccidi_RDB.mei',\n", + " {'RDL_ID': 2632,\n", + " 'MEI_Name': '2632_Tu_m_uccidi_RDB.mei',\n", + " 'Title': \"Tu m'uccidi, o crudele\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2632/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2633_Deh_coprite_RDB.mei',\n", + " {'RDL_ID': 2633,\n", + " 'MEI_Name': '2633_Deh_coprite_RDB.mei',\n", + " 'Title': 'Deh, coprite il bel seno',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2633/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '16',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2634a_Poiche_l_avida_sete_RDB.mei',\n", + " {'RDL_ID': 2634,\n", + " 'MEI_Name': '2634a_Poiche_l_avida_sete_RDB.mei',\n", + " 'Title': \"Poiché l'avida sete\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2634/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2634b_Poiche_l_avida_sete_RDB.mei',\n", + " {'RDL_ID': 2634,\n", + " 'MEI_Name': '2634b_Poiche_l_avida_sete_RDB.mei',\n", + " 'Title': \"Poiché l'avida sete\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2634/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2635_O_tenebroso_giorno_RDB.mei',\n", + " {'RDL_ID': 2635,\n", + " 'MEI_Name': '2635_O_tenebroso_giorno_RDB.mei',\n", + " 'Title': 'O tenebroso giorno',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2635/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '18',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2636_Se_tu_fuggi_RDB.mei',\n", + " {'RDL_ID': 2636,\n", + " 'MEI_Name': '2636_Se_tu_fuggi_RDB.mei',\n", + " 'Title': 'Se tu fuggi, io non resto',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2636/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2637_T_amo_mia_vita_RDB.mei',\n", + " {'RDL_ID': 2637,\n", + " 'MEI_Name': '2637_T_amo_mia_vita_RDB.mei',\n", + " 'Title': '\"T\\'amo, mia vita!\", la mia cara vita',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2637/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_Position': '20',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2538_Se_la_mia_morte_RDB.mei',\n", + " {'RDL_ID': 2638,\n", + " 'MEI_Name': '2538_Se_la_mia_morte_RDB.mei',\n", + " 'Title': 'Se la mia morte brami',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2638/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2639_Belta_poi_che_RDB.mei',\n", + " {'RDL_ID': 2639,\n", + " 'MEI_Name': '2639_Belta_poi_che_RDB.mei',\n", + " 'Title': \"Beltà, poi che t'assenti\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2639/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '2',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2640_Tu_segui_RDB.mei',\n", + " {'RDL_ID': 2640,\n", + " 'MEI_Name': '2640_Tu_segui_RDB.mei',\n", + " 'Title': 'Tu segui, o bella Clori',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2640/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2641_Resta_di_darmi_noia_RDB.mei',\n", + " {'RDL_ID': 2641,\n", + " 'MEI_Name': '2641_Resta_di_darmi_noia_RDB.mei',\n", + " 'Title': 'Resta di darmi noia',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2641/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2642_Chiaro_risplender_RDB.mei',\n", + " {'RDL_ID': 2642,\n", + " 'MEI_Name': '2642_Chiaro_risplender_RDB.mei',\n", + " 'Title': 'Chiaro risplender suole',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2642/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2643_Io_parto_RDB.mei',\n", + " {'RDL_ID': 2643,\n", + " 'MEI_Name': '2643_Io_parto_RDB.mei',\n", + " 'Title': '\"Io parto\" e non più dissi, ché il dolore',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2643/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2644_Mille_volte_RDB.mei',\n", + " {'RDL_ID': 2644,\n", + " 'MEI_Name': '2644_Mille_volte_RDB.mei',\n", + " 'Title': 'Mille volte il dì moro',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2644/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2645_O_dolce_mio_tesoro_RDB.mei',\n", + " {'RDL_ID': 2645,\n", + " 'MEI_Name': '2645_O_dolce_mio_tesoro_RDB.mei',\n", + " 'Title': 'O dolce mio tesoro',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2645/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '8',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2646_Deh_come_invan_RDB.mei',\n", + " {'RDL_ID': 2646,\n", + " 'MEI_Name': '2646_Deh_come_invan_RDB.mei',\n", + " 'Title': 'Deh, come invan sospiro',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2646/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2647_Io_pur_respiro_RDB.mei',\n", + " {'RDL_ID': 2647,\n", + " 'MEI_Name': '2647_Io_pur_respiro_RDB.mei',\n", + " 'Title': 'Io pur respiro in così gran dolore',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2647/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2648_Alme_d_Amor_rubelle_RDB.mei',\n", + " {'RDL_ID': 2648,\n", + " 'MEI_Name': '2648_Alme_d_Amor_rubelle_RDB.mei',\n", + " 'Title': \"Alme d'Amor rubelle\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2648/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '11',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2649_Candido_e_verde_fiore_RDB.mei',\n", + " {'RDL_ID': 2649,\n", + " 'MEI_Name': '2649_Candido_e_verde_fiore_RDB.mei',\n", + " 'Title': 'Candido e verde fiore',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2649/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1616.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2650_Ardita_zanzaretta_RDB.mei',\n", + " {'RDL_ID': 2650,\n", + " 'MEI_Name': '2650_Ardita_zanzaretta_RDB.mei',\n", + " 'Title': 'Ardita zanzaretta',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2650/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2651_Ardo_per_te_RDB.mei',\n", + " {'RDL_ID': 2651,\n", + " 'MEI_Name': '2651_Ardo_per_te_RDB.mei',\n", + " 'Title': 'Ardo per te, mio bene',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2651/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2652_Ancide_sol_RDB.mei',\n", + " {'RDL_ID': 2652,\n", + " 'MEI_Name': '2652_Ancide_sol_RDB.mei',\n", + " 'Title': 'Ancide sol la morte',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2652/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2653_Quel_no_crudel_RDB.mei',\n", + " {'RDL_ID': 2653,\n", + " 'MEI_Name': '2653_Quel_no_crudel_RDB.mei',\n", + " 'Title': 'Quel \"no\" crudel che la mia speme ancise',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2653/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '16',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2654_Moro_lasso_RDB.mei',\n", + " {'RDL_ID': 2654,\n", + " 'MEI_Name': '2654_Moro_lasso_RDB.mei',\n", + " 'Title': 'Moro, lasso, al mio duolo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2654/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2655_Volan_quasi_farfalle_RDB.mei',\n", + " {'RDL_ID': 2655,\n", + " 'MEI_Name': '2655_Volan_quasi_farfalle_RDB.mei',\n", + " 'Title': 'Volan quasi farfalle',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2655/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '18',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2656_Al_mio_gioir_RDB.mei',\n", + " {'RDL_ID': 2656,\n", + " 'MEI_Name': '2656_Al_mio_gioir_RDB.mei',\n", + " 'Title': 'Al mio gioir il ciel si fa sereno',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2656/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2657_Tu_piangi_o_Fille_RDB.mei',\n", + " {'RDL_ID': 2657,\n", + " 'MEI_Name': '2657_Tu_piangi_o_Fille_RDB.mei',\n", + " 'Title': 'Tu piangi, o Fille mia',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2657/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '20',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2658_Ancor_che_per_amarti_RDB.mei',\n", + " {'RDL_ID': 2658,\n", + " 'MEI_Name': '2658_Ancor_che_per_amarti_RDB.mei',\n", + " 'Title': 'Ancor che per amarti io mi consumi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2658/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_Position': '21',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei',\n", + " {'RDL_ID': 2659,\n", + " 'MEI_Name': '2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei',\n", + " 'Title': 'In monte Oliveti. Feria V. In Coena Domini. In j. Noct. - Resp. I',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2659/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei',\n", + " {'RDL_ID': 2660,\n", + " 'MEI_Name': '2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei',\n", + " 'Title': 'Tristis est anima mea. Feria V. In Coena Domini. In j. Noct. - Resp. II',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2660/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '2',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei',\n", + " {'RDL_ID': 2661,\n", + " 'MEI_Name': '2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei',\n", + " 'Title': 'Ecce vidimus eum. Feria V. In Coena Domini. In j. Noct. - Resp. III',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2661/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei',\n", + " {'RDL_ID': 2662,\n", + " 'MEI_Name': '2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei',\n", + " 'Title': 'Amicus meus osculi me. Feria V. In Coena Domini. In ij. Noct. - Resp. IV',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2662/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei',\n", + " {'RDL_ID': 2663,\n", + " 'MEI_Name': '2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei',\n", + " 'Title': 'Iudas mercator pessimus. Feria V. In Coena Domini. In ij. Noct. - Resp. V',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2663/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei',\n", + " {'RDL_ID': 2665,\n", + " 'MEI_Name': '2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei',\n", + " 'Title': 'Eram quasi agnus innocens. Feria V. In Coena Domini. In iij. Noct. - Resp. VII',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2665/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei',\n", + " {'RDL_ID': 2666,\n", + " 'MEI_Name': '2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei',\n", + " 'Title': 'Una hora non potuistis. Feria V. In Coena Domini. In iij. Noct. - Resp. VIII',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2666/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '8',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei',\n", + " {'RDL_ID': 2667,\n", + " 'MEI_Name': '2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei',\n", + " 'Title': 'Seniores populi consilium. Feria V. In Coena Domini. In iij. Noct. - Resp. IX',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2667/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei',\n", + " {'RDL_ID': 2668,\n", + " 'MEI_Name': '2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei',\n", + " 'Title': 'Omnes amici mei. Feria VI. In Parasceve. In j. Noct. - Resp. I',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2668/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei',\n", + " {'RDL_ID': 2669,\n", + " 'MEI_Name': '2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei',\n", + " 'Title': 'Velum templi scissum est. Feria VI. In Parasceve. In j. Noct. - Resp. II',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2669/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '11',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei',\n", + " {'RDL_ID': 2670,\n", + " 'MEI_Name': '2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei',\n", + " 'Title': 'Vinea mea electa. Feria VI. In Parasceve. In j. Noct. - Resp. III',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2670/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei',\n", + " {'RDL_ID': 2671,\n", + " 'MEI_Name': '2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei',\n", + " 'Title': 'Tamquam ad latronem. Feria VI. In Parasceve. In ij. Noct. - Resp. IV',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2671/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei',\n", + " {'RDL_ID': 2672,\n", + " 'MEI_Name': '2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei',\n", + " 'Title': 'Tenebræ factæ sunt. Feria VI. In Parasceve. In ij. Noct. - Resp. V',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2672/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei',\n", + " {'RDL_ID': 2673,\n", + " 'MEI_Name': '2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei',\n", + " 'Title': 'Animam meam dilectam. Feria VI. In Parasceve. In ij. Noct. - Resp. VI',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2673/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei',\n", + " {'RDL_ID': 2674,\n", + " 'MEI_Name': '2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei',\n", + " 'Title': 'Tradiderunt me in manus. Feria VI. In Parasceve. In iij. Noct. - Resp. VII',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2674/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '16',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei',\n", + " {'RDL_ID': 2675,\n", + " 'MEI_Name': '2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei',\n", + " 'Title': 'Iesum tradidit impius. Feria VI. In Parasceve. In iij. Noct. - Resp. VIII',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2675/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei',\n", + " {'RDL_ID': 2676,\n", + " 'MEI_Name': '2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei',\n", + " 'Title': 'Caligaverunt oculi mei. Feria VI. In Parasceve. In iij. Noct. - Resp. IX',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2676/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '18',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei',\n", + " {'RDL_ID': 2677,\n", + " 'MEI_Name': '2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei',\n", + " 'Title': 'Sicut ovis ad occisionem. Sabbati Sancti. In j. Noct. - Resp. I',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2677/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei',\n", + " {'RDL_ID': 2678,\n", + " 'MEI_Name': '2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei',\n", + " 'Title': 'Ierusalem iuge. Sabbati Sancti. In j. Noct. - Resp. II',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2678/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '20',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei',\n", + " {'RDL_ID': 2679,\n", + " 'MEI_Name': '2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei',\n", + " 'Title': 'Plange quasi virgo. Sabbati Sancti. In j. Noct. - Resp. III',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2679/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '21',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei',\n", + " {'RDL_ID': 2680,\n", + " 'MEI_Name': '2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei',\n", + " 'Title': 'Recessit pastor noster. Sabbati Sancti. In ij. Noct. - Resp. IV',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2680/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '22',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei',\n", + " {'RDL_ID': 2681,\n", + " 'MEI_Name': '2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei',\n", + " 'Title': 'O vos omnes. Sabbati Sancti. In ij. Noct. - Resp. V',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2681/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '23',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei',\n", + " {'RDL_ID': 2682,\n", + " 'MEI_Name': '2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei',\n", + " 'Title': 'Ecce quomodo moritur istus. Sabbati Sancti. In ij. Noct. - Resp. VI',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2682/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '24',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei',\n", + " {'RDL_ID': 2683,\n", + " 'MEI_Name': '2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei',\n", + " 'Title': 'Astiterunt reges terræ. Sabbati Sancti. In iij. Noct. - Resp. VII',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2683/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '25',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei',\n", + " {'RDL_ID': 2684,\n", + " 'MEI_Name': '2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei',\n", + " 'Title': 'Æstimatus sum cum descendentibus. Sabbati Sancti. In iij. Noct. - Resp. VIII',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2684/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '26',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei',\n", + " {'RDL_ID': 2685,\n", + " 'MEI_Name': '2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei',\n", + " 'Title': 'Sepulto Domino. Sabbati Sancti. In iij. Noct. - Resp. IX',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2685/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '27',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2686_Benedictus_RDB.mei',\n", + " {'RDL_ID': 2686,\n", + " 'MEI_Name': '2686_Benedictus_RDB.mei',\n", + " 'Title': 'Benedictus',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2686/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '28',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2687_Miserere_RDB.mei',\n", + " {'RDL_ID': 2687,\n", + " 'MEI_Name': '2687_Miserere_RDB.mei',\n", + " 'Title': 'Miserere',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2687/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '29',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei',\n", + " {'RDL_ID': 2664,\n", + " 'MEI_Name': '2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei',\n", + " 'Title': 'Unus ex discipulis meis. Feria V. In Coena Domini. In ij. Noct. - Resp. VI',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2664/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/1369_Ave_regina_cœlorum_RDB.mei',\n", + " {'RDL_ID': 1369,\n", + " 'MEI_Name': '1369_Ave_regina_cœlorum_RDB.mei',\n", + " 'Title': 'Ave regina caelorum [053]',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1369/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2688_Venit_lumen_tuum_RDB.mei',\n", + " {'RDL_ID': 2688,\n", + " 'MEI_Name': '2688_Venit_lumen_tuum_RDB.mei',\n", + " 'Title': 'Venit lumen tuum',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2688/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '2',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2689_Ave_dulcissima_Maria_RDB.mei',\n", + " {'RDL_ID': 2689,\n", + " 'MEI_Name': '2689_Ave_dulcissima_Maria_RDB.mei',\n", + " 'Title': 'Ave dulcissima Maria',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2689/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2690_Reminiscere_miserationum_tuarum_RDB.mei',\n", + " {'RDL_ID': 2690,\n", + " 'MEI_Name': '2690_Reminiscere_miserationum_tuarum_RDB.mei',\n", + " 'Title': 'Reminiscere miserationum tuarum',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2690/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2691_Dignare_me_RDB.mei',\n", + " {'RDL_ID': 2691,\n", + " 'MEI_Name': '2691_Dignare_me_RDB.mei',\n", + " 'Title': 'Dignare me laudare te',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2691/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2692_Sancti_Spiritus_Domine_RDB.mei',\n", + " {'RDL_ID': 2692,\n", + " 'MEI_Name': '2692_Sancti_Spiritus_Domine_RDB.mei',\n", + " 'Title': 'Sancti Spiritus Domine',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2692/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2693_Domine_ne_despicias_deprecationem_meam_RDB.mei',\n", + " {'RDL_ID': 2693,\n", + " 'MEI_Name': '2693_Domine_ne_despicias_deprecationem_meam_RDB.mei',\n", + " 'Title': 'Domine ne despicias',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2693/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2694_Hei_mihi_Domine_RDB.mei',\n", + " {'RDL_ID': 2694,\n", + " 'MEI_Name': '2694_Hei_mihi_Domine_RDB.mei',\n", + " 'Title': 'Hei mihi Domine',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2694/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '8',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2695_Laboravi_in_gemitu_meo_RDB.mei',\n", + " {'RDL_ID': 2695,\n", + " 'MEI_Name': '2695_Laboravi_in_gemitu_meo_RDB.mei',\n", + " 'Title': 'Laboravi in gemitu meo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2695/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2696_Peccantem_me_quotidie_RDB.mei',\n", + " {'RDL_ID': 2696,\n", + " 'MEI_Name': '2696_Peccantem_me_quotidie_RDB.mei',\n", + " 'Title': 'Peccantem me quotidie',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2696/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2697_O_vos_omnes_qui_transitis_RDB.mei',\n", + " {'RDL_ID': 2697,\n", + " 'MEI_Name': '2697_O_vos_omnes_qui_transitis_RDB.mei',\n", + " 'Title': 'O vos omnes qui transitis',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2697/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '11',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2698_Exaudi_Deus_deprecationem_meam_RDB.mei',\n", + " {'RDL_ID': 2698,\n", + " 'MEI_Name': '2698_Exaudi_Deus_deprecationem_meam_RDB.mei',\n", + " 'Title': 'Exaudi Deus deprecationem meam',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2698/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2699_Precibus_et_meritis_RDB.mei',\n", + " {'RDL_ID': 2699,\n", + " 'MEI_Name': '2699_Precibus_et_meritis_RDB.mei',\n", + " 'Title': 'Precibus et meritis',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2699/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2700_O_crux_benedicta_RDB.mei',\n", + " {'RDL_ID': 2700,\n", + " 'MEI_Name': '2700_O_crux_benedicta_RDB.mei',\n", + " 'Title': 'O crux benedicta',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2700/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2701_Tribularer_si_nescirem_RDB.mei',\n", + " {'RDL_ID': 2701,\n", + " 'MEI_Name': '2701_Tribularer_si_nescirem_RDB.mei',\n", + " 'Title': 'Tribularer si nescirem',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2701/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2702_Deus_refugium_et_virtus_RDB.mei',\n", + " {'RDL_ID': 2702,\n", + " 'MEI_Name': '2702_Deus_refugium_et_virtus_RDB.mei',\n", + " 'Title': 'Deus refugium et virtus',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2702/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '16',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2703_Tribulationem_et_dolorem_RDB.mei',\n", + " {'RDL_ID': 2703,\n", + " 'MEI_Name': '2703_Tribulationem_et_dolorem_RDB.mei',\n", + " 'Title': 'Tribulationem et dolorem',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2703/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2704_Illumina_faciem_tuam_RDB.mei',\n", + " {'RDL_ID': 2704,\n", + " 'MEI_Name': '2704_Illumina_faciem_tuam_RDB.mei',\n", + " 'Title': 'Illumina faciem tuam',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2704/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '18',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2705_Maria_Mater_gratiæ_RDB.mei',\n", + " {'RDL_ID': 2705,\n", + " 'MEI_Name': '2705_Maria_Mater_gratiæ_RDB.mei',\n", + " 'Title': 'Maria Mater gratiæ',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2705/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2706_Virgo_benedicta_RDB.mei',\n", + " {'RDL_ID': 2706,\n", + " 'MEI_Name': '2706_Virgo_benedicta_RDB.mei',\n", + " 'Title': 'Virgo benedicta',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2706/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Roma',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2708_Sana_me_Domine_RDB.mei',\n", + " {'RDL_ID': 2708,\n", + " 'MEI_Name': '2708_Sana_me_Domine_RDB.mei',\n", + " 'Title': 'Sana me domine',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2708/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2709_Ave_sanctissima_Maria_RDB.mei',\n", + " {'RDL_ID': 2709,\n", + " 'MEI_Name': '2709_Ave_sanctissima_Maria_RDB.mei',\n", + " 'Title': 'Ave sanctissima Maria',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2709/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2710_O_Oriens_RDB.mei',\n", + " {'RDL_ID': 2710,\n", + " 'MEI_Name': '2710_O_Oriens_RDB.mei',\n", + " 'Title': 'O Oriens',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2710/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2711_Discedite_a_me_omnes_RDB.mei',\n", + " {'RDL_ID': 2711,\n", + " 'MEI_Name': '2711_Discedite_a_me_omnes_RDB.mei',\n", + " 'Title': 'Discedite a me omnes',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2711/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2712_Gaudeamus_omnes_RDB.mei',\n", + " {'RDL_ID': 2712,\n", + " 'MEI_Name': '2712_Gaudeamus_omnes_RDB.mei',\n", + " 'Title': 'Gaudeamus omnes',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2712/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2713_Veni_Creator_Spiritus_RDB.mei',\n", + " {'RDL_ID': 2713,\n", + " 'MEI_Name': '2713_Veni_Creator_Spiritus_RDB.mei',\n", + " 'Title': 'Veni Creator Spiritus',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2713/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '8',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2714_O_sacrum_convivium_RDB.mei',\n", + " {'RDL_ID': 2714,\n", + " 'MEI_Name': '2714_O_sacrum_convivium_RDB.mei',\n", + " 'Title': 'O sacrum convivium',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2714/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2715_Adoramus_te_RDB.mei',\n", + " {'RDL_ID': 2715,\n", + " 'MEI_Name': '2715_Adoramus_te_RDB.mei',\n", + " 'Title': 'Adoramus te Christe',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2715/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2716_Veni_sponsa_Christi_RDB.mei',\n", + " {'RDL_ID': 2716,\n", + " 'MEI_Name': '2716_Veni_sponsa_Christi_RDB.mei',\n", + " 'Title': 'Veni sponsa Christi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2716/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '11',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2718_Verba_mea_RDB.mei',\n", + " {'RDL_ID': 2718,\n", + " 'MEI_Name': '2718_Verba_mea_RDB.mei',\n", + " 'Title': 'Verba mea',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2718/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1618.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2719_Ardens_est_cor_meum_RDB.mei',\n", + " {'RDL_ID': 2719,\n", + " 'MEI_Name': '2719_Ardens_est_cor_meum_RDB.mei',\n", + " 'Title': 'Ardens est cor meum',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2719/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1618.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2720_Ne_derelinquas_me_RDB.mei',\n", + " {'RDL_ID': 2720,\n", + " 'MEI_Name': '2720_Ne_derelinquas_me_RDB.mei',\n", + " 'Title': 'Ne derelinquas me',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2720/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1620.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2722_Ad_te_levavi_RDB.mei',\n", + " {'RDL_ID': 2722,\n", + " 'MEI_Name': '2722_Ad_te_levavi_RDB.mei',\n", + " 'Title': 'Ad te levavi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2722/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2724_O_anima_sanctissima_RDB.mei',\n", + " {'RDL_ID': 2724,\n", + " 'MEI_Name': '2724_O_anima_sanctissima_RDB.mei',\n", + " 'Title': 'O anima sanctissima',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2724/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2725_Illumina_nos_RDB.mei',\n", + " {'RDL_ID': 2725,\n", + " 'MEI_Name': '2725_Illumina_nos_RDB.mei',\n", + " 'Title': 'Illumina nos',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2725/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '20',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2614b_Ecco_moriro_dunque_RDB.mei',\n", + " {'RDL_ID': 2614,\n", + " 'MEI_Name': '2614b_Ecco_moriro_dunque_RDB.mei',\n", + " 'Title': 'Ecco, morirò dunque',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2614/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1614.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2560_Madonna_io_RDB.mei',\n", + " {'RDL_ID': 2560,\n", + " 'MEI_Name': '2560_Madonna_io_RDB.mei',\n", + " 'Title': 'Madonna, io ben vorrei che fusse in voi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2560/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Position': '2',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2577b_Se_cosi_dolce_RDB.mei',\n", + " {'RDL_ID': 2577,\n", + " 'MEI_Name': '2577b_Se_cosi_dolce_RDB.mei',\n", + " 'Title': 'Se così dolce è il duolo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2577/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2707_Da_pacem_domine_RDB.mei',\n", + " {'RDL_ID': 2707,\n", + " 'MEI_Name': '2707_Da_pacem_domine_RDB.mei',\n", + " 'Title': 'Da pacem domine',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2707/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '2',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Roma',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2717_Assumpta es Maria_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2721_O_Beata_Mater_RDB.mei',\n", + " {'RDL_ID': 2721,\n", + " 'MEI_Name': '2721_O_Beata_Mater_RDB.mei',\n", + " 'Title': 'O Beata Mater',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2721/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '16',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2723_Franciscus_humilis_et_pauper_RDB.mei',\n", + " {'RDL_ID': 2723,\n", + " 'MEI_Name': '2723_Franciscus_humilis_et_pauper_RDB.mei',\n", + " 'Title': 'Franciscus humilis et pauper',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2723/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_Position': '18',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/4780_Duedecimo_tono_RDB.mei',\n", + " {'RDL_ID': 4780,\n", + " 'MEI_Name': '4780_Duedecimo_tono_RDB.mei',\n", + " 'Title': '[Ricercar] Duedecimo Tono',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4780/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': 1586.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Roma',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/4779_Settimo_tono_RDB.mei',\n", + " {'RDL_ID': 4779,\n", + " 'MEI_Name': '4779_Settimo_tono_RDB.mei',\n", + " 'Title': '[Ricercar] Settimo Tono',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4779/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque',\n", + " 'Source_Position': '18',\n", + " 'Source_Date': 1586.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Roma',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''}),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/4778_Undecimo_tono_RDB.mei',\n", + " {'RDL_ID': 4778,\n", + " 'MEI_Name': '4778_Undecimo_tono_RDB.mei',\n", + " 'Title': '[Ricercar] Undecimo Tono',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4778/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': 1586.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Roma',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Publisher': '',\n", + " 'Genre': '',\n", + " 'CRIM_ID': '',\n", + " 'CRIM_Person_ID': '',\n", + " 'Mass Title': '',\n", + " 'Piece_Date': '',\n", + " 'Source_Short_Title': '',\n", + " 'Source_Title.1': '',\n", + " 'Source_Publisher_1': '',\n", + " 'Source_Date.1': '',\n", + " 'Source_Reference': '',\n", + " 'Source_Location': '',\n", + " 'Source_Institution': '',\n", + " 'Source_Shelfmark': '',\n", + " 'Editor.1': '',\n", + " 'Last_Revised': '',\n", + " 'Rights_Statement': '',\n", + " 'Copyright_Owner': ''})]" + ] + }, + "metadata": {} + } + ] + }, + { + "cell_type": "code", + "source": [ + "output_folder = '/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output'\n", + "# Ensure the output folder exists\n", + "os.makedirs(output_folder, exist_ok=True)\n", + "\n", + "\n", + "# Assuming your CSV is loaded into a pandas DataFrame named `df_metadata`\n", + "# And the MEI files are listed in `mei_files` as defined previously\n", + "\n", + "# Create an instance of the updater\n", + "metadata_updater = MEI_Metadata_Updater()\n", + "\n", + "# Assuming you have a list of pairs (mei_file_path, metadata_dictionary)\n", + "# as created in the previous steps, e.g., `pairs_to_process`\n", + "\n", + "# Loop through the pairs and apply metadata\n", + "for mei_file_name, matching_dict in pairs_to_process:\n", + " # --- Debugging Print ---\n", + " print(f\"\\nProcessing file: {os.path.basename(mei_file_name)}\")\n", + " print(f\"Metadata dictionary for this file: {matching_dict}\")\n", + " # --- End Debugging Print ---\n", + " metadata_updater.apply_metadata(mei_file_name, matching_dict, output_folder)\n", + "\n", + "print(\"\\nMetadata update process completed.\")" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "DiYNJDrxTd3M", + "outputId": "b8b55771-60b0-4724-9d5d-f1a8e951e778" + }, + "execution_count": 319, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "\n", + "Processing file: 2729_In_te_Domine_speravi_RDB.mei\n", + "Metadata dictionary for this file: None\n", + "Getting 2729_In_te_Domine_speravi_RDB.mei\n", + "Error processing 2729_In_te_Domine_speravi_RDB.mei: 'NoneType' object has no attribute 'get'\n", + "\n", + "Processing file: 2727_All_ombra_degli_allori_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2727, 'MEI_Name': '2727_All_ombra_degli_allori_RDB.mei', 'Title': \"All'ombra degli allori\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2727/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#205 Ottavo libro de Madrigali, A Cinque Voci, di Pomponio Nenna Cavilier di Cesare', 'Source_Position': '18', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2727_All_ombra_degli_allori_RDB.mei\n", + "\n", + "Processing file: 2728_Come_vivi_cor_mio_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2728, 'MEI_Name': '2728_Come_vivi_cor_mio_RDB.mei', 'Title': 'Come vivi, Cor mio', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2728/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#205 Ottavo libro de Madrigali, A Cinque Voci, di Pomponio Nenna Cavilier di Cesare', 'Source_Position': '19', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2728_Come_vivi_cor_mio_RDB.mei\n", + "\n", + "Processing file: 2726_Ne_reminiscaris_1585_02_RDB.mei\n", + "Metadata dictionary for this file: None\n", + "Getting 2726_Ne_reminiscaris_1585_02_RDB.mei\n", + "Error processing 2726_Ne_reminiscaris_1585_02_RDB.mei: 'NoneType' object has no attribute 'get'\n", + "\n", + "Processing file: 2559a_Baci_soavi_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2559, 'MEI_Name': '2559a_Baci_soavi_RDB.mei', 'Title': 'Baci soavi e cari', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2559/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '1', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2559a_Baci_soavi_RDB.mei\n", + "\n", + "Processing file: 2561_Com_esser_puo_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2561, 'MEI_Name': '2561_Com_esser_puo_RDB.mei', 'Title': \"Com'esser può ch'io viva se m'uccidi\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2561/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '3', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2561_Com_esser_puo_RDB.mei\n", + "\n", + "Processing file: 2563b_Mentre_Madonna_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2563, 'MEI_Name': '2563b_Mentre_Madonna_RDB.mei', 'Title': 'Mentre madonna il lasso fianco posa', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2563/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '5', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2563b_Mentre_Madonna_RDB.mei\n", + "\n", + "Processing file: 2565_Si_gioioso_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2565, 'MEI_Name': '2565_Si_gioioso_RDB.mei', 'Title': 'Sì gioioso mi fanno i dolor miei', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2565/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '7', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2565_Si_gioioso_RDB.mei\n", + "\n", + "Processing file: 2567a_Tirsi_morir_volea_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2567, 'MEI_Name': '2567a_Tirsi_morir_volea_RDB.mei', 'Title': 'Tirsi morir volea', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2567/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '9', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2567a_Tirsi_morir_volea_RDB.mei\n", + "\n", + "Processing file: 2567b_Tirsi_morir_volea_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2567, 'MEI_Name': '2567b_Tirsi_morir_volea_RDB.mei', 'Title': 'Tirsi morir volea', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2567/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '9', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2567b_Tirsi_morir_volea_RDB.mei\n", + "\n", + "Processing file: 2568_Mentre_mia_stella_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2568, 'MEI_Name': '2568_Mentre_mia_stella_RDB.mei', 'Title': 'Mentre, mia stella, miri', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2568/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '10', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2568_Mentre_mia_stella_RDB.mei\n", + "\n", + "Processing file: 1021_Son_si_belle_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 1021, 'MEI_Name': '1021_Son_si_belle_RDB.mei', 'Title': 'Son sì belle le rose', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1021/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '19 | 14', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector ', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | | https://orcid.org/0009-0004-9844-9662', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 1021_Son_si_belle_RDB.mei\n", + "\n", + "Processing file: 2572_Bella_angioletta_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2572, 'MEI_Name': '2572_Bella_angioletta_RDB.mei', 'Title': \"Bell'angioletta da le vaghe piume\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2572/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '15', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2572_Bella_angioletta_RDB.mei\n", + "\n", + "Processing file: 2573a_Caro_amoroso_neo_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2573, 'MEI_Name': '2573a_Caro_amoroso_neo_RDB.mei', 'Title': 'Caro amoroso neo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2573/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '1', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2573a_Caro_amoroso_neo_RDB.mei\n", + "\n", + "Processing file: 2562_Gel_ha_madonna_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2562, 'MEI_Name': '2562_Gel_ha_madonna_RDB.mei', 'Title': 'Gelo ha madonna il seno e fiamma il volto', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2562/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '4', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2562_Gel_ha_madonna_RDB.mei\n", + "\n", + "Processing file: 2563a_Mentre_Madonna_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2563, 'MEI_Name': '2563a_Mentre_Madonna_RDB.mei', 'Title': 'Mentre madonna il lasso fianco posa', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2563/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '5', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2563a_Mentre_Madonna_RDB.mei\n", + "\n", + "Processing file: 2559b_Baci_soavi_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2559, 'MEI_Name': '2559b_Baci_soavi_RDB.mei', 'Title': 'Baci soavi e cari', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2559/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '1', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2559b_Baci_soavi_RDB.mei\n", + "\n", + "Processing file: 2564a_Se_da_si_nobil_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2564, 'MEI_Name': '2564a_Se_da_si_nobil_RDB.mei', 'Title': 'Se da sì nobil mano', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2564/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '6', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2564a_Se_da_si_nobil_RDB.mei\n", + "\n", + "Processing file: 2564b_Se_da_si_nobil_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2564, 'MEI_Name': '2564b_Se_da_si_nobil_RDB.mei', 'Title': 'Se da sì nobil mano', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2564/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '6', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2564b_Se_da_si_nobil_RDB.mei\n", + "\n", + "Processing file: 2566_O_dolce_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2566, 'MEI_Name': '2566_O_dolce_RDB.mei', 'Title': 'O dolce mio martire', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2566/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '8', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2566_O_dolce_RDB.mei\n", + "\n", + "Processing file: 2569_Non_mirar_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2569, 'MEI_Name': '2569_Non_mirar_RDB.mei', 'Title': 'Non mirar, non mirare', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2569/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '11', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2569_Non_mirar_RDB.mei\n", + "\n", + "Processing file: 2570_Questi_leggiadri_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2570, 'MEI_Name': '2570_Questi_leggiadri_RDB.mei', 'Title': 'Questi leggiadri odorosetti fiori', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2570/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '12', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2570_Questi_leggiadri_RDB.mei\n", + "\n", + "Processing file: 2571a_Felice_primavera_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2571, 'MEI_Name': '2571a_Felice_primavera_RDB.mei', 'Title': 'Felice primavera', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2571/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '13', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2571a_Felice_primavera_RDB.mei\n", + "\n", + "Processing file: 2571b_Felice_primavera_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2571, 'MEI_Name': '2571b_Felice_primavera_RDB.mei', 'Title': 'Felice primavera', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2571/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '13', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2571b_Felice_primavera_RDB.mei\n", + "\n", + "Processing file: 2573b_Caro_amoroso_neo_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2573, 'MEI_Name': '2573b_Caro_amoroso_neo_RDB.mei', 'Title': 'Caro amoroso neo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2573/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '1', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2573b_Caro_amoroso_neo_RDB.mei\n", + "\n", + "Processing file: 2574_Hai_rotto_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2574, 'MEI_Name': '2574_Hai_rotto_RDB.mei', 'Title': 'Hai rotto e sciolto e spento a poco a poco', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2574/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '2', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2574_Hai_rotto_RDB.mei\n", + "\n", + "Processing file: 2575a_Se_per_lieve_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2575, 'MEI_Name': '2575a_Se_per_lieve_RDB.mei', 'Title': 'Se per lieve ferita', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2575/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '3', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2575a_Se_per_lieve_RDB.mei\n", + "\n", + "Processing file: 2576_In_piu_leggiadro_velo_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2576, 'MEI_Name': '2576_In_piu_leggiadro_velo_RDB.mei', 'Title': 'In più leggiadro velo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2576/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '4', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2576_In_piu_leggiadro_velo_RDB.mei\n", + "\n", + "Processing file: 2577a_Se_cosi_dolce_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2577, 'MEI_Name': '2577a_Se_cosi_dolce_RDB.mei', 'Title': 'Se così dolce è il duolo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2577/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '5', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2577a_Se_cosi_dolce_RDB.mei\n", + "\n", + "Processing file: 2578_Se_taccio_il_duol_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2578, 'MEI_Name': '2578_Se_taccio_il_duol_RDB.mei', 'Title': \"Se taccio, il duol s'avanza\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2578/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '6', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2578_Se_taccio_il_duol_RDB.mei\n", + "\n", + "Processing file: 2579a_O_com_e_gran_martire_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2579, 'MEI_Name': '2579a_O_com_e_gran_martire_RDB.mei', 'Title': 'O come è gran martire', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2579/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '7', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2579a_O_com_e_gran_martire_RDB.mei\n", + "\n", + "Processing file: 2579b_O_com_e_gran_martire_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2579, 'MEI_Name': '2579b_O_com_e_gran_martire_RDB.mei', 'Title': 'O come è gran martire', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2579/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '7', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2579b_O_com_e_gran_martire_RDB.mei\n", + "\n", + "Processing file: 2580_Sento_che_nel_partire_RDB.mei\n", + "Metadata dictionary for this file: None\n", + "Getting 2580_Sento_che_nel_partire_RDB.mei\n", + "Error processing 2580_Sento_che_nel_partire_RDB.mei: 'NoneType' object has no attribute 'get'\n", + "\n", + "Processing file: 2581a_Non_e_questa_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2581, 'MEI_Name': '2581a_Non_e_questa_RDB.mei', 'Title': 'Non è questa la mano', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2581/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '9', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2581a_Non_e_questa_RDB.mei\n", + "\n", + "Processing file: 2581b_Non_e_questa_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2581, 'MEI_Name': '2581b_Non_e_questa_RDB.mei', 'Title': 'Non è questa la mano', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2581/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '9', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2581b_Non_e_questa_RDB.mei\n", + "\n", + "Processing file: 2582_Candida_man_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2582, 'MEI_Name': '2582_Candida_man_RDB.mei', 'Title': 'Candida man qual neve agli occhi offerse', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2582/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '10', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2582_Candida_man_RDB.mei\n", + "\n", + "Processing file: 1018a_Dalle_odorate_spoglie_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 1018, 'MEI_Name': '1018a_Dalle_odorate_spoglie_RDB.mei', 'Title': 'Dalle odorate spoglie', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1018/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '16 | 11', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector ', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | | https://orcid.org/0009-0004-9844-9662', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 1018a_Dalle_odorate_spoglie_RDB.mei\n", + "\n", + "Processing file: 1018b_Dalle_odorate_spoglie_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 1018, 'MEI_Name': '1018b_Dalle_odorate_spoglie_RDB.mei', 'Title': 'Dalle odorate spoglie', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1018/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '16 | 11', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector ', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | | https://orcid.org/0009-0004-9844-9662', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 1018b_Dalle_odorate_spoglie_RDB.mei\n", + "\n", + "Processing file: 2583_Non_mai_non_cangero_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2583, 'MEI_Name': '2583_Non_mai_non_cangero_RDB.mei', 'Title': 'Non mai non cangerò', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2583/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '12', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2583_Non_mai_non_cangero_RDB.mei\n", + "\n", + "Processing file: 2584_All_apparir_di_quelle_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2584, 'MEI_Name': '2584_All_apparir_di_quelle_RDB.mei', 'Title': \"All'apparir di quelle luci ardenti\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2584/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '13', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2584_All_apparir_di_quelle_RDB.mei\n", + "\n", + "Processing file: 2585_Non_mi_toglia_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2585, 'MEI_Name': '2585_Non_mi_toglia_RDB.mei', 'Title': 'Non mi toglia il ben mio', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2585/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '14', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2585_Non_mi_toglia_RDB.mei\n", + "Error processing 2585_Non_mi_toglia_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", + "\n", + "Processing file: 2586a_Voi_volete_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2586, 'MEI_Name': '2586a_Voi_volete_RDB.mei', 'Title': \"Voi volete ch'io mora\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2586/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '1', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2586a_Voi_volete_RDB.mei\n", + "\n", + "Processing file: 2586b_Voi_volete_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2586, 'MEI_Name': '2586b_Voi_volete_RDB.mei', 'Title': \"Voi volete ch'io mora\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2586/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '1', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2586b_Voi_volete_RDB.mei\n", + "\n", + "Processing file: 2587_Ahi_disperata_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2587, 'MEI_Name': '2587_Ahi_disperata_RDB.mei', 'Title': 'Ahi, disperata vita', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2587/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '2', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2587_Ahi_disperata_RDB.mei\n", + "\n", + "Processing file: 2575b_Se_per_lieve_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2575, 'MEI_Name': '2575b_Se_per_lieve_RDB.mei', 'Title': 'Se per lieve ferita', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2575/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '3', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2575b_Se_per_lieve_RDB.mei\n", + "\n", + "Processing file: 2730a_Canzon_francese_del_Principe_dim_def_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2730, 'MEI_Name': '2730a_Canzon_francese_del_Principe_dim_def_RDB.mei', 'Title': 'Canzon franzese del Principe', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2730/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#964 GB-Lbl, MS Add. 30491', 'Source_Position': '', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2730a_Canzon_francese_del_Principe_dim_def_RDB.mei\n", + "Error processing 2730a_Canzon_francese_del_Principe_dim_def_RDB.mei: ID m-2389 already defined, line 3258, column 62 (<string>, line 3258)\n", + "\n", + "Processing file: 2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2730, 'MEI_Name': '2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei', 'Title': 'Canzon franzese del Principe', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2730/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#964 GB-Lbl, MS Add. 30491', 'Source_Position': '', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei\n", + "\n", + "Processing file: 2588_Languisco_e_moro_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2588, 'MEI_Name': '2588_Languisco_e_moro_RDB.mei', 'Title': 'Languisco e moro, ahi, cruda', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2588/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '3', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2588_Languisco_e_moro_RDB.mei\n", + "\n", + "Processing file: 2589_Del_bel_de_bei_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2589, 'MEI_Name': '2589_Del_bel_de_bei_RDB.mei', 'Title': \"Del bel de' bei vostri occhi\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2589/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '4', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2589_Del_bel_de_bei_RDB.mei\n", + "\n", + "Processing file: 2590_Ahi_dispietata_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2590, 'MEI_Name': '2590_Ahi_dispietata_RDB.mei', 'Title': 'Ahi, dispietata e cruda', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2590/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '5', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2590_Ahi_dispietata_RDB.mei\n", + "\n", + "Processing file: 2591_Dolce_spirto_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2591, 'MEI_Name': '2591_Dolce_spirto_RDB.mei', 'Title': \"Dolce spirto d'Amore\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2591/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '6', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2591_Dolce_spirto_RDB.mei\n", + "\n", + "Processing file: 2592a_Sospirava_il_mio_core_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2592, 'MEI_Name': '2592a_Sospirava_il_mio_core_RDB.mei', 'Title': 'Sospirava il mio core', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2592/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '7', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2592a_Sospirava_il_mio_core_RDB.mei\n", + "\n", + "Processing file: 2592b_Sospirava_il_mio_core_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2592, 'MEI_Name': '2592b_Sospirava_il_mio_core_RDB.mei', 'Title': 'Sospirava il mio core', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2592/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '7', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2592b_Sospirava_il_mio_core_RDB.mei\n", + "\n", + "Processing file: 2593_Veggio_si_dal_mio_sole_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2593, 'MEI_Name': '2593_Veggio_si_dal_mio_sole_RDB.mei', 'Title': 'Veggio sì dal mio sole', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2593/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '8', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2593_Veggio_si_dal_mio_sole_RDB.mei\n", + "\n", + "Processing file: 2594_Non_t_amo_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2594, 'MEI_Name': '2594_Non_t_amo_RDB.mei', 'Title': '\"Non t\\'amo\", o voce ingrata', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2594/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '9', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2594_Non_t_amo_RDB.mei\n", + "\n", + "Processing file: 2595a_Meraviglia_d_Amore_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2595, 'MEI_Name': '2595a_Meraviglia_d_Amore_RDB.mei', 'Title': \"Meraviglia d'Amore\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2595/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '10', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2595a_Meraviglia_d_Amore_RDB.mei\n", + "\n", + "Processing file: 2595b_Meraviglia_d_Amore_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2595, 'MEI_Name': '2595b_Meraviglia_d_Amore_RDB.mei', 'Title': \"Meraviglia d'Amore\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2595/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '10', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2595b_Meraviglia_d_Amore_RDB.mei\n", + "\n", + "Processing file: 2596_Crudelissima_doglia_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2596, 'MEI_Name': '2596_Crudelissima_doglia_RDB.mei', 'Title': 'Crudelissima doglia', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2596/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '11', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2596_Crudelissima_doglia_RDB.mei\n", + "\n", + "Processing file: 2597_Se_piange_ohime_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2597, 'MEI_Name': '2597_Se_piange_ohime_RDB.mei', 'Title': 'Se piange, ohimè, la donna del mio core', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2597/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '12', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2597_Se_piange_ohime_RDB.mei\n", + "\n", + "Processing file: 2598_Ancidetemi_pur_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2598, 'MEI_Name': '2598_Ancidetemi_pur_RDB.mei', 'Title': 'Ancidetemi pur, grievi martiri', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2598/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '13', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2598_Ancidetemi_pur_RDB.mei\n", + "\n", + "Processing file: 2599_Se_vi_miro_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2599, 'MEI_Name': '2599_Se_vi_miro_RDB.mei', 'Title': 'Se vi miro pietosa', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2599/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '14', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2599_Se_vi_miro_RDB.mei\n", + "\n", + "Processing file: 2600_Deh_se_gia_fu_crudel_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2600, 'MEI_Name': '2600_Deh_se_gia_fu_crudel_RDB.mei', 'Title': 'Deh, se già fu crudele al mio martire', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2600/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '15', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2600_Deh_se_gia_fu_crudel_RDB.mei\n", + "\n", + "Processing file: 2601_Dolcissimo_sospiro_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2601, 'MEI_Name': '2601_Dolcissimo_sospiro_RDB.mei', 'Title': 'Dolcissimo sospiro', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2601/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '16', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2601_Dolcissimo_sospiro_RDB.mei\n", + "\n", + "Processing file: 2602_Donna_se_m_ancidete_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2602, 'MEI_Name': '2602_Donna_se_m_ancidete_RDB.mei', 'Title': \"Donna, se m'ancidete\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2602/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '17', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2602_Donna_se_m_ancidete_RDB.mei\n", + "\n", + "Processing file: 2604_Talor_sano_desio_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2604, 'MEI_Name': '2604_Talor_sano_desio_RDB.mei', 'Title': 'Talor sano desio', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2604/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '2', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2604_Talor_sano_desio_RDB.mei\n", + "Error processing 2604_Talor_sano_desio_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", + "\n", + "Processing file: 2603_Luci_serene_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2603, 'MEI_Name': '2603_Luci_serene_RDB.mei', 'Title': 'Luci serene e chiare', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2603/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '1', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2603_Luci_serene_RDB.mei\n", + "\n", + "Processing file: 2605a_Io_tacero_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2605, 'MEI_Name': '2605a_Io_tacero_RDB.mei', 'Title': 'Io tacerò, ma nel silenzio moi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2605/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '3', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2605a_Io_tacero_RDB.mei\n", + "Error processing 2605a_Io_tacero_RDB.mei: Blank needed here, line 1, column 38 (<string>, line 1)\n", + "\n", + "Processing file: 2605b_Io_tacero_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2605, 'MEI_Name': '2605b_Io_tacero_RDB.mei', 'Title': 'Io tacerò, ma nel silenzio moi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2605/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '3', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2605b_Io_tacero_RDB.mei\n", + "\n", + "Processing file: 2606_Che_fai_meco_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2606, 'MEI_Name': '2606_Che_fai_meco_RDB.mei', 'Title': 'Che fai meco, mio cor misero e solo?', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2606/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '4', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2606_Che_fai_meco_RDB.mei\n", + "\n", + "Processing file: 2607_Questa_crudele_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2607, 'MEI_Name': '2607_Questa_crudele_RDB.mei', 'Title': 'Questa crudele e pia', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2607/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '5', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2607_Questa_crudele_RDB.mei\n", + "\n", + "Processing file: 2608a_Or_che_in_gioia_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2608, 'MEI_Name': '2608a_Or_che_in_gioia_RDB.mei', 'Title': 'Or che in gioia credea viver contento', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2608/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '6', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2608a_Or_che_in_gioia_RDB.mei\n", + "\n", + "Processing file: 2608b_Or_che_in_gioia_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2608, 'MEI_Name': '2608b_Or_che_in_gioia_RDB.mei', 'Title': 'Or che in gioia credea viver contento', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2608/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '6', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2608b_Or_che_in_gioia_RDB.mei\n", + "\n", + "Processing file: 2609a_Cor_mio_deh_non_piangete_RDB.mei\n", + "Metadata dictionary for this file: None\n", + "Getting 2609a_Cor_mio_deh_non_piangete_RDB.mei\n", + "Error processing 2609a_Cor_mio_deh_non_piangete_RDB.mei: 'NoneType' object has no attribute 'get'\n", + "\n", + "Processing file: 2609b_cor_mio_deh_non_piangete_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2609, 'MEI_Name': '2609b_cor_mio_deh_non_piangete_RDB.mei', 'Title': 'Cor mio, deh, non piangete', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2609/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '7', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2609b_cor_mio_deh_non_piangete_RDB.mei\n", + "\n", + "Processing file: 2610_Sparge_la_morte_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2610, 'MEI_Name': '2610_Sparge_la_morte_RDB.mei', 'Title': 'Sparge la morte al mio signor nel viso', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2610/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '8', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2610_Sparge_la_morte_RDB.mei\n", + "\n", + "Processing file: 2611a_Moro_e_mentre_sospiro_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2611, 'MEI_Name': '2611a_Moro_e_mentre_sospiro_RDB.mei', 'Title': 'Moro e mentre sospiro', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2611/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '9', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2611a_Moro_e_mentre_sospiro_RDB.mei\n", + "\n", + "Processing file: 2611b_Moro_e_mentre_sospiro_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2611, 'MEI_Name': '2611b_Moro_e_mentre_sospiro_RDB.mei', 'Title': 'Moro e mentre sospiro', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2611/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '9', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2611b_Moro_e_mentre_sospiro_RDB.mei\n", + "\n", + "Processing file: 2612_Mentre_gira_costei_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2612, 'MEI_Name': '2612_Mentre_gira_costei_RDB.mei', 'Title': 'Mentre gira costei', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2612/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '10', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2612_Mentre_gira_costei_RDB.mei\n", + "\n", + "Processing file: 2613_A_voi_mentre_il_mio_core_RDB.mei\n", + "Metadata dictionary for this file: None\n", + "Getting 2613_A_voi_mentre_il_mio_core_RDB.mei\n", + "Error processing 2613_A_voi_mentre_il_mio_core_RDB.mei: 'NoneType' object has no attribute 'get'\n", + "\n", + "Processing file: 2614a_Ecco_moriro_dunque_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2614, 'MEI_Name': '2614a_Ecco_moriro_dunque_RDB.mei', 'Title': 'Ecco, morirò dunque', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2614/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '12', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2614a_Ecco_moriro_dunque_RDB.mei\n", + "\n", + "Processing file: 2615_Arde_il_mio_cor_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2615, 'MEI_Name': '2615_Arde_il_mio_cor_RDB.mei', 'Title': 'Arde il mio cor ed è sì dolce il foco', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2615/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '13', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2615_Arde_il_mio_cor_RDB.mei\n", + "\n", + "Processing file: 2616_Se_chiudete_nel_core_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2616, 'MEI_Name': '2616_Se_chiudete_nel_core_RDB.mei', 'Title': 'Se chiudete nel core', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2616/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '14', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2616_Se_chiudete_nel_core_RDB.mei\n", + "\n", + "Processing file: 2617a_Il_sol_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2617, 'MEI_Name': '2617a_Il_sol_RDB.mei', 'Title': 'Il sol, qualor più splende', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2617/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '15', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2617a_Il_sol_RDB.mei\n", + "\n", + "Processing file: 2617b_Il_sol_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2617, 'MEI_Name': '2617b_Il_sol_RDB.mei', 'Title': 'Il sol, qualor più splende', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2617/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '15', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2617b_Il_sol_RDB.mei\n", + "\n", + "Processing file: 2618_Gioite_voi_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2618, 'MEI_Name': '2618_Gioite_voi_RDB.mei', 'Title': 'Gioite voi col canto', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2618/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '1', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2618_Gioite_voi_RDB.mei\n", + "\n", + "Processing file: 2619_S_io_non_miro_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2619, 'MEI_Name': '2619_S_io_non_miro_RDB.mei', 'Title': \"S'io non miro non moro\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2619/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '2', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2619_S_io_non_miro_RDB.mei\n", + "\n", + "Processing file: 2620_Itene_o_miei_sospiri_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2620, 'MEI_Name': '2620_Itene_o_miei_sospiri_RDB.mei', 'Title': 'Itene, o miei sospiri', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2620/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '3', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2620_Itene_o_miei_sospiri_RDB.mei\n", + "\n", + "Processing file: 2621_Dolcissima_mia_vita_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2621, 'MEI_Name': '2621_Dolcissima_mia_vita_RDB.mei', 'Title': 'Dolcissima mia vita', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2621/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '4', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2621_Dolcissima_mia_vita_RDB.mei\n", + "\n", + "Processing file: 2622_O_dolorosa_gioia_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2622, 'MEI_Name': '2622_O_dolorosa_gioia_RDB.mei', 'Title': 'O dolorosa gioia', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2622/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '5', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2622_O_dolorosa_gioia_RDB.mei\n", + "\n", + "Processing file: 2623_Qual_fora_donna_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2623, 'MEI_Name': '2623_Qual_fora_donna_RDB.mei', 'Title': 'Qual fora, donna, un dolce \"Ohimè\" d\\'amore', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2623/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '6', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2623_Qual_fora_donna_RDB.mei\n", + "\n", + "Processing file: 2624_Felicissimo_sonno_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2624, 'MEI_Name': '2624_Felicissimo_sonno_RDB.mei', 'Title': 'Felicissimo sonno', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2624/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '7', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2624_Felicissimo_sonno_RDB.mei\n", + "\n", + "Processing file: 2625_Se_vi_duol_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2625, 'MEI_Name': '2625_Se_vi_duol_RDB.mei', 'Title': 'Se vi duol il mio duolo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2625/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '8', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2625_Se_vi_duol_RDB.mei\n", + "\n", + "Processing file: 2626_Occhi_del_mio_cor_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2626, 'MEI_Name': '2626_Occhi_del_mio_cor_RDB.mei', 'Title': 'Occhi, del mio cor vita', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2626/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '9', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2626_Occhi_del_mio_cor_RDB.mei\n", + "\n", + "Processing file: 2627_Languisce_al_fin_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2627, 'MEI_Name': '2627_Languisce_al_fin_RDB.mei', 'Title': 'Languisce al fin chi da la vita parte', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2627/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '10', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2627_Languisce_al_fin_RDB.mei\n", + "\n", + "Processing file: 2628_Merce_grido_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2628, 'MEI_Name': '2628_Merce_grido_RDB.mei', 'Title': 'Mercé grido piangendo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2628/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '11', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2628_Merce_grido_RDB.mei\n", + "\n", + "Processing file: 2629_O_voi_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2629, 'MEI_Name': '2629_O_voi_RDB.mei', 'Title': 'O voi troppo felici', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2629/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '12', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2629_O_voi_RDB.mei\n", + "\n", + "Processing file: 2630_Correte_amanti_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2630, 'MEI_Name': '2630_Correte_amanti_RDB.mei', 'Title': 'Correte, amanti, a prova', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2630/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '13', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2630_Correte_amanti_RDB.mei\n", + "\n", + "Processing file: 2631_Asciugate_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2631, 'MEI_Name': '2631_Asciugate_RDB.mei', 'Title': 'Asciugate i begli occhi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2631/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '14', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2631_Asciugate_RDB.mei\n", + "\n", + "Processing file: 2632_Tu_m_uccidi_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2632, 'MEI_Name': '2632_Tu_m_uccidi_RDB.mei', 'Title': \"Tu m'uccidi, o crudele\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2632/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '15', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2632_Tu_m_uccidi_RDB.mei\n", + "\n", + "Processing file: 2633_Deh_coprite_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2633, 'MEI_Name': '2633_Deh_coprite_RDB.mei', 'Title': 'Deh, coprite il bel seno', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2633/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '16', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2633_Deh_coprite_RDB.mei\n", + "\n", + "Processing file: 2634a_Poiche_l_avida_sete_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2634, 'MEI_Name': '2634a_Poiche_l_avida_sete_RDB.mei', 'Title': \"Poiché l'avida sete\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2634/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '17', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2634a_Poiche_l_avida_sete_RDB.mei\n", + "\n", + "Processing file: 2634b_Poiche_l_avida_sete_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2634, 'MEI_Name': '2634b_Poiche_l_avida_sete_RDB.mei', 'Title': \"Poiché l'avida sete\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2634/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '17', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2634b_Poiche_l_avida_sete_RDB.mei\n", + "\n", + "Processing file: 2635_O_tenebroso_giorno_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2635, 'MEI_Name': '2635_O_tenebroso_giorno_RDB.mei', 'Title': 'O tenebroso giorno', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2635/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '18', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2635_O_tenebroso_giorno_RDB.mei\n", + "\n", + "Processing file: 2636_Se_tu_fuggi_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2636, 'MEI_Name': '2636_Se_tu_fuggi_RDB.mei', 'Title': 'Se tu fuggi, io non resto', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2636/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '19', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2636_Se_tu_fuggi_RDB.mei\n", + "\n", + "Processing file: 2637_T_amo_mia_vita_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2637, 'MEI_Name': '2637_T_amo_mia_vita_RDB.mei', 'Title': '\"T\\'amo, mia vita!\", la mia cara vita', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2637/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '20', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2637_T_amo_mia_vita_RDB.mei\n", + "\n", + "Processing file: 2538_Se_la_mia_morte_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2638, 'MEI_Name': '2538_Se_la_mia_morte_RDB.mei', 'Title': 'Se la mia morte brami', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2638/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '1', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2538_Se_la_mia_morte_RDB.mei\n", + "\n", + "Processing file: 2639_Belta_poi_che_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2639, 'MEI_Name': '2639_Belta_poi_che_RDB.mei', 'Title': \"Beltà, poi che t'assenti\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2639/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '2', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2639_Belta_poi_che_RDB.mei\n", + "\n", + "Processing file: 2640_Tu_segui_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2640, 'MEI_Name': '2640_Tu_segui_RDB.mei', 'Title': 'Tu segui, o bella Clori', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2640/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '3', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2640_Tu_segui_RDB.mei\n", + "\n", + "Processing file: 2641_Resta_di_darmi_noia_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2641, 'MEI_Name': '2641_Resta_di_darmi_noia_RDB.mei', 'Title': 'Resta di darmi noia', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2641/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '4', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2641_Resta_di_darmi_noia_RDB.mei\n", + "\n", + "Processing file: 2642_Chiaro_risplender_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2642, 'MEI_Name': '2642_Chiaro_risplender_RDB.mei', 'Title': 'Chiaro risplender suole', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2642/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '5', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2642_Chiaro_risplender_RDB.mei\n", + "\n", + "Processing file: 2643_Io_parto_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2643, 'MEI_Name': '2643_Io_parto_RDB.mei', 'Title': '\"Io parto\" e non più dissi, ché il dolore', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2643/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '6', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2643_Io_parto_RDB.mei\n", + "\n", + "Processing file: 2644_Mille_volte_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2644, 'MEI_Name': '2644_Mille_volte_RDB.mei', 'Title': 'Mille volte il dì moro', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2644/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '7', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2644_Mille_volte_RDB.mei\n", + "\n", + "Processing file: 2645_O_dolce_mio_tesoro_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2645, 'MEI_Name': '2645_O_dolce_mio_tesoro_RDB.mei', 'Title': 'O dolce mio tesoro', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2645/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '8', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2645_O_dolce_mio_tesoro_RDB.mei\n", + "\n", + "Processing file: 2646_Deh_come_invan_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2646, 'MEI_Name': '2646_Deh_come_invan_RDB.mei', 'Title': 'Deh, come invan sospiro', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2646/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '9', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2646_Deh_come_invan_RDB.mei\n", + "\n", + "Processing file: 2647_Io_pur_respiro_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2647, 'MEI_Name': '2647_Io_pur_respiro_RDB.mei', 'Title': 'Io pur respiro in così gran dolore', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2647/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '10', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2647_Io_pur_respiro_RDB.mei\n", + "Error processing 2647_Io_pur_respiro_RDB.mei: Blank needed here, line 1, column 38 (<string>, line 1)\n", + "\n", + "Processing file: 2648_Alme_d_Amor_rubelle_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2648, 'MEI_Name': '2648_Alme_d_Amor_rubelle_RDB.mei', 'Title': \"Alme d'Amor rubelle\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2648/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '11', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2648_Alme_d_Amor_rubelle_RDB.mei\n", + "\n", + "Processing file: 2649_Candido_e_verde_fiore_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2649, 'MEI_Name': '2649_Candido_e_verde_fiore_RDB.mei', 'Title': 'Candido e verde fiore', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2649/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '12', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2649_Candido_e_verde_fiore_RDB.mei\n", + "\n", + "Processing file: 2650_Ardita_zanzaretta_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2650, 'MEI_Name': '2650_Ardita_zanzaretta_RDB.mei', 'Title': 'Ardita zanzaretta', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2650/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '13', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2650_Ardita_zanzaretta_RDB.mei\n", + "\n", + "Processing file: 2651_Ardo_per_te_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2651, 'MEI_Name': '2651_Ardo_per_te_RDB.mei', 'Title': 'Ardo per te, mio bene', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2651/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '14', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2651_Ardo_per_te_RDB.mei\n", + "\n", + "Processing file: 2652_Ancide_sol_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2652, 'MEI_Name': '2652_Ancide_sol_RDB.mei', 'Title': 'Ancide sol la morte', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2652/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '15', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2652_Ancide_sol_RDB.mei\n", + "\n", + "Processing file: 2653_Quel_no_crudel_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2653, 'MEI_Name': '2653_Quel_no_crudel_RDB.mei', 'Title': 'Quel \"no\" crudel che la mia speme ancise', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2653/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '16', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2653_Quel_no_crudel_RDB.mei\n", + "\n", + "Processing file: 2654_Moro_lasso_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2654, 'MEI_Name': '2654_Moro_lasso_RDB.mei', 'Title': 'Moro, lasso, al mio duolo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2654/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '17', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2654_Moro_lasso_RDB.mei\n", + "\n", + "Processing file: 2655_Volan_quasi_farfalle_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2655, 'MEI_Name': '2655_Volan_quasi_farfalle_RDB.mei', 'Title': 'Volan quasi farfalle', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2655/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '18', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2655_Volan_quasi_farfalle_RDB.mei\n", + "\n", + "Processing file: 2656_Al_mio_gioir_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2656, 'MEI_Name': '2656_Al_mio_gioir_RDB.mei', 'Title': 'Al mio gioir il ciel si fa sereno', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2656/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '19', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2656_Al_mio_gioir_RDB.mei\n", + "\n", + "Processing file: 2657_Tu_piangi_o_Fille_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2657, 'MEI_Name': '2657_Tu_piangi_o_Fille_RDB.mei', 'Title': 'Tu piangi, o Fille mia', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2657/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '20', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2657_Tu_piangi_o_Fille_RDB.mei\n", + "\n", + "Processing file: 2658_Ancor_che_per_amarti_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2658, 'MEI_Name': '2658_Ancor_che_per_amarti_RDB.mei', 'Title': 'Ancor che per amarti io mi consumi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2658/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '21', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2658_Ancor_che_per_amarti_RDB.mei\n", + "\n", + "Processing file: 2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2659, 'MEI_Name': '2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei', 'Title': 'In monte Oliveti. Feria V. In Coena Domini. In j. Noct. - Resp. I', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2659/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '1', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei\n", + "\n", + "Processing file: 2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2660, 'MEI_Name': '2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei', 'Title': 'Tristis est anima mea. Feria V. In Coena Domini. In j. Noct. - Resp. II', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2660/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '2', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei\n", + "\n", + "Processing file: 2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2661, 'MEI_Name': '2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei', 'Title': 'Ecce vidimus eum. Feria V. In Coena Domini. In j. Noct. - Resp. III', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2661/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '3', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei\n", + "\n", + "Processing file: 2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2662, 'MEI_Name': '2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei', 'Title': 'Amicus meus osculi me. Feria V. In Coena Domini. In ij. Noct. - Resp. IV', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2662/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '4', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei\n", + "\n", + "Processing file: 2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2663, 'MEI_Name': '2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei', 'Title': 'Iudas mercator pessimus. Feria V. In Coena Domini. In ij. Noct. - Resp. V', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2663/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '5', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei\n", + "\n", + "Processing file: 2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2665, 'MEI_Name': '2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei', 'Title': 'Eram quasi agnus innocens. Feria V. In Coena Domini. In iij. Noct. - Resp. VII', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2665/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '7', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei\n", + "\n", + "Processing file: 2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2666, 'MEI_Name': '2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei', 'Title': 'Una hora non potuistis. Feria V. In Coena Domini. In iij. Noct. - Resp. VIII', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2666/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '8', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei\n", + "\n", + "Processing file: 2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2667, 'MEI_Name': '2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei', 'Title': 'Seniores populi consilium. Feria V. In Coena Domini. In iij. Noct. - Resp. IX', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2667/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '9', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei\n", + "\n", + "Processing file: 2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2668, 'MEI_Name': '2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei', 'Title': 'Omnes amici mei. Feria VI. In Parasceve. In j. Noct. - Resp. I', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2668/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '10', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei\n", + "\n", + "Processing file: 2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2669, 'MEI_Name': '2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei', 'Title': 'Velum templi scissum est. Feria VI. In Parasceve. In j. Noct. - Resp. II', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2669/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '11', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei\n", + "\n", + "Processing file: 2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2670, 'MEI_Name': '2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei', 'Title': 'Vinea mea electa. Feria VI. In Parasceve. In j. Noct. - Resp. III', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2670/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '12', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei\n", + "\n", + "Processing file: 2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2671, 'MEI_Name': '2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei', 'Title': 'Tamquam ad latronem. Feria VI. In Parasceve. In ij. Noct. - Resp. IV', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2671/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '13', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei\n", + "\n", + "Processing file: 2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2672, 'MEI_Name': '2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei', 'Title': 'Tenebræ factæ sunt. Feria VI. In Parasceve. In ij. Noct. - Resp. V', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2672/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '14', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei\n", + "\n", + "Processing file: 2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2673, 'MEI_Name': '2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei', 'Title': 'Animam meam dilectam. Feria VI. In Parasceve. In ij. Noct. - Resp. VI', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2673/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '15', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei\n", + "\n", + "Processing file: 2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2674, 'MEI_Name': '2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei', 'Title': 'Tradiderunt me in manus. Feria VI. In Parasceve. In iij. Noct. - Resp. VII', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2674/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '16', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei\n", + "\n", + "Processing file: 2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2675, 'MEI_Name': '2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei', 'Title': 'Iesum tradidit impius. Feria VI. In Parasceve. In iij. Noct. - Resp. VIII', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2675/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '17', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei\n", + "\n", + "Processing file: 2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2676, 'MEI_Name': '2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei', 'Title': 'Caligaverunt oculi mei. Feria VI. In Parasceve. In iij. Noct. - Resp. IX', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2676/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '18', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei\n", + "\n", + "Processing file: 2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2677, 'MEI_Name': '2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei', 'Title': 'Sicut ovis ad occisionem. Sabbati Sancti. In j. Noct. - Resp. I', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2677/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '19', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei\n", + "\n", + "Processing file: 2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2678, 'MEI_Name': '2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei', 'Title': 'Ierusalem iuge. Sabbati Sancti. In j. Noct. - Resp. II', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2678/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '20', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei\n", + "\n", + "Processing file: 2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2679, 'MEI_Name': '2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei', 'Title': 'Plange quasi virgo. Sabbati Sancti. In j. Noct. - Resp. III', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2679/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '21', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei\n", + "\n", + "Processing file: 2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2680, 'MEI_Name': '2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei', 'Title': 'Recessit pastor noster. Sabbati Sancti. In ij. Noct. - Resp. IV', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2680/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '22', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei\n", + "\n", + "Processing file: 2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2681, 'MEI_Name': '2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei', 'Title': 'O vos omnes. Sabbati Sancti. In ij. Noct. - Resp. V', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2681/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '23', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei\n", + "\n", + "Processing file: 2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2682, 'MEI_Name': '2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei', 'Title': 'Ecce quomodo moritur istus. Sabbati Sancti. In ij. Noct. - Resp. VI', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2682/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '24', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei\n", + "\n", + "Processing file: 2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2683, 'MEI_Name': '2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei', 'Title': 'Astiterunt reges terræ. Sabbati Sancti. In iij. Noct. - Resp. VII', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2683/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '25', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei\n", + "\n", + "Processing file: 2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2684, 'MEI_Name': '2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei', 'Title': 'Æstimatus sum cum descendentibus. Sabbati Sancti. In iij. Noct. - Resp. VIII', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2684/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '26', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei\n", + "\n", + "Processing file: 2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2685, 'MEI_Name': '2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei', 'Title': 'Sepulto Domino. Sabbati Sancti. In iij. Noct. - Resp. IX', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2685/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '27', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei\n", + "\n", + "Processing file: 2686_Benedictus_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2686, 'MEI_Name': '2686_Benedictus_RDB.mei', 'Title': 'Benedictus', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2686/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '28', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2686_Benedictus_RDB.mei\n", + "\n", + "Processing file: 2687_Miserere_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2687, 'MEI_Name': '2687_Miserere_RDB.mei', 'Title': 'Miserere', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2687/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '29', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2687_Miserere_RDB.mei\n", + "\n", + "Processing file: 2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2664, 'MEI_Name': '2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei', 'Title': 'Unus ex discipulis meis. Feria V. In Coena Domini. In ij. Noct. - Resp. VI', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2664/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '6', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei\n", + "\n", + "Processing file: 1369_Ave_regina_cœlorum_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 1369, 'MEI_Name': '1369_Ave_regina_cœlorum_RDB.mei', 'Title': 'Ave regina caelorum [053]', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1369/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '1', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 1369_Ave_regina_cœlorum_RDB.mei\n", + "\n", + "Processing file: 2688_Venit_lumen_tuum_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2688, 'MEI_Name': '2688_Venit_lumen_tuum_RDB.mei', 'Title': 'Venit lumen tuum', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2688/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '2', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2688_Venit_lumen_tuum_RDB.mei\n", + "\n", + "Processing file: 2689_Ave_dulcissima_Maria_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2689, 'MEI_Name': '2689_Ave_dulcissima_Maria_RDB.mei', 'Title': 'Ave dulcissima Maria', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2689/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '3', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2689_Ave_dulcissima_Maria_RDB.mei\n", + "\n", + "Processing file: 2690_Reminiscere_miserationum_tuarum_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2690, 'MEI_Name': '2690_Reminiscere_miserationum_tuarum_RDB.mei', 'Title': 'Reminiscere miserationum tuarum', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2690/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '4', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2690_Reminiscere_miserationum_tuarum_RDB.mei\n", + "\n", + "Processing file: 2691_Dignare_me_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2691, 'MEI_Name': '2691_Dignare_me_RDB.mei', 'Title': 'Dignare me laudare te', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2691/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '5', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2691_Dignare_me_RDB.mei\n", + "\n", + "Processing file: 2692_Sancti_Spiritus_Domine_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2692, 'MEI_Name': '2692_Sancti_Spiritus_Domine_RDB.mei', 'Title': 'Sancti Spiritus Domine', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2692/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '6', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2692_Sancti_Spiritus_Domine_RDB.mei\n", + "\n", + "Processing file: 2693_Domine_ne_despicias_deprecationem_meam_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2693, 'MEI_Name': '2693_Domine_ne_despicias_deprecationem_meam_RDB.mei', 'Title': 'Domine ne despicias', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2693/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '7', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2693_Domine_ne_despicias_deprecationem_meam_RDB.mei\n", + "\n", + "Processing file: 2694_Hei_mihi_Domine_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2694, 'MEI_Name': '2694_Hei_mihi_Domine_RDB.mei', 'Title': 'Hei mihi Domine', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2694/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '8', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2694_Hei_mihi_Domine_RDB.mei\n", + "\n", + "Processing file: 2695_Laboravi_in_gemitu_meo_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2695, 'MEI_Name': '2695_Laboravi_in_gemitu_meo_RDB.mei', 'Title': 'Laboravi in gemitu meo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2695/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '9', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2695_Laboravi_in_gemitu_meo_RDB.mei\n", + "\n", + "Processing file: 2696_Peccantem_me_quotidie_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2696, 'MEI_Name': '2696_Peccantem_me_quotidie_RDB.mei', 'Title': 'Peccantem me quotidie', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2696/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '10', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2696_Peccantem_me_quotidie_RDB.mei\n", + "\n", + "Processing file: 2697_O_vos_omnes_qui_transitis_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2697, 'MEI_Name': '2697_O_vos_omnes_qui_transitis_RDB.mei', 'Title': 'O vos omnes qui transitis', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2697/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '11', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2697_O_vos_omnes_qui_transitis_RDB.mei\n", + "\n", + "Processing file: 2698_Exaudi_Deus_deprecationem_meam_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2698, 'MEI_Name': '2698_Exaudi_Deus_deprecationem_meam_RDB.mei', 'Title': 'Exaudi Deus deprecationem meam', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2698/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '12', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2698_Exaudi_Deus_deprecationem_meam_RDB.mei\n", + "\n", + "Processing file: 2699_Precibus_et_meritis_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2699, 'MEI_Name': '2699_Precibus_et_meritis_RDB.mei', 'Title': 'Precibus et meritis', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2699/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '13', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2699_Precibus_et_meritis_RDB.mei\n", + "\n", + "Processing file: 2700_O_crux_benedicta_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2700, 'MEI_Name': '2700_O_crux_benedicta_RDB.mei', 'Title': 'O crux benedicta', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2700/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '14', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2700_O_crux_benedicta_RDB.mei\n", + "\n", + "Processing file: 2701_Tribularer_si_nescirem_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2701, 'MEI_Name': '2701_Tribularer_si_nescirem_RDB.mei', 'Title': 'Tribularer si nescirem', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2701/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '15', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2701_Tribularer_si_nescirem_RDB.mei\n", + "\n", + "Processing file: 2702_Deus_refugium_et_virtus_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2702, 'MEI_Name': '2702_Deus_refugium_et_virtus_RDB.mei', 'Title': 'Deus refugium et virtus', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2702/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '16', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2702_Deus_refugium_et_virtus_RDB.mei\n", + "\n", + "Processing file: 2703_Tribulationem_et_dolorem_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2703, 'MEI_Name': '2703_Tribulationem_et_dolorem_RDB.mei', 'Title': 'Tribulationem et dolorem', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2703/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '17', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2703_Tribulationem_et_dolorem_RDB.mei\n", + "\n", + "Processing file: 2704_Illumina_faciem_tuam_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2704, 'MEI_Name': '2704_Illumina_faciem_tuam_RDB.mei', 'Title': 'Illumina faciem tuam', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2704/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '18', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2704_Illumina_faciem_tuam_RDB.mei\n", + "\n", + "Processing file: 2705_Maria_Mater_gratiæ_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2705, 'MEI_Name': '2705_Maria_Mater_gratiæ_RDB.mei', 'Title': 'Maria Mater gratiæ', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2705/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '19', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2705_Maria_Mater_gratiæ_RDB.mei\n", + "\n", + "Processing file: 2706_Virgo_benedicta_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2706, 'MEI_Name': '2706_Virgo_benedicta_RDB.mei', 'Title': 'Virgo benedicta', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2706/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '1', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Roma', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2706_Virgo_benedicta_RDB.mei\n", + "\n", + "Processing file: 2708_Sana_me_Domine_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2708, 'MEI_Name': '2708_Sana_me_Domine_RDB.mei', 'Title': 'Sana me domine', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2708/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '3', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2708_Sana_me_Domine_RDB.mei\n", + "\n", + "Processing file: 2709_Ave_sanctissima_Maria_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2709, 'MEI_Name': '2709_Ave_sanctissima_Maria_RDB.mei', 'Title': 'Ave sanctissima Maria', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2709/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '4', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2709_Ave_sanctissima_Maria_RDB.mei\n", + "\n", + "Processing file: 2710_O_Oriens_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2710, 'MEI_Name': '2710_O_Oriens_RDB.mei', 'Title': 'O Oriens', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2710/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '5', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2710_O_Oriens_RDB.mei\n", + "\n", + "Processing file: 2711_Discedite_a_me_omnes_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2711, 'MEI_Name': '2711_Discedite_a_me_omnes_RDB.mei', 'Title': 'Discedite a me omnes', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2711/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '6', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2711_Discedite_a_me_omnes_RDB.mei\n", + "\n", + "Processing file: 2712_Gaudeamus_omnes_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2712, 'MEI_Name': '2712_Gaudeamus_omnes_RDB.mei', 'Title': 'Gaudeamus omnes', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2712/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '7', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2712_Gaudeamus_omnes_RDB.mei\n", + "\n", + "Processing file: 2713_Veni_Creator_Spiritus_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2713, 'MEI_Name': '2713_Veni_Creator_Spiritus_RDB.mei', 'Title': 'Veni Creator Spiritus', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2713/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '8', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2713_Veni_Creator_Spiritus_RDB.mei\n", + "\n", + "Processing file: 2714_O_sacrum_convivium_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2714, 'MEI_Name': '2714_O_sacrum_convivium_RDB.mei', 'Title': 'O sacrum convivium', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2714/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '9', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2714_O_sacrum_convivium_RDB.mei\n", + "\n", + "Processing file: 2715_Adoramus_te_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2715, 'MEI_Name': '2715_Adoramus_te_RDB.mei', 'Title': 'Adoramus te Christe', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2715/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '10', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2715_Adoramus_te_RDB.mei\n", + "\n", + "Processing file: 2716_Veni_sponsa_Christi_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2716, 'MEI_Name': '2716_Veni_sponsa_Christi_RDB.mei', 'Title': 'Veni sponsa Christi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2716/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '11', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2716_Veni_sponsa_Christi_RDB.mei\n", + "\n", + "Processing file: 2718_Verba_mea_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2718, 'MEI_Name': '2718_Verba_mea_RDB.mei', 'Title': 'Verba mea', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2718/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '13', 'Source_Date': 1618.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2718_Verba_mea_RDB.mei\n", + "\n", + "Processing file: 2719_Ardens_est_cor_meum_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2719, 'MEI_Name': '2719_Ardens_est_cor_meum_RDB.mei', 'Title': 'Ardens est cor meum', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2719/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '14', 'Source_Date': 1618.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2719_Ardens_est_cor_meum_RDB.mei\n", + "\n", + "Processing file: 2720_Ne_derelinquas_me_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2720, 'MEI_Name': '2720_Ne_derelinquas_me_RDB.mei', 'Title': 'Ne derelinquas me', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2720/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '15', 'Source_Date': 1620.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2720_Ne_derelinquas_me_RDB.mei\n", + "\n", + "Processing file: 2722_Ad_te_levavi_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2722, 'MEI_Name': '2722_Ad_te_levavi_RDB.mei', 'Title': 'Ad te levavi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2722/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '17', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2722_Ad_te_levavi_RDB.mei\n", + "\n", + "Processing file: 2724_O_anima_sanctissima_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2724, 'MEI_Name': '2724_O_anima_sanctissima_RDB.mei', 'Title': 'O anima sanctissima', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2724/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '19', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2724_O_anima_sanctissima_RDB.mei\n", + "\n", + "Processing file: 2725_Illumina_nos_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2725, 'MEI_Name': '2725_Illumina_nos_RDB.mei', 'Title': 'Illumina nos', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2725/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '20', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2725_Illumina_nos_RDB.mei\n", + "\n", + "Processing file: 2614b_Ecco_moriro_dunque_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2614, 'MEI_Name': '2614b_Ecco_moriro_dunque_RDB.mei', 'Title': 'Ecco, morirò dunque', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2614/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '12', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2614b_Ecco_moriro_dunque_RDB.mei\n", + "\n", + "Processing file: 2560_Madonna_io_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2560, 'MEI_Name': '2560_Madonna_io_RDB.mei', 'Title': 'Madonna, io ben vorrei che fusse in voi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2560/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '2', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2560_Madonna_io_RDB.mei\n", + "\n", + "Processing file: 2577b_Se_cosi_dolce_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2577, 'MEI_Name': '2577b_Se_cosi_dolce_RDB.mei', 'Title': 'Se così dolce è il duolo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2577/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '5', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2577b_Se_cosi_dolce_RDB.mei\n", + "\n", + "Processing file: 2707_Da_pacem_domine_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2707, 'MEI_Name': '2707_Da_pacem_domine_RDB.mei', 'Title': 'Da pacem domine', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2707/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '2', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Roma', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2707_Da_pacem_domine_RDB.mei\n", + "\n", + "Processing file: 2717_Assumpta es Maria_RDB.mei\n", + "Metadata dictionary for this file: None\n", + "Getting 2717_Assumpta es Maria_RDB.mei\n", + "Error processing 2717_Assumpta es Maria_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", + "\n", + "Processing file: 2721_O_Beata_Mater_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2721, 'MEI_Name': '2721_O_Beata_Mater_RDB.mei', 'Title': 'O Beata Mater', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2721/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '16', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2721_O_Beata_Mater_RDB.mei\n", + "Error processing 2721_O_Beata_Mater_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", + "\n", + "Processing file: 2723_Franciscus_humilis_et_pauper_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 2723, 'MEI_Name': '2723_Franciscus_humilis_et_pauper_RDB.mei', 'Title': 'Franciscus humilis et pauper', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2723/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '18', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2723_Franciscus_humilis_et_pauper_RDB.mei\n", + "Error processing 2723_Franciscus_humilis_et_pauper_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", + "\n", + "Processing file: 4780_Duedecimo_tono_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 4780, 'MEI_Name': '4780_Duedecimo_tono_RDB.mei', 'Title': '[Ricercar] Duedecimo Tono', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4780/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque', 'Source_Position': '19', 'Source_Date': 1586.0, 'Source_Country': 'Italy', 'Source_City': 'Roma', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 4780_Duedecimo_tono_RDB.mei\n", + "Error processing 4780_Duedecimo_tono_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", + "\n", + "Processing file: 4779_Settimo_tono_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 4779, 'MEI_Name': '4779_Settimo_tono_RDB.mei', 'Title': '[Ricercar] Settimo Tono', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4779/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque', 'Source_Position': '18', 'Source_Date': 1586.0, 'Source_Country': 'Italy', 'Source_City': 'Roma', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 4779_Settimo_tono_RDB.mei\n", + "Error processing 4779_Settimo_tono_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", + "\n", + "Processing file: 4778_Undecimo_tono_RDB.mei\n", + "Metadata dictionary for this file: {'RDL_ID': 4778, 'MEI_Name': '4778_Undecimo_tono_RDB.mei', 'Title': '[Ricercar] Undecimo Tono', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4778/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque', 'Source_Position': '17', 'Source_Date': 1586.0, 'Source_Country': 'Italy', 'Source_City': 'Roma', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 4778_Undecimo_tono_RDB.mei\n", + "Error processing 4778_Undecimo_tono_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", + "\n", + "Metadata update process completed.\n" + ] + } + ] + } + ] +} \ No newline at end of file From c14d8b66e15bb88a5698493c5e1bb9db991b46c1 Mon Sep 17 00:00:00 2001 From: Augustin Braud <127300341+GusBraud@users.noreply.github.com> Date: Tue, 19 Aug 2025 10:35:41 +0200 Subject: [PATCH 5/5] Version used to export MEI files for the updated Gesualdo Online publication on RicercarDataLab. Very rough code but results are satisfying ! --- meitools_Gesualdo_v2.ipynb | 13795 +++++++++++++++++++++++++++-------- 1 file changed, 10914 insertions(+), 2881 deletions(-) diff --git a/meitools_Gesualdo_v2.ipynb b/meitools_Gesualdo_v2.ipynb index a0f62f6..10d2c42 100644 --- a/meitools_Gesualdo_v2.ipynb +++ b/meitools_Gesualdo_v2.ipynb @@ -4,8 +4,9 @@ "metadata": { "colab": { "provenance": [], + "toc_visible": true, "mount_file_id": "1pcRnwNh5h7dsXDko2YOn7SQhw8Fwfrhp", - "authorship_tag": "ABX9TyOICzPAjLjhMFRXd1b0STtQ", + "authorship_tag": "ABX9TyNoEhhEh8TA4iKoQzgpT/ZE", "include_colab_link": true }, "kernelspec": { @@ -47,21 +48,22 @@ "base_uri": "https://localhost:8080/" }, "id": "C4MC2-fmHfm8", - "outputId": "671325b2-53dd-4a8f-e523-3b9deb2760f6" + "outputId": "ba0abe81-b078-4ad1-9c18-34c4ae76514c" }, - "execution_count": 310, + "execution_count": 5, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ + "rm: cannot remove 'mei_tools': No such file or directory\n", "Cloning into 'mei_tools'...\n", - "remote: Enumerating objects: 416, done.\u001b[K\n", - "remote: Counting objects: 100% (74/74), done.\u001b[K\n", - "remote: Compressing objects: 100% (59/59), done.\u001b[K\n", - "remote: Total 416 (delta 46), reused 32 (delta 15), pack-reused 342 (from 1)\u001b[K\n", - "Receiving objects: 100% (416/416), 730.32 KiB | 4.77 MiB/s, done.\n", - "Resolving deltas: 100% (229/229), done.\n" + "remote: Enumerating objects: 419, done.\u001b[K\n", + "remote: Counting objects: 100% (77/77), done.\u001b[K\n", + "remote: Compressing objects: 100% (62/62), done.\u001b[K\n", + "remote: Total 419 (delta 48), reused 31 (delta 15), pack-reused 342 (from 1)\u001b[K\n", + "Receiving objects: 100% (419/419), 749.07 KiB | 11.35 MiB/s, done.\n", + "Resolving deltas: 100% (231/231), done.\n" ] } ] @@ -77,36 +79,39 @@ "base_uri": "https://localhost:8080/" }, "id": "rQbld2aX2pdx", - "outputId": "9b00f39f-9d2f-462a-ebd3-fcd0d672686a" + "outputId": "0f6bd896-2fde-44e4-a402-52c28802e9bf" }, - "execution_count": 311, + "execution_count": 6, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ - "/content/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools\n", - "Obtaining file:///content/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools/mei_tools\n", + "/content/mei_tools\n", + "Obtaining file:///content/mei_tools\n", " Installing build dependencies ... \u001b[?25l\u001b[?25hdone\n", " Checking if build backend supports build_editable ... \u001b[?25l\u001b[?25hdone\n", " Getting requirements to build editable ... \u001b[?25l\u001b[?25hdone\n", " Preparing editable metadata (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n", - "Requirement already satisfied: datetime<6.0,>=5.5 in /usr/local/lib/python3.11/dist-packages (from mei_tools==2.0.2) (5.5)\n", + "Collecting datetime<6.0,>=5.5 (from mei_tools==2.0.2)\n", + " Downloading DateTime-5.5-py3-none-any.whl.metadata (33 kB)\n", "Requirement already satisfied: lxml<6.0.0,>=5.3.1 in /usr/local/lib/python3.11/dist-packages (from mei_tools==2.0.2) (5.4.0)\n", - "Requirement already satisfied: zope.interface in /usr/local/lib/python3.11/dist-packages (from datetime<6.0,>=5.5->mei_tools==2.0.2) (7.2)\n", - "Requirement already satisfied: pytz in /usr/local/lib/python3.11/dist-packages (from datetime<6.0,>=5.5->mei_tools==2.0.2) (2025.2)\n", + "Collecting zope.interface (from datetime<6.0,>=5.5->mei_tools==2.0.2)\n", + " Downloading zope.interface-7.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (44 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m44.4/44.4 kB\u001b[0m \u001b[31m3.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hRequirement already satisfied: pytz in /usr/local/lib/python3.11/dist-packages (from datetime<6.0,>=5.5->mei_tools==2.0.2) (2025.2)\n", "Requirement already satisfied: setuptools in /usr/local/lib/python3.11/dist-packages (from zope.interface->datetime<6.0,>=5.5->mei_tools==2.0.2) (75.2.0)\n", - "Building wheels for collected packages: mei_tools\n", + "Downloading DateTime-5.5-py3-none-any.whl (52 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m52.6/52.6 kB\u001b[0m \u001b[31m3.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading zope.interface-7.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m259.8/259.8 kB\u001b[0m \u001b[31m12.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hBuilding wheels for collected packages: mei_tools\n", " Building editable for mei_tools (pyproject.toml) ... \u001b[?25l\u001b[?25hdone\n", - " Created wheel for mei_tools: filename=mei_tools-2.0.2-py3-none-any.whl size=5254 sha256=f38dadc0d10086d496a860bc600908e07319844bbc3e124922a20bcb33cf779e\n", - " Stored in directory: /tmp/pip-ephem-wheel-cache-9c29jpyy/wheels/d6/c1/d8/29cd9c39e68244eaaad8cd4073bbf167a2f5eb39abfb6fb014\n", + " Created wheel for mei_tools: filename=mei_tools-2.0.2-py3-none-any.whl size=5250 sha256=429324be675ac9988febf49d4b9a060167a7f80a63ff7ef27c89950ba9b3b409\n", + " Stored in directory: /tmp/pip-ephem-wheel-cache-ou5rcgow/wheels/a2/9c/a6/c2baef5efc3276c7bded99a130951b9d6f62560f3aa4023fee\n", "Successfully built mei_tools\n", - "Installing collected packages: mei_tools\n", - " Attempting uninstall: mei_tools\n", - " Found existing installation: mei_tools 2.0.2\n", - " Uninstalling mei_tools-2.0.2:\n", - " Successfully uninstalled mei_tools-2.0.2\n", - "Successfully installed mei_tools-2.0.2\n" + "Installing collected packages: zope.interface, datetime, mei_tools\n", + "Successfully installed datetime-5.5 mei_tools-2.0.2 zope.interface-7.2\n" ] } ] @@ -121,9 +126,9 @@ "colab": { "base_uri": "https://localhost:8080/" }, - "outputId": "827bddc9-1b99-4a20-8414-ff3ea54ef8f0" + "outputId": "446788c8-b8a4-44cf-ccd5-ee0030085ed2" }, - "execution_count": 312, + "execution_count": 7, "outputs": [ { "output_type": "stream", @@ -131,36 +136,50 @@ "text": [ "Requirement already satisfied: setuptools in /usr/local/lib/python3.11/dist-packages (75.2.0)\n", "Requirement already satisfied: wheel in /usr/local/lib/python3.11/dist-packages (0.45.1)\n", - "Requirement already satisfied: twine in /usr/local/lib/python3.11/dist-packages (6.1.0)\n", - "Requirement already satisfied: readme-renderer>=35.0 in /usr/local/lib/python3.11/dist-packages (from twine) (44.0)\n", + "Collecting twine\n", + " Downloading twine-6.1.0-py3-none-any.whl.metadata (3.7 kB)\n", + "Collecting readme-renderer>=35.0 (from twine)\n", + " Downloading readme_renderer-44.0-py3-none-any.whl.metadata (2.8 kB)\n", "Requirement already satisfied: requests>=2.20 in /usr/local/lib/python3.11/dist-packages (from twine) (2.32.3)\n", "Requirement already satisfied: requests-toolbelt!=0.9.0,>=0.8.0 in /usr/local/lib/python3.11/dist-packages (from twine) (1.0.0)\n", - "Requirement already satisfied: urllib3>=1.26.0 in /usr/local/lib/python3.11/dist-packages (from twine) (2.4.0)\n", + "Requirement already satisfied: urllib3>=1.26.0 in /usr/local/lib/python3.11/dist-packages (from twine) (2.5.0)\n", "Requirement already satisfied: keyring>=15.1 in /usr/local/lib/python3.11/dist-packages (from twine) (25.6.0)\n", - "Requirement already satisfied: rfc3986>=1.4.0 in /usr/local/lib/python3.11/dist-packages (from twine) (2.0.0)\n", + "Collecting rfc3986>=1.4.0 (from twine)\n", + " Downloading rfc3986-2.0.0-py2.py3-none-any.whl.metadata (6.6 kB)\n", "Requirement already satisfied: rich>=12.0.0 in /usr/local/lib/python3.11/dist-packages (from twine) (13.9.4)\n", "Requirement already satisfied: packaging>=24.0 in /usr/local/lib/python3.11/dist-packages (from twine) (25.0)\n", - "Requirement already satisfied: id in /usr/local/lib/python3.11/dist-packages (from twine) (1.5.0)\n", + "Collecting id (from twine)\n", + " Downloading id-1.5.0-py3-none-any.whl.metadata (5.2 kB)\n", "Requirement already satisfied: SecretStorage>=3.2 in /usr/local/lib/python3.11/dist-packages (from keyring>=15.1->twine) (3.3.3)\n", "Requirement already satisfied: jeepney>=0.4.2 in /usr/local/lib/python3.11/dist-packages (from keyring>=15.1->twine) (0.9.0)\n", "Requirement already satisfied: importlib_metadata>=4.11.4 in /usr/local/lib/python3.11/dist-packages (from keyring>=15.1->twine) (8.7.0)\n", "Requirement already satisfied: jaraco.classes in /usr/local/lib/python3.11/dist-packages (from keyring>=15.1->twine) (3.4.0)\n", "Requirement already satisfied: jaraco.functools in /usr/local/lib/python3.11/dist-packages (from keyring>=15.1->twine) (4.2.1)\n", "Requirement already satisfied: jaraco.context in /usr/local/lib/python3.11/dist-packages (from keyring>=15.1->twine) (6.0.1)\n", - "Requirement already satisfied: nh3>=0.2.14 in /usr/local/lib/python3.11/dist-packages (from readme-renderer>=35.0->twine) (0.3.0)\n", + "Collecting nh3>=0.2.14 (from readme-renderer>=35.0->twine)\n", + " Downloading nh3-0.3.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.0 kB)\n", "Requirement already satisfied: docutils>=0.21.2 in /usr/local/lib/python3.11/dist-packages (from readme-renderer>=35.0->twine) (0.21.2)\n", "Requirement already satisfied: Pygments>=2.5.1 in /usr/local/lib/python3.11/dist-packages (from readme-renderer>=35.0->twine) (2.19.2)\n", - "Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.11/dist-packages (from requests>=2.20->twine) (3.4.2)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.11/dist-packages (from requests>=2.20->twine) (3.4.3)\n", "Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.11/dist-packages (from requests>=2.20->twine) (3.10)\n", - "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.11/dist-packages (from requests>=2.20->twine) (2025.7.14)\n", - "Requirement already satisfied: markdown-it-py>=2.2.0 in /usr/local/lib/python3.11/dist-packages (from rich>=12.0.0->twine) (3.0.0)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.11/dist-packages (from requests>=2.20->twine) (2025.8.3)\n", + "Requirement already satisfied: markdown-it-py>=2.2.0 in /usr/local/lib/python3.11/dist-packages (from rich>=12.0.0->twine) (4.0.0)\n", "Requirement already satisfied: zipp>=3.20 in /usr/local/lib/python3.11/dist-packages (from importlib_metadata>=4.11.4->keyring>=15.1->twine) (3.23.0)\n", "Requirement already satisfied: mdurl~=0.1 in /usr/local/lib/python3.11/dist-packages (from markdown-it-py>=2.2.0->rich>=12.0.0->twine) (0.1.2)\n", "Requirement already satisfied: cryptography>=2.0 in /usr/local/lib/python3.11/dist-packages (from SecretStorage>=3.2->keyring>=15.1->twine) (43.0.3)\n", "Requirement already satisfied: more-itertools in /usr/local/lib/python3.11/dist-packages (from jaraco.classes->keyring>=15.1->twine) (10.7.0)\n", "Requirement already satisfied: backports.tarfile in /usr/local/lib/python3.11/dist-packages (from jaraco.context->keyring>=15.1->twine) (1.2.0)\n", "Requirement already satisfied: cffi>=1.12 in /usr/local/lib/python3.11/dist-packages (from cryptography>=2.0->SecretStorage>=3.2->keyring>=15.1->twine) (1.17.1)\n", - "Requirement already satisfied: pycparser in /usr/local/lib/python3.11/dist-packages (from cffi>=1.12->cryptography>=2.0->SecretStorage>=3.2->keyring>=15.1->twine) (2.22)\n" + "Requirement already satisfied: pycparser in /usr/local/lib/python3.11/dist-packages (from cffi>=1.12->cryptography>=2.0->SecretStorage>=3.2->keyring>=15.1->twine) (2.22)\n", + "Downloading twine-6.1.0-py3-none-any.whl (40 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m40.8/40.8 kB\u001b[0m \u001b[31m2.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hDownloading readme_renderer-44.0-py3-none-any.whl (13 kB)\n", + "Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)\n", + "Downloading id-1.5.0-py3-none-any.whl (13 kB)\n", + "Downloading nh3-0.3.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (803 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m804.0/804.0 kB\u001b[0m \u001b[31m28.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", + "\u001b[?25hInstalling collected packages: rfc3986, nh3, readme-renderer, id, twine\n", + "Successfully installed id-1.5.0 nh3-0.3.0 readme-renderer-44.0 rfc3986-2.0.0 twine-6.1.0\n" ] } ] @@ -175,9 +194,9 @@ "colab": { "base_uri": "https://localhost:8080/" }, - "outputId": "ef5f9de1-1e43-4adb-f5cd-3a87d773ff83" + "outputId": "0c9befdc-6ff0-463f-bbdb-cd27cf20a991" }, - "execution_count": 313, + "execution_count": 8, "outputs": [ { "output_type": "stream", @@ -201,16 +220,17 @@ "from lxml import etree # Import etree here\n", "import re # Import regex for cleaning editor names\n", "\n", - "# Modified MEI_Metadata_Updater class to add static encodingDesc, consolidate annotation text, and remove duplicate meiHeads\n", + "# Modified MEI_Metadata_Updater class to add static encodingDesc to the first meiHead (re-attempt)\n", "def apply_metadata_fixed(self, mei_file_path, metadata_dict, output_folder):\n", " \"\"\"\n", " Adds or updates metadata in the first meiHead from a dictionary,\n", - " consolidates annotation text and static encodingDesc content, adds xml:ids,\n", - " and removes subsequent meiHeads.\n", + " consolidates annotation text from subsequent meiHeads, adds xml:ids,\n", + " and adds a specific static encodingDesc block to the first meiHead.\n", + " Handles cases where metadata_dict is None.\n", "\n", " Args:\n", " mei_file_path (str): The path to the input MEI file.\n", - " metadata_dict (dict): A dictionary containing the metadata to apply.\n", + " metadata_dict (dict): The metadata dictionary for the current file (can be None).\n", " output_folder (str): The folder to save the updated MEI file.\n", " \"\"\"\n", " print(f\"Getting {os.path.basename(mei_file_path)}\")\n", @@ -222,74 +242,130 @@ " parser = etree.XMLParser(remove_blank_text=True)\n", " root = etree.fromstring(mei_content.encode('utf-8'), parser=parser)\n", " ns = {'mei': 'http://www.music-encoding.org/ns/mei/5'}\n", - " xml_ns = '{http://www.w3.org/XML/1998/namespace}' # Namespace for xml:id\n", + " xml_ns_uri = 'http://www.w3.org/XML/1998/namespace' # XML namespace URI\n", + " xml_ns = '{' + xml_ns_uri + '}'\n", + " auth_ns_uri = xml_ns_uri # Assuming 'auth' prefix maps to XML namespace for attributes like auth.uri\n", + " auth_uri_qname = etree.QName(auth_ns_uri, 'uri') # Qualified name for auth.uri attribute\n", + " xml_uri_qname = etree.QName(xml_ns_uri, 'uri') # Qualified name for xml:uri attribute\n", "\n", - " # Counter for generating unique xml:ids\n", + "\n", + " # Counter for generating unique xml:ids - Reset for each file\n", " id_counter = 1\n", "\n", " def generate_xml_id(prefix=\"m\"):\n", " nonlocal id_counter\n", " current_id = f\"{prefix}-{id_counter}\"\n", + " # Check if the generated ID already exists in the document\n", + " while root.xpath(f'//*[@xml:id=\"{current_id}\"]', namespaces={'xml': xml_ns_uri}):\n", + " id_counter += 1\n", + " current_id = f\"{prefix}-{id_counter}\"\n", " id_counter += 1\n", - " return current_id\n", + " # Ensure no '#' in the final ID\n", + " return current_id.replace('#', '')\n", + "\n", + " # Dictionary to keep track of base IDs and their counters for generate_initials_id\n", + " initials_id_counters = {}\n", "\n", - " def generate_initials_id(name):\n", - " \"\"\"Generates an xml:id from the initials of a cleaned name.\"\"\"\n", + " def generate_initials_id(name, element_tag):\n", + " \"\"\"Generates an xml:id from the initials of a cleaned name, considering element tag for uniqueness.\"\"\"\n", " # Remove trailing role information like \" - Project manager\"\n", " cleaned_name = re.sub(r'\\s-\\s.*$', '', name).strip()\n", " initials = ''.join([word[0].upper() for word in cleaned_name.split() if word])\n", " # Ensure the ID is a valid XML ID (starts with a letter or underscore, contains letters, digits, hyphens, underscores, periods, colons)\n", " # A simple approach is to just use the initials, assuming they are letters.\n", " # If more complex names/characters are expected, more robust validation/cleaning would be needed.\n", - " return initials\n", + " # Also, ensure uniqueness\n", "\n", + " base_id = initials if initials else \"person\"\n", "\n", - " # Find all meiHead elements\n", - " all_mei_heads = root.findall('.//meiHead', namespaces=ns)\n", + " # Use a combined key of base_id and element_tag for the counter\n", + " counter_key = f\"{base_id}_{element_tag}\"\n", "\n", - " mei_head = None # Initialize mei_head to None\n", - " mei_heads_to_remove = []\n", + " if counter_key not in initials_id_counters:\n", + " initials_id_counters[counter_key] = 0\n", "\n", + " current_counter = initials_id_counters[counter_key]\n", + " current_id = base_id\n", "\n", - " if not all_mei_heads:\n", - " print(f\"Warning: No meiHead found in {os.path.basename(mei_file_path)}. Cannot update metadata.\")\n", - " # If no meiHead, we can't update.\n", + " # Check if the generated ID already exists in the document\n", + " # We need to check against all elements, not just those of a specific tag,\n", + " # but the counter is specific to the base_id and tag type.\n", + " # The uniqueness check should be global across all xml:ids.\n", + " temp_id = base_id\n", + " temp_counter = 0\n", + " if root.xpath(f'//*[@xml:id=\"{temp_id}\"]', namespaces={'xml': xml_ns_uri}):\n", + " temp_counter = 1\n", + " temp_id = f\"{base_id}-{temp_counter}\"\n", "\n", - " else:\n", - " # Use the first meiHead found as the target (this is the one we populate with CSV data)\n", - " mei_head = all_mei_heads[0]\n", - " # Add xml:id to the first meiHead if it doesn't have one\n", + " while root.xpath(f'//*[@xml:id=\"{temp_id}\"]', namespaces={'xml': xml_ns_uri}):\n", + " temp_counter += 1\n", + " temp_id = f\"{base_id}-{temp_counter}\"\n", + "\n", + " # Update the counter for this base_id and tag type only if a new ID was generated\n", + " if temp_counter > initials_id_counters[counter_key]:\n", + " initials_id_counters[counter_key] = temp_counter\n", + " current_id = temp_id\n", + " elif current_counter > 0:\n", + " current_id = f\"{base_id}-{current_counter}\"\n", + "\n", + "\n", + " # Ensure no '#' in the final ID\n", + " return current_id.replace('#', '')\n", + "\n", + "\n", + " # Find or create meiHead (This version keeps the original logic)\n", + " mei_head = root.find('.//meiHead', namespaces=ns)\n", + " if mei_head is None:\n", + " mei_head = etree.Element(\"meiHead\", nsmap=ns)\n", + " # Insert meiHead at the beginning of the root element\n", + " if root.getchildren():\n", + " root.insert(0, mei_head)\n", + " else:\n", + " root.append(mei_head)\n", + " # Add xml:id to the newly created meiHead - only if one doesn't exist\n", " if xml_ns + 'id' not in mei_head.attrib:\n", - " mei_head.set(xml_ns + 'id', generate_xml_id())\n", + " mei_head.set(xml_ns + 'id', generate_xml_id())\n", + "\n", + "\n", + " # Proceed only if a meiHead is found (or was created)\n", + " if mei_head is not None:\n", + " # Find or create fileDesc within meiHead\n", + " file_desc = mei_head.find('./fileDesc', namespaces=ns)\n", + " if file_desc is None:\n", + " file_desc = etree.SubElement(mei_head, \"fileDesc\")\n", + " file_desc.set(xml_ns + 'id', generate_xml_id())\n", "\n", - " # Collect meiHeads to remove (all subsequent ones)\n", - " mei_heads_to_remove.extend(all_mei_heads[1:])\n", + " # Find or create workList within meiHead\n", + " work_list = mei_head.find('./workList', namespaces=ns)\n", + " if work_list is None:\n", + " work_list = etree.SubElement(mei_head, \"workList\")\n", + " work_list.set(xml_ns + 'id', generate_xml_id())\n", "\n", "\n", " # --- Add the specific static encodingDesc block to the first meiHead ---\n", " # Define the static encodingDesc XML as a string\n", " encoding_desc_xml = \"\"\"\n", "<encodingDesc xml:id=\"m-5\">\n", - " <appInfo xml:id=\"m-6\">\n", - " <application xml:id=\"sibelius\" isodate=\"2025-7-11T11:43:22Z\" version=\"7130\">\n", - " <name xml:id=\"m-8\" type=\"operating-system\">Windows 7</name>\n", - " </application>\n", - " <application xml:id=\"sibmei\" type=\"plugin\" version=\"4.1.0\">\n", - " <name xml:id=\"m-10\">Sibelius to MEI 4 Exporter (4.1.0)</name>\n", - " </application>\n", - " </appInfo>\n", - " </encodingDesc>\n", + " <appInfo xml:id=\"m-6\">\n", + " <application xml:id=\"sibelius\" isodate=\"2025-7-8T14:43:31Z\" version=\"7130\">\n", + " <name xml:id=\"m-8\" type=\"operating-system\">Windows 7</name>\n", + " </application>\n", + " <application xml:id=\"sibmei\" type=\"plugin\" version=\"4.1.0\">\n", + " <name xml:id=\"m-10\">Sibelius to MEI 4 Exporter (4.1.0)</name>\n", + " </application>\n", + " </appInfo>\n", + " </encodingDesc>\n", "\"\"\"\n", " # Parse the static XML snippet into an element tree\n", " parser_frag = etree.XMLParser(remove_blank_text=True)\n", - " encoding_desc_elem = etree.fromstring(encoding_desc_xml.strip().encode('utf-8'), parser=parser_frag)\n", + " encoding_desc_elem_static = etree.fromstring(encoding_desc_xml.strip().encode('utf-8'), parser_frag)\n", "\n", " # Find existing encodingDesc in the target meiHead\n", " existing_encoding_desc = mei_head.find('./encodingDesc', namespaces=ns)\n", "\n", " if existing_encoding_desc is not None:\n", " # If encodingDesc exists, replace it with the new static one\n", - " existing_encoding_desc.getparent().replace(existing_encoding_desc, encoding_desc_elem)\n", + " existing_encoding_desc.getparent().replace(existing_encoding_desc, encoding_desc_elem_static)\n", " print(f\" Replaced existing encodingDesc with the specified static block in {os.path.basename(mei_file_path)}\")\n", " else:\n", " # If encodingDesc doesn't exist, append the new static one to meiHead\n", @@ -298,38 +374,21 @@ " if file_desc_elem is not None:\n", " # Find the index of fileDesc to insert encodingDesc after it\n", " file_desc_index = mei_head.index(file_desc_elem)\n", - " mei_head.insert(file_desc_index + 1, encoding_desc_elem)\n", + " mei_head.insert(file_desc_index + 1, encoding_desc_elem_static)\n", " else:\n", " # If no fileDesc, just append to meiHead\n", - " mei_head.append(encoding_desc_elem)\n", + " mei_head.append(encoding_desc_elem_static)\n", "\n", " print(f\" Added specified static encodingDesc block to {os.path.basename(mei_file_path)}\")\n", "\n", "\n", - " # Proceed only if we have a valid mei_head (the first one found/updated)\n", - " if mei_head is not None:\n", - " # Find or create fileDesc within meiHead\n", - " file_desc = mei_head.find('./fileDesc', namespaces=ns)\n", - " if file_desc is None:\n", - " file_desc = etree.SubElement(mei_head, \"fileDesc\")\n", - " file_desc.set(xml_ns + 'id', generate_xml_id())\n", - "\n", - " # Find or create workList within meiHead\n", - " work_list = mei_head.find('./workList', namespaces=ns)\n", - " if work_list is None:\n", - " work_list = etree.SubElement(mei_head, \"workList\")\n", - " work_list.set(xml_ns + 'id', generate_xml_id())\n", - "\n", - "\n", " # Find the annot element created by the script (based on CSV data)\n", " target_annot = work_list.find('.//notesStmt/annot', namespaces=ns)\n", "\n", " # Ensure notesStmt and annot exist in the target workList if not already created by CSV data\n", " if target_annot is None:\n", - " notes_stmt = work_list.find('./notesStmt', namespaces=ns)\n", - " if notes_stmt is None:\n", - " notes_stmt = etree.SubElement(work_list, \"notesStmt\")\n", - " notes_stmt.set(xml_ns + 'id', generate_xml_id())\n", + " notes_stmt = etree.SubElement(work_list, \"notesStmt\")\n", + " notes_stmt.set(xml_ns + 'id', generate_xml_id())\n", " target_annot = etree.SubElement(notes_stmt, \"annot\")\n", " target_annot.set(xml_ns + 'id', generate_xml_id())\n", " target_annot.text = \"\" # Initialize with empty text\n", @@ -361,7 +420,7 @@ "\n", " # --- Update/Create metadata sections within fileDesc (using spreadsheet data) ---\n", "\n", - " if file_desc is not None:\n", + " if metadata_dict is not None and file_desc is not None:\n", " # Find or create titleStmt\n", " title_stmt = file_desc.find('./titleStmt', namespaces=ns)\n", " if title_stmt is None:\n", @@ -370,16 +429,27 @@ "\n", " # Clear specific existing children within titleStmt to replace with metadata (overwriting original title/author if they were in first header)\n", " for child in list(title_stmt):\n", - " if child.tag.split('}')[-1] in ['title', 'author', 'composer', 'respStmt']:\n", + " if child.tag.split('}')[-1] in ['title', 'author', 'composer', 'respStmt', 'lyricist']:\n", " title_stmt.remove(child)\n", "\n", - " # Add title and author from metadata, with xml:ids\n", + " # Add title from metadata, with standard xml:ids\n", " title = etree.SubElement(title_stmt, \"title\")\n", " title.set(xml_ns + 'id', generate_xml_id())\n", " title.text = metadata_dict.get('Title', '')\n", - " author = etree.SubElement(title_stmt, \"author\")\n", - " author.set(xml_ns + 'id', generate_xml_id())\n", - " author.text = metadata_dict.get('Composer_Name', '')\n", + "\n", + " # Add composer from metadata, with standard xml:ids\n", + " composer_name = metadata_dict.get('Composer_Name', '').strip()\n", + " if composer_name:\n", + " composer = etree.SubElement(title_stmt, \"composer\")\n", + " composer.set(xml_ns + 'id', generate_xml_id()) # Use standard ID for composers\n", + " composer.text = composer_name\n", + "\n", + " if metadata_dict.get('Composer_VIAF'):\n", + " composer.set('auth', 'VIAF')\n", + " composer.set('auth.uri', metadata_dict.get('Composer_VIAF', ''))\n", + " if metadata_dict.get('Composer_BNF_ID'):\n", + " composer.set('auth', 'BNF')\n", + " composer.set('auth.uri', metadata_dict.get('Composer_BNF_ID', ''))\n", "\n", "\n", " # Find or create pubStmt - Preserve existing non-publisher content\n", @@ -392,7 +462,7 @@ " for pub in pub_stmt.findall('./publisher', namespaces=ns):\n", " pub_stmt.remove(pub)\n", "\n", - " # Add publisher information (Publisher_1 and Publisher_2) from metadata, with xml:ids\n", + " # Add publisher information (Publisher_1 and Publisher_2) from metadata, with standard xml:ids\n", " if metadata_dict.get('Source_Publisher_1'):\n", " publisher1 = etree.SubElement(pub_stmt, \"publisher\")\n", " publisher1.set(xml_ns + 'id', generate_xml_id())\n", @@ -413,40 +483,55 @@ " edition_stmt = etree.SubElement(file_desc, \"editionStmt\")\n", " edition_stmt.set(xml_ns + 'id', generate_xml_id())\n", "\n", - " # Clear existing children within editionStmt (edition, respStmt)\n", - " for child in list(edition_stmt):\n", - " if child.tag.split('}')[-1] in ['edition', 'respStmt']:\n", - " edition_stmt.remove(child)\n", + " # Find or create respStmt within editionStmt\n", + " resp_stmt = edition_stmt.find('./respStmt', namespaces=ns)\n", + " if resp_stmt is None:\n", + " resp_stmt = etree.SubElement(edition_stmt, \"respStmt\")\n", + " resp_stmt.set(xml_ns + 'id', generate_xml_id())\n", + " resp = etree.SubElement(resp_stmt, \"resp\")\n", + " resp.text = \"editor\"\n", + " else:\n", + " # Clear existing persName elements if respStmt already exists\n", + " for pers_name_elem in resp_stmt.findall('./persName', namespaces=ns):\n", + " resp_stmt.remove(pers_name_elem)\n", "\n", - " # Add edition and editor information if Editor data is present, with xml:ids (cleaned initials for persName)\n", + "\n", + " # Add editor information if Editor data is present, with initial-based xml:ids\n", " if metadata_dict.get('Editor'):\n", - " edition = etree.SubElement(edition_stmt, \"edition\")\n", - " edition.set(xml_ns + 'id', generate_xml_id())\n", - " resp_stmt = etree.SubElement(edition, \"respStmt\")\n", - " resp_stmt.set(xml_ns + 'id', generate_xml_id())\n", - " resp = etree.SubElement(resp_stmt, \"resp\")\n", - " resp.text = \"editor\"\n", " editors = metadata_dict.get('Editor', '').split(' | ')\n", " orcids = metadata_dict.get('Editor_ORCID', '').split(' | ')\n", " editor_viafs = metadata_dict.get('Editor_VIAF', '').split(' | ')\n", "\n", + " # Collect editor data for sorting\n", + " editor_data = []\n", " for i, editor_name in enumerate(editors):\n", - " if editor_name.strip(): # Check if editor name is not empty\n", - " pers_name = etree.SubElement(resp_stmt, \"persName\")\n", - " # Generate xml:id from cleaned initials\n", - " pers_name_id = generate_initials_id(editor_name.strip())\n", - " pers_name.set(xml_ns + 'id', pers_name_id)\n", - " pers_name.text = editor_name.strip()\n", - " # Corrected auth attribute to \"orcid\"\n", - " if i < len(orcids) and orcids[i].strip():\n", - " pers_name.set('auth', 'orcid')\n", - " pers_name.set('auth.uri', orcids[i].strip()) # Use ORCID URI\n", - " elif i < len(editor_viafs) and editor_viafs[i].strip():\n", - " pers_name.set('auth', 'VIAF') # Fallback to VIAF if no ORCID\n", - " pers_name.set('auth.uri', editor_viafs[i].strip())\n", - " else:\n", - " # If no ORCID or VIAF, set auth to \"none\" or omit auth/auth.uri\n", - " pers_name.set('auth', 'none')\n", + " cleaned_name = editor_name.strip()\n", + " if cleaned_name:\n", + " orcid = orcids[i].strip() if i < len(orcids) else ''\n", + " viaf = editor_viafs[i].strip() if i < len(editor_viafs) else ''\n", + " editor_data.append({'name': cleaned_name, 'orcid': orcid, 'viaf': viaf})\n", + "\n", + " # Sort editors alphabetically by last name (more robust)\n", + " editor_data.sort(key=lambda x: x['name'].split()[-1].strip() if x['name'].split() else x['name'].strip())\n", + "\n", + "\n", + " # Add sorted editor data to the XML\n", + " for editor in editor_data:\n", + " pers_name = etree.SubElement(resp_stmt, \"persName\")\n", + " # Generate xml:id from cleaned initials (only for editors)\n", + " pers_name_id = generate_initials_id(editor['name'], 'persName_respStmt') # Pass element tag\n", + " pers_name.set(xml_ns + 'id', pers_name_id)\n", + " pers_name.text = editor['name']\n", + " # Corrected auth attribute to \"orcid\"\n", + " if editor['orcid']:\n", + " pers_name.set('auth', 'orcid')\n", + " pers_name.set('auth.uri', editor['orcid']) # Use ORCID URI\n", + " elif editor['viaf']:\n", + " pers_name.set('auth', 'VIAF') # Fallback to VIAF if no ORCID\n", + " pers_name.set('auth.uri', editor['viaf'])\n", + " else:\n", + " # If no ORCID or VIAF, set auth to \"none\" or omit auth/auth.uri\n", + " pers_name.set('auth', 'none')\n", "\n", "\n", " # Find or create sourceDesc - Clear existing source structure\n", @@ -454,46 +539,149 @@ " if source_desc is None:\n", " source_desc = etree.SubElement(file_desc, \"sourceDesc\")\n", " source_desc.set(xml_ns + 'id', generate_xml_id())\n", - " # If sourceDesc already exists, we don't add a new id here\n", "\n", " # Clear existing children within sourceDesc (source)\n", " for child in list(source_desc):\n", " if child.tag.split('}')[-1] == 'source':\n", " source_desc.remove(child)\n", "\n", - " # Add source information, RDL_ID, and Permalink as bibl within sourceDesc/source, with xml:ids\n", + " # Add source information, RDL_ID, and Permalink as bibl within sourceDesc/source, with standard xml:ids\n", " source = etree.SubElement(source_desc, \"source\")\n", " source.set(xml_ns + 'id', generate_xml_id())\n", + "\n", + " # Add title from metadata to source, with standard xml:ids and RISM attributes\n", " title_source = etree.SubElement(source, \"title\")\n", " title_source.set(xml_ns + 'id', generate_xml_id())\n", " title_source.text = metadata_dict.get('Source_Title', '')\n", "\n", + "\n", " date_source = etree.SubElement(source, \"date\")\n", " date_source.set(xml_ns + 'id', generate_xml_id())\n", - " date_source.text = str(metadata_dict.get('Source_Date', ''))\n", + " # Format date to remove trailing .0 if it exists and is a float\n", + " source_date = metadata_dict.get('Source_Date')\n", + " if pd.notna(source_date): # Check if date is not NaN\n", + " try:\n", + " # Attempt to convert to int first, then str\n", + " date_source.text = str(int(float(source_date)))\n", + " except (ValueError, TypeError):\n", + " # If conversion fails (e.g., not a number), keep original string conversion\n", + " date_source.text = str(source_date)\n", + " else:\n", + " date_source.text = ''\n", + "\n", "\n", " country_source = etree.SubElement(source, \"country\")\n", " country_source.set(xml_ns + 'id', generate_xml_id())\n", " country_source.text = metadata_dict.get('Source_Country', '')\n", "\n", - " settlement_source = etree.SubElement(source, \"settlement\")\n", - " settlement_source.set(xml_ns + 'id', generate_xml_id())\n", + " # Find or create settlement within source and add Geonames attributes, with standard xml:ids\n", + " settlement_source = source.find('./settlement', namespaces=ns)\n", + " if settlement_source is None:\n", + " settlement_source = etree.SubElement(source, \"settlement\")\n", + " settlement_source.set(xml_ns + 'id', generate_xml_id())\n", + " # Update existing or newly created settlement\n", " settlement_source.text = metadata_dict.get('Source_City', '')\n", + " # Clear existing auth/auth.uri attributes to replace\n", + " if 'auth' in settlement_source.attrib:\n", + " del settlement_source.attrib['auth']\n", + " # Need to check for both auth.uri with and without namespace prefix\n", + " auth_uri_qname_xml_ns = etree.QName(xml_ns_uri, 'uri') # Define this QName here\n", + " if auth_uri_qname_xml_ns in settlement_source.attrib:\n", + " del settlement_source.attrib[auth_uri_qname_xml_ns]\n", + " if 'auth.uri' in settlement_source.attrib:\n", + " del settlement_source.attrib['auth.uri']\n", + "\n", + "\n", + " if metadata_dict.get('Source_Geonames'):\n", + " settlement_source.set('auth', 'geonames')\n", + " # Use QName for auth.uri attribute, assuming auth prefix maps to XML namespace\n", + " settlement_source.set(auth_uri_qname_xml_ns, metadata_dict.get('Source_Geonames', ''))\n", + "\n", "\n", - " identifier_source = etree.SubElement(source, \"identifier\", type=\"shelfmark\")\n", - " identifier_source.set(xml_ns + 'id', generate_xml_id())\n", - " identifier_source.text = metadata_dict.get('Source_Shelfmark', '')\n", + " # Removed identifier_source element creation\n", "\n", - " # Add RDL_ID and Permalink as bibl within sourceDesc/source, with xml:ids\n", + "\n", + " # Add RDL_ID as identifier, with standard xml:ids\n", " if metadata_dict.get('RDL_ID'):\n", " rdl_id_elem = etree.SubElement(source, \"identifier\", type=\"RDL_ID\")\n", " rdl_id_elem.set(xml_ns + 'id', generate_xml_id())\n", " rdl_id_elem.text = str(metadata_dict.get('RDL_ID', ''))\n", "\n", - " if metadata_dict.get('Permalink'):\n", - " permalink_bibl = etree.SubElement(source, \"bibl\")\n", - " permalink_bibl.set(xml_ns + 'id', generate_xml_id())\n", - " permalink_bibl.text = metadata_dict.get('Permalink', '')\n", + " # Add RISM bibl with auth=\"rism\" and auth.uri attribute, with standard xml:ids\n", + " if metadata_dict.get('Source_URL_RISM'):\n", + " rism_bibl = etree.Element(\"bibl\", nsmap=ns)\n", + " rism_bibl.set(xml_ns + 'id', generate_xml_id())\n", + " rism_bibl.set('auth', 'rism')\n", + " # Use QName for auth.uri attribute, assuming auth prefix maps to XML namespace\n", + " auth_uri_qname_xml_ns = etree.QName(xml_ns_uri, 'uri')\n", + " rism_bibl.set(auth_uri_qname_xml_ns, metadata_dict.get('Source_URL_RISM', ''))\n", + " source.append(rism_bibl)\n", + "\n", + " # Removed Permalink bibl from sourceDesc\n", + "\n", + "\n", + " # Process Person_1, Person_2, etc. and collect elements to add in order, with standard xml:ids\n", + " elements_to_add = {'lyricist': [], 'dedicatee': [], 'annot': []}\n", + " added_names = set() # To keep track of names already added\n", + "\n", + " for i in range(1, 10): # Assuming up to Person_9, adjust as needed\n", + " role_key = f'Person_{i}_role'\n", + " name_key = f'Person_{i}_name'\n", + " viaf_key = f'Person_{i}_VIAF'\n", + " bnf_key = f'Person_{i}_BNF_ID'\n", + "\n", + " role = metadata_dict.get(role_key, '').strip()\n", + " name = metadata_dict.get(name_key, '').strip()\n", + " viaf = metadata_dict.get(viaf_key, '').strip()\n", + " bnf = metadata_dict.get(bnf_key, '').strip()\n", + "\n", + " if role and name and name not in added_names:\n", + " added_names.add(name) # Add name to set\n", + "\n", + " # Add lyricist to sourceDesc processing again\n", + " if role.lower() in ['lyricist poet', 'lyricist-poet']: # Include 'lyricist-poet'\n", + " lyricist_source = etree.Element(\"lyricist\", nsmap=ns)\n", + " lyricist_source.set(xml_ns + 'id', generate_xml_id()) # Use standard ID for lyricist\n", + " lyricist_source.text = name\n", + " if viaf:\n", + " lyricist_source.set('auth', 'VIAF')\n", + " lyricist_source.set('auth.uri', viaf)\n", + " if bnf:\n", + " lyricist_source.set('auth', 'BNF')\n", + " lyricist_source.set('auth.uri', bnf)\n", + " elements_to_add['lyricist'].append(lyricist_source)\n", + "\n", + " elif role.lower() == 'dedicatee' or role.lower() == 'dedicatee/owner':\n", + " dedicatee_source = etree.Element(\"dedicatee\", nsmap=ns)\n", + " dedicatee_source.set(xml_ns + 'id', generate_xml_id()) # Use standard ID for dedicatee\n", + " dedicatee_source.text = name\n", + " if viaf:\n", + " dedicatee_source.set('auth', 'VIAF')\n", + " dedicatee_source.set('auth.uri', viaf)\n", + " if bnf:\n", + " dedicatee_source.set('auth', 'BNF')\n", + " dedicatee_source.set('auth.uri', bnf)\n", + " elements_to_add['dedicatee'].append(dedicatee_source)\n", + "\n", + " else: # All other roles go into annot\n", + " annot_source = etree.Element(\"annot\", nsmap=ns)\n", + " # Add xml:id using standard ID\n", + " annot_source.set(xml_ns + 'id', generate_xml_id())\n", + " # Add auth and auth.uri as attributes if VIAF exists, using QName for auth.uri\n", + " if viaf:\n", + " annot_source.set('auth', 'VIAF')\n", + " # Use QName for auth.uri attribute\n", + " auth_uri_qname_xml_ns = etree.QName(xml_ns_uri, 'uri')\n", + " annot_source.set(auth_uri_qname_xml_ns, viaf)\n", + " # Set text content to role and name in \"Name - Role\" format\n", + " annot_source.text = f\"{name} - {role.capitalize()}\"\n", + " elements_to_add['annot'].append(annot_source)\n", + "\n", + "\n", + " # Add elements to source in the specified order (including lyricist again)\n", + " for elem_type in ['lyricist', 'dedicatee', 'annot']:\n", + " for elem in elements_to_add[elem_type]:\n", + " source.append(elem)\n", "\n", "\n", " # Find or create workList within meiHead\n", @@ -503,15 +691,66 @@ " work_list.set(xml_ns + 'id', generate_xml_id())\n", "\n", "\n", + " # Find or create work within workList\n", + " work = work_list.find('./work', namespaces=ns)\n", + " if work is None:\n", + " work = etree.SubElement(work_list, \"work\")\n", + " work.set(xml_ns + 'id', generate_xml_id())\n", + " else:\n", + " # Clear existing title, composer, bibl within work to replace\n", + " for child in list(work):\n", + " if child.tag.split('}')[-1] in ['title', 'composer', 'bibl']: # Added bibl to clearing\n", + " work.remove(child)\n", + "\n", + "\n", + " # Add work information (from CSV) to the target workList\n", + " if metadata_dict is not None and work is not None:\n", + " if metadata_dict.get('Title') or metadata_dict.get('Composer_Name') or metadata_dict.get('Source_Position') or metadata_dict.get('Source_Title') or metadata_dict.get('RDL_ID'): # Added RDL_ID to check\n", + "\n", + " work_title = etree.SubElement(work, \"title\")\n", + " work_title.set(xml_ns + 'id', generate_xml_id())\n", + " work_title.text = metadata_dict.get('Title', '') # Using the main Title for work title\n", + "\n", + " # Add composer within work, with standard xml:ids\n", + " composer_name = metadata_dict.get('Composer_Name', '').strip()\n", + " source_position = str(metadata_dict.get('Source_Position', '')).strip() # Get Source_Position and convert to string\n", + " rdl_id = str(metadata_dict.get('RDL_ID', '')).strip() # Get RDL_ID and convert to string\n", + "\n", + "\n", + " if composer_name:\n", + " composer_work = etree.SubElement(work, \"composer\")\n", + " composer_work.set(xml_ns + 'id', generate_xml_id()) # Use standard ID for composers\n", + "\n", + "\n", + " # Format text content (reverted to just name)\n", + " composer_work.text = composer_name\n", + "\n", + "\n", + " if metadata_dict.get('Composer_VIAF'):\n", + " composer_work.set('auth', 'VIAF')\n", + " composer_work.set('auth.uri', metadata_dict.get('Composer_VIAF', ''))\n", + " if metadata_dict.get('Composer_BNF_ID'): # Added BNF auth and auth.uri\n", + " composer_work.set('auth', 'BNF')\n", + " composer_work.set('auth.uri', metadata_dict.get('Composer_BNF_ID', ''))\n", + "\n", + " # Add Permalink as bibl with xml:uri attribute within work, with standard xml:ids\n", + " if metadata_dict.get('Permalink'):\n", + " permalink_bibl_work = etree.Element(\"bibl\", nsmap=ns)\n", + " permalink_bibl_work.set(xml_ns + 'id', generate_xml_id())\n", + " # Use QName for xml:uri attribute\n", + " xml_uri_qname_attr = etree.QName(xml_ns_uri, 'uri')\n", + " permalink_bibl_work.set(xml_uri_qname_attr, metadata_dict.get('Permalink', ''))\n", + " if work is not None: # Ensure work element exists before appending\n", + " work.append(permalink_bibl_work)\n", + "\n", + "\n", " # Find the annot element created by the script (based on CSV data)\n", " target_annot = work_list.find('.//notesStmt/annot', namespaces=ns)\n", "\n", " # Ensure notesStmt and annot exist in the target workList if not already created by CSV data\n", " if target_annot is None:\n", - " notes_stmt = work_list.find('./notesStmt', namespaces=ns)\n", - " if notes_stmt is None:\n", - " notes_stmt = etree.SubElement(work_list, \"notesStmt\")\n", - " notes_stmt.set(xml_ns + 'id', generate_xml_id())\n", + " notes_stmt = etree.SubElement(work_list, \"notesStmt\")\n", + " notes_stmt.set(xml_ns + 'id', generate_xml_id())\n", " target_annot = etree.SubElement(notes_stmt, \"annot\")\n", " target_annot.set(xml_ns + 'id', generate_xml_id())\n", " target_annot.text = \"\" # Initialize with empty text\n", @@ -541,72 +780,6 @@ " print(f\" Consolidated annotation text in target annot.\")\n", "\n", "\n", - " # --- Add work information (from CSV) to the target workList ---\n", - " # Clear existing children of work within workList created by CSV data (if any before adding)\n", - " # This ensures we only add the latest work details from the dictionary.\n", - " if work_list is not None:\n", - " existing_work = work_list.find('./work', namespaces=ns)\n", - " if existing_work is not None:\n", - " work_list.remove(existing_work)\n", - "\n", - "\n", - " # Add work information if enough data is present, with xml:ids\n", - " if work_list is not None:\n", - " if metadata_dict.get('Title') or metadata_dict.get('Composer_Name') or metadata_dict.get('Source_Position') or metadata_dict.get('Source_Title'):\n", - " work = etree.SubElement(work_list, \"work\")\n", - " work.set(xml_ns + 'id', generate_xml_id())\n", - "\n", - " work_title = etree.SubElement(work, \"title\")\n", - " work_title.set(xml_ns + 'id', generate_xml_id())\n", - " work_title.text = metadata_dict.get('Title', '') # Using the main Title for work title\n", - "\n", - " # Add composer within work, with xml:ids\n", - " if metadata_dict.get('Composer_Name'):\n", - " composer_work = etree.SubElement(work, \"composer\")\n", - " composer_work.set(xml_ns + 'id', generate_xml_id())\n", - " pers_name_work = etree.SubElement(composer_work, \"persName\")\n", - " pers_name_work.set(xml_ns + 'id', generate_xml_id()) # Add xml:id to persName\n", - " pers_name_work.text = metadata_dict.get('Composer_Name', '')\n", - " if metadata_dict.get('Composer_VIAF'):\n", - " pers_name_work.set('auth', 'VIAF')\n", - " pers_name_work.set('auth.uri', metadata_dict.get('Composer_VIAF', ''))\n", - "\n", - " # Add lyricist within work (assuming no explicit field), with xml:ids\n", - " lyricist_work = etree.SubElement(work, \"lyricist\")\n", - " lyricist_work.set(xml_ns + 'id', generate_xml_id())\n", - " lyricist_work.text = \"\" # Placeholder\n", - "\n", - " # notesStmt and annot are handled for consolidation above, don't recreate here based on CSV fields\n", - " # notes_stmt = etree.SubElement(work, \"notesStmt\")\n", - " # notes_stmt.set(xml_ns + 'id', generate_xml_id())\n", - " # annot = etree.SubElement(notes_stmt, \"annot\")\n", - " # annot.set(xml_ns + 'id', generate_xml_id())\n", - "\n", - " # # Construct the annot text from metadata fields\n", - " # annot_text_parts = []\n", - " # if metadata_dict.get('Composer_Name'):\n", - " # pass # Already added as <composer> element\n", - "\n", - " # if metadata_dict.get('Source_Position'):\n", - " # annot_text_parts.append(f\"Source : p. {metadata_dict['Source_Position']}\")\n", - " # if metadata_dict.get('Source_Title'):\n", - " # annot_text_parts.append(metadata_dict['Source_Title'])\n", - "\n", - " # annot.text = \" ; \".join(annot_text_parts)\n", - "\n", - "\n", - " # --- Remove the other meiHeads ---\n", - " all_mei_heads_after_processing = root.findall('.//meiHead', namespaces=ns) # Re-find in case any were created/manipulated\n", - " if root is not None:\n", - " for mei_head_to_remove in all_mei_heads_after_processing:\n", - " if mei_head_to_remove is not None and mei_head_to_remove != mei_head: # Exclude the target meiHead\n", - " try:\n", - " root.remove(mei_head_to_remove)\n", - " print(f\" Removed extra meiHead from {os.path.basename(mei_file_path)}\")\n", - " except ValueError:\n", - " print(f\" Warning: Could not remove extra meiHead - not found in root children.\")\n", - "\n", - "\n", " # Save the updated MEI file\n", " output_path = os.path.join(output_folder, os.path.basename(mei_file_path))\n", " with open(output_path, 'wb') as f:\n", @@ -621,7 +794,7 @@ "metadata": { "id": "hIKjQBVxIKTJ" }, - "execution_count": 314, + "execution_count": 10, "outputs": [] }, { @@ -639,7 +812,7 @@ "metadata": { "id": "wKWxDHdfKRlH" }, - "execution_count": 315, + "execution_count": 442, "outputs": [] }, { @@ -651,7 +824,7 @@ "metadata": { "id": "FMkqfoSFLZ-V" }, - "execution_count": 316, + "execution_count": 443, "outputs": [] }, { @@ -662,7 +835,7 @@ "metadata": { "id": "Y3uf-eO1NZ_L" }, - "execution_count": 317, + "execution_count": 11, "outputs": [] }, { @@ -673,41 +846,69 @@ "base_uri": "https://localhost:8080/", "height": 1000 }, - "outputId": "6e441cb3-c3f8-4580-dfcc-c6f49fb681df" + "outputId": "e22205bc-eeb4-4a5f-9744-7d39ab38e953" }, "source": [ "pairs_to_process = []\n", "for mei_path in mei_paths:\n", " mei_file_name = os.path.basename(mei_path)\n", + " # Find the matching dictionary, or set it to None if no match is found\n", " matching_dict = next((item for item in gesualdo_metadata_dict_list if item['MEI_Name'] == mei_file_name), None)\n", " tup = mei_path, matching_dict\n", " pairs_to_process.append(tup)\n", "\n", "display(pairs_to_process)" ], - "execution_count": 318, + "execution_count": 445, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ - "[('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2729_In_te_Domine_speravi_RDB.mei',\n", - " None),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2727_All_ombra_degli_allori_RDB.mei',\n", - " {'RDL_ID': 2727,\n", - " 'MEI_Name': '2727_All_ombra_degli_allori_RDB.mei',\n", - " 'Title': \"All'ombra degli allori\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2727/',\n", + "[('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2564b_Se_da_si_nobil_RDB.mei',\n", + " {'RDL_ID': 2564,\n", + " 'MEI_Name': '2564b_Se_da_si_nobil_RDB.mei',\n", + " 'Title': 'Se da sì nobil mano',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2564/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#205 Ottavo libro de Madrigali, A Cinque Voci, di Pomponio Nenna Cavilier di Cesare',\n", - " 'Source_Position': '18',\n", - " 'Source_Date': '',\n", - " 'Source_Country': '',\n", - " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -726,21 +927,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2728_Come_vivi_cor_mio_RDB.mei',\n", - " {'RDL_ID': 2728,\n", - " 'MEI_Name': '2728_Come_vivi_cor_mio_RDB.mei',\n", - " 'Title': 'Come vivi, Cor mio',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2728/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2568_Mentre_mia_stella_RDB.mei',\n", + " {'RDL_ID': 2568,\n", + " 'MEI_Name': '2568_Mentre_mia_stella_RDB.mei',\n", + " 'Title': 'Mentre, mia stella, miri',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2568/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#205 Ottavo libro de Madrigali, A Cinque Voci, di Pomponio Nenna Cavilier di Cesare',\n", - " 'Source_Position': '19',\n", - " 'Source_Date': '',\n", - " 'Source_Country': '',\n", - " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -759,23 +989,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2726_Ne_reminiscaris_1585_02_RDB.mei',\n", - " None),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2559a_Baci_soavi_RDB.mei',\n", - " {'RDL_ID': 2559,\n", - " 'MEI_Name': '2559a_Baci_soavi_RDB.mei',\n", - " 'Title': 'Baci soavi e cari',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2559/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2570_Questi_leggiadri_RDB.mei',\n", + " {'RDL_ID': 2570,\n", + " 'MEI_Name': '2570_Questi_leggiadri_RDB.mei',\n", + " 'Title': 'Questi leggiadri odorosetti fiori',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2570/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '1',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '12',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -794,21 +1051,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2561_Com_esser_puo_RDB.mei',\n", - " {'RDL_ID': 2561,\n", - " 'MEI_Name': '2561_Com_esser_puo_RDB.mei',\n", - " 'Title': \"Com'esser può ch'io viva se m'uccidi\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2561/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2565_Si_gioioso_RDB.mei',\n", + " {'RDL_ID': 2565,\n", + " 'MEI_Name': '2565_Si_gioioso_RDB.mei',\n", + " 'Title': 'Sì gioioso mi fanno i dolor miei',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2565/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '3',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '7',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -827,21 +1113,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2563b_Mentre_Madonna_RDB.mei',\n", - " {'RDL_ID': 2563,\n", - " 'MEI_Name': '2563b_Mentre_Madonna_RDB.mei',\n", - " 'Title': 'Mentre madonna il lasso fianco posa',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2563/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2572_Bella_angioletta_RDB.mei',\n", + " {'RDL_ID': 2572,\n", + " 'MEI_Name': '2572_Bella_angioletta_RDB.mei',\n", + " 'Title': \"Bell'angioletta da le vaghe piume\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2572/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '5',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '15',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -860,21 +1175,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2565_Si_gioioso_RDB.mei',\n", - " {'RDL_ID': 2565,\n", - " 'MEI_Name': '2565_Si_gioioso_RDB.mei',\n", - " 'Title': 'Sì gioioso mi fanno i dolor miei',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2565/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2569_Non_mirar_RDB.mei',\n", + " {'RDL_ID': 2569,\n", + " 'MEI_Name': '2569_Non_mirar_RDB.mei',\n", + " 'Title': 'Non mirar, non mirare',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2569/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '7',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '11',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -893,21 +1237,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2567a_Tirsi_morir_volea_RDB.mei',\n", - " {'RDL_ID': 2567,\n", - " 'MEI_Name': '2567a_Tirsi_morir_volea_RDB.mei',\n", - " 'Title': 'Tirsi morir volea',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2567/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2571b_Felice_primavera_RDB.mei',\n", + " {'RDL_ID': 2571,\n", + " 'MEI_Name': '2571b_Felice_primavera_RDB.mei',\n", + " 'Title': 'Felice primavera',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2571/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '9',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '13',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -926,21 +1299,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2567b_Tirsi_morir_volea_RDB.mei',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2567a_Tirsi_morir_volea_RDB.mei',\n", " {'RDL_ID': 2567,\n", - " 'MEI_Name': '2567b_Tirsi_morir_volea_RDB.mei',\n", + " 'MEI_Name': '2567a_Tirsi_morir_volea_RDB.mei',\n", " 'Title': 'Tirsi morir volea',\n", " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2567/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", " 'Source_Position': '9',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -959,21 +1361,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2568_Mentre_mia_stella_RDB.mei',\n", - " {'RDL_ID': 2568,\n", - " 'MEI_Name': '2568_Mentre_mia_stella_RDB.mei',\n", - " 'Title': 'Mentre, mia stella, miri',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2568/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2571a_Felice_primavera_RDB.mei',\n", + " {'RDL_ID': 2571,\n", + " 'MEI_Name': '2571a_Felice_primavera_RDB.mei',\n", + " 'Title': 'Felice primavera',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2571/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '10',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '13',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -992,21 +1423,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/1021_Son_si_belle_RDB.mei',\n", - " {'RDL_ID': 1021,\n", - " 'MEI_Name': '1021_Son_si_belle_RDB.mei',\n", - " 'Title': 'Son sì belle le rose',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1021/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2566_O_dolce_RDB.mei',\n", + " {'RDL_ID': 2566,\n", + " 'MEI_Name': '2566_O_dolce_RDB.mei',\n", + " 'Title': 'O dolce mio martire',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2566/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '19 | 14',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '8',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector ',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | | https://orcid.org/0009-0004-9844-9662',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1025,21 +1485,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2572_Bella_angioletta_RDB.mei',\n", - " {'RDL_ID': 2572,\n", - " 'MEI_Name': '2572_Bella_angioletta_RDB.mei',\n", - " 'Title': \"Bell'angioletta da le vaghe piume\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2572/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2567b_Tirsi_morir_volea_RDB.mei',\n", + " {'RDL_ID': 2567,\n", + " 'MEI_Name': '2567b_Tirsi_morir_volea_RDB.mei',\n", + " 'Title': 'Tirsi morir volea',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2567/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '15',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '9',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1058,21 +1547,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2573a_Caro_amoroso_neo_RDB.mei',\n", - " {'RDL_ID': 2573,\n", - " 'MEI_Name': '2573a_Caro_amoroso_neo_RDB.mei',\n", - " 'Title': 'Caro amoroso neo',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2573/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2582_Candida_man_RDB.mei',\n", + " {'RDL_ID': 2582,\n", + " 'MEI_Name': '2582_Candida_man_RDB.mei',\n", + " 'Title': 'Candida man qual neve agli occhi offerse',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2582/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '1',\n", - " 'Source_Date': 1594.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1091,21 +1609,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2562_Gel_ha_madonna_RDB.mei',\n", - " {'RDL_ID': 2562,\n", - " 'MEI_Name': '2562_Gel_ha_madonna_RDB.mei',\n", - " 'Title': 'Gelo ha madonna il seno e fiamma il volto',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2562/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2575b_Se_per_lieve_RDB.mei',\n", + " {'RDL_ID': 2575,\n", + " 'MEI_Name': '2575b_Se_per_lieve_RDB.mei',\n", + " 'Title': 'Se per lieve ferita',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2575/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '4',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '3',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1124,21 +1671,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2563a_Mentre_Madonna_RDB.mei',\n", - " {'RDL_ID': 2563,\n", - " 'MEI_Name': '2563a_Mentre_Madonna_RDB.mei',\n", - " 'Title': 'Mentre madonna il lasso fianco posa',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2563/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2577a_Se_cosi_dolce_RDB.mei',\n", + " {'RDL_ID': 2577,\n", + " 'MEI_Name': '2577a_Se_cosi_dolce_RDB.mei',\n", + " 'Title': 'Se così dolce è il duolo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2577/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", " 'Source_Position': '5',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1157,21 +1733,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2559b_Baci_soavi_RDB.mei',\n", - " {'RDL_ID': 2559,\n", - " 'MEI_Name': '2559b_Baci_soavi_RDB.mei',\n", - " 'Title': 'Baci soavi e cari',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2559/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2583_Non_mai_non_cangero_RDB.mei',\n", + " {'RDL_ID': 2583,\n", + " 'MEI_Name': '2583_Non_mai_non_cangero_RDB.mei',\n", + " 'Title': 'Non mai non cangerò',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2583/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '1',\n", - " 'Source_Date': 1594.0,\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1190,21 +1795,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2564a_Se_da_si_nobil_RDB.mei',\n", - " {'RDL_ID': 2564,\n", - " 'MEI_Name': '2564a_Se_da_si_nobil_RDB.mei',\n", - " 'Title': 'Se da sì nobil mano',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2564/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2585_Non_mi_toglia_RDB.mei',\n", + " {'RDL_ID': 2585,\n", + " 'MEI_Name': '2585_Non_mi_toglia_RDB.mei',\n", + " 'Title': 'Non mi toglia il ben mio',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2585/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '6',\n", - " 'Source_Date': 1594.0,\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1223,21 +1857,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2564b_Se_da_si_nobil_RDB.mei',\n", - " {'RDL_ID': 2564,\n", - " 'MEI_Name': '2564b_Se_da_si_nobil_RDB.mei',\n", - " 'Title': 'Se da sì nobil mano',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2564/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2584_All_apparir_di_quelle_RDB.mei',\n", + " {'RDL_ID': 2584,\n", + " 'MEI_Name': '2584_All_apparir_di_quelle_RDB.mei',\n", + " 'Title': \"All'apparir di quelle luci ardenti\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2584/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '6',\n", - " 'Source_Date': 1594.0,\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1256,21 +1919,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2566_O_dolce_RDB.mei',\n", - " {'RDL_ID': 2566,\n", - " 'MEI_Name': '2566_O_dolce_RDB.mei',\n", - " 'Title': 'O dolce mio martire',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2566/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/1018b_Dalle_odorate_spoglie_RDB.mei',\n", + " {'RDL_ID': 1018,\n", + " 'MEI_Name': '1018b_Dalle_odorate_spoglie_RDB.mei',\n", + " 'Title': 'Dalle odorate spoglie',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1018/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '8',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '16 | 11',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0009-0004-9844-9662 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1289,21 +1981,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2569_Non_mirar_RDB.mei',\n", - " {'RDL_ID': 2569,\n", - " 'MEI_Name': '2569_Non_mirar_RDB.mei',\n", - " 'Title': 'Non mirar, non mirare',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2569/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2581b_Non_e_questa_RDB.mei',\n", + " {'RDL_ID': 2581,\n", + " 'MEI_Name': '2581b_Non_e_questa_RDB.mei',\n", + " 'Title': 'Non è questa la mano',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2581/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '11',\n", - " 'Source_Date': 1594.0,\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1322,21 +2043,52 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2570_Questi_leggiadri_RDB.mei',\n", - " {'RDL_ID': 2570,\n", - " 'MEI_Name': '2570_Questi_leggiadri_RDB.mei',\n", - " 'Title': 'Questi leggiadri odorosetti fiori',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2570/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2580_Sento_che_nel_partire_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2581a_Non_e_questa_RDB.mei',\n", + " {'RDL_ID': 2581,\n", + " 'MEI_Name': '2581a_Non_e_questa_RDB.mei',\n", + " 'Title': 'Non è questa la mano',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2581/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '12',\n", - " 'Source_Date': 1594.0,\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1355,21 +2107,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2571a_Felice_primavera_RDB.mei',\n", - " {'RDL_ID': 2571,\n", - " 'MEI_Name': '2571a_Felice_primavera_RDB.mei',\n", - " 'Title': 'Felice primavera',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2571/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2573a_Caro_amoroso_neo_RDB.mei',\n", + " {'RDL_ID': 2573,\n", + " 'MEI_Name': '2573a_Caro_amoroso_neo_RDB.mei',\n", + " 'Title': 'Caro amoroso neo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2573/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '13',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '1',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1388,21 +2169,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2571b_Felice_primavera_RDB.mei',\n", - " {'RDL_ID': 2571,\n", - " 'MEI_Name': '2571b_Felice_primavera_RDB.mei',\n", - " 'Title': 'Felice primavera',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2571/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/1018a_Dalle_odorate_spoglie_RDB.mei',\n", + " {'RDL_ID': 1018,\n", + " 'MEI_Name': '1018a_Dalle_odorate_spoglie_RDB.mei',\n", + " 'Title': 'Dalle odorate spoglie',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1018/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '13',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '16 | 11',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0009-0004-9844-9662 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1421,21 +2231,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2573b_Caro_amoroso_neo_RDB.mei',\n", - " {'RDL_ID': 2573,\n", - " 'MEI_Name': '2573b_Caro_amoroso_neo_RDB.mei',\n", - " 'Title': 'Caro amoroso neo',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2573/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2559a_Baci_soavi_RDB.mei',\n", + " {'RDL_ID': 2559,\n", + " 'MEI_Name': '2559a_Baci_soavi_RDB.mei',\n", + " 'Title': 'Baci soavi e cari',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2559/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", " 'Source_Position': '1',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1454,21 +2293,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2574_Hai_rotto_RDB.mei',\n", - " {'RDL_ID': 2574,\n", - " 'MEI_Name': '2574_Hai_rotto_RDB.mei',\n", - " 'Title': 'Hai rotto e sciolto e spento a poco a poco',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2574/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2560_Madonna_io_RDB.mei',\n", + " {'RDL_ID': 2560,\n", + " 'MEI_Name': '2560_Madonna_io_RDB.mei',\n", + " 'Title': 'Madonna, io ben vorrei che fusse in voi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2560/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", " 'Source_Position': '2',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1487,21 +2355,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2575a_Se_per_lieve_RDB.mei',\n", - " {'RDL_ID': 2575,\n", - " 'MEI_Name': '2575a_Se_per_lieve_RDB.mei',\n", - " 'Title': 'Se per lieve ferita',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2575/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2564a_Se_da_si_nobil_RDB.mei',\n", + " {'RDL_ID': 2564,\n", + " 'MEI_Name': '2564a_Se_da_si_nobil_RDB.mei',\n", + " 'Title': 'Se da sì nobil mano',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2564/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '3',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '6',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1520,21 +2417,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2576_In_piu_leggiadro_velo_RDB.mei',\n", - " {'RDL_ID': 2576,\n", - " 'MEI_Name': '2576_In_piu_leggiadro_velo_RDB.mei',\n", - " 'Title': 'In più leggiadro velo',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2576/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2559b_Baci_soavi_RDB.mei',\n", + " {'RDL_ID': 2559,\n", + " 'MEI_Name': '2559b_Baci_soavi_RDB.mei',\n", + " 'Title': 'Baci soavi e cari',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2559/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '4',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '1',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1553,21 +2479,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2577a_Se_cosi_dolce_RDB.mei',\n", - " {'RDL_ID': 2577,\n", - " 'MEI_Name': '2577a_Se_cosi_dolce_RDB.mei',\n", - " 'Title': 'Se così dolce è il duolo',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2577/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/1021_Son_si_belle_RDB.mei',\n", + " {'RDL_ID': 1021,\n", + " 'MEI_Name': '1021_Son_si_belle_RDB.mei',\n", + " 'Title': 'Son sì belle le rose',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1021/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '5',\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '19 | 14',\n", " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Napoli',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0009-0004-9844-9662 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1586,21 +2541,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2578_Se_taccio_il_duol_RDB.mei',\n", - " {'RDL_ID': 2578,\n", - " 'MEI_Name': '2578_Se_taccio_il_duol_RDB.mei',\n", - " 'Title': \"Se taccio, il duol s'avanza\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2578/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2561_Com_esser_puo_RDB.mei',\n", + " {'RDL_ID': 2561,\n", + " 'MEI_Name': '2561_Com_esser_puo_RDB.mei',\n", + " 'Title': \"Com'esser può ch'io viva se m'uccidi\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2561/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '6',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1619,21 +2603,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2579a_O_com_e_gran_martire_RDB.mei',\n", - " {'RDL_ID': 2579,\n", - " 'MEI_Name': '2579a_O_com_e_gran_martire_RDB.mei',\n", - " 'Title': 'O come è gran martire',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2579/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2563a_Mentre_Madonna_RDB.mei',\n", + " {'RDL_ID': 2563,\n", + " 'MEI_Name': '2563a_Mentre_Madonna_RDB.mei',\n", + " 'Title': 'Mentre madonna il lasso fianco posa',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2563/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '7',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1652,21 +2665,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2579b_O_com_e_gran_martire_RDB.mei',\n", - " {'RDL_ID': 2579,\n", - " 'MEI_Name': '2579b_O_com_e_gran_martire_RDB.mei',\n", - " 'Title': 'O come è gran martire',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2579/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2562_Gel_ha_madonna_RDB.mei',\n", + " {'RDL_ID': 2562,\n", + " 'MEI_Name': '2562_Gel_ha_madonna_RDB.mei',\n", + " 'Title': 'Gelo ha madonna il seno e fiamma il volto',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2562/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '7',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1685,23 +2727,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2580_Sento_che_nel_partire_RDB.mei',\n", - " None),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2581a_Non_e_questa_RDB.mei',\n", - " {'RDL_ID': 2581,\n", - " 'MEI_Name': '2581a_Non_e_questa_RDB.mei',\n", - " 'Title': 'Non è questa la mano',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2581/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2563b_Mentre_Madonna_RDB.mei',\n", + " {'RDL_ID': 2563,\n", + " 'MEI_Name': '2563b_Mentre_Madonna_RDB.mei',\n", + " 'Title': 'Mentre madonna il lasso fianco posa',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2563/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '9',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020914',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Filippo Alberti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/73006056',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Luigi Cassola',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/56859607',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Livio Celiano',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/188159032534201181057',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Alessandro Gatti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/97152742891227730359',\n", + " 'Person_6_role': 'Dedicatee/Owner',\n", + " 'Person_6_name': 'Carlo Gesualdo',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Battista Guarini',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_8_role': 'Dedicator',\n", + " 'Person_8_name': 'Scipione Stella',\n", + " 'Person_8_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_9_role': 'Lyricist-Poet',\n", + " 'Person_9_name': 'Torquato Tasso',\n", + " 'Person_9_VIAF': 'http://viaf.org/viaf/4936996',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1720,21 +2789,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2581b_Non_e_questa_RDB.mei',\n", - " {'RDL_ID': 2581,\n", - " 'MEI_Name': '2581b_Non_e_questa_RDB.mei',\n", - " 'Title': 'Non è questa la mano',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2581/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2587_Ahi_disperata_RDB.mei',\n", + " {'RDL_ID': 2587,\n", + " 'MEI_Name': '2587_Ahi_disperata_RDB.mei',\n", + " 'Title': 'Ahi, disperata vita',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2587/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '9',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '2',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1753,21 +2851,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2582_Candida_man_RDB.mei',\n", - " {'RDL_ID': 2582,\n", - " 'MEI_Name': '2582_Candida_man_RDB.mei',\n", - " 'Title': 'Candida man qual neve agli occhi offerse',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2582/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2595a_Meraviglia_d_Amore_RDB.mei',\n", + " {'RDL_ID': 2595,\n", + " 'MEI_Name': '2595a_Meraviglia_d_Amore_RDB.mei',\n", + " 'Title': \"Meraviglia d'Amore\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2595/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", " 'Source_Position': '10',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1786,21 +2913,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/1018a_Dalle_odorate_spoglie_RDB.mei',\n", - " {'RDL_ID': 1018,\n", - " 'MEI_Name': '1018a_Dalle_odorate_spoglie_RDB.mei',\n", - " 'Title': 'Dalle odorate spoglie',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1018/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2602_Donna_se_m_ancidete_RDB.mei',\n", + " {'RDL_ID': 2602,\n", + " 'MEI_Name': '2602_Donna_se_m_ancidete_RDB.mei',\n", + " 'Title': \"Donna, se m'ancidete\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2602/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '16 | 11',\n", - " 'Source_Date': 1594.0,\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector ',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | | https://orcid.org/0009-0004-9844-9662',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1819,21 +2975,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/1018b_Dalle_odorate_spoglie_RDB.mei',\n", - " {'RDL_ID': 1018,\n", - " 'MEI_Name': '1018b_Dalle_odorate_spoglie_RDB.mei',\n", - " 'Title': 'Dalle odorate spoglie',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1018/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2601_Dolcissimo_sospiro_RDB.mei',\n", + " {'RDL_ID': 2601,\n", + " 'MEI_Name': '2601_Dolcissimo_sospiro_RDB.mei',\n", + " 'Title': 'Dolcissimo sospiro',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2601/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '16 | 11',\n", - " 'Source_Date': 1594.0,\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '16',\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector ',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | | https://orcid.org/0009-0004-9844-9662',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1852,21 +3037,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2583_Non_mai_non_cangero_RDB.mei',\n", - " {'RDL_ID': 2583,\n", - " 'MEI_Name': '2583_Non_mai_non_cangero_RDB.mei',\n", - " 'Title': 'Non mai non cangerò',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2583/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2597_Se_piange_ohime_RDB.mei',\n", + " {'RDL_ID': 2597,\n", + " 'MEI_Name': '2597_Se_piange_ohime_RDB.mei',\n", + " 'Title': 'Se piange, ohimè, la donna del mio core',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2597/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", " 'Source_Position': '12',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1885,21 +3099,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2584_All_apparir_di_quelle_RDB.mei',\n", - " {'RDL_ID': 2584,\n", - " 'MEI_Name': '2584_All_apparir_di_quelle_RDB.mei',\n", - " 'Title': \"All'apparir di quelle luci ardenti\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2584/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2586b_Voi_volete_RDB.mei',\n", + " {'RDL_ID': 2586,\n", + " 'MEI_Name': '2586b_Voi_volete_RDB.mei',\n", + " 'Title': \"Voi volete ch'io mora\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2586/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '13',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '1',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1918,21 +3161,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2585_Non_mi_toglia_RDB.mei',\n", - " {'RDL_ID': 2585,\n", - " 'MEI_Name': '2585_Non_mi_toglia_RDB.mei',\n", - " 'Title': 'Non mi toglia il ben mio',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2585/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2598_Ancidetemi_pur_RDB.mei',\n", + " {'RDL_ID': 2598,\n", + " 'MEI_Name': '2598_Ancidetemi_pur_RDB.mei',\n", + " 'Title': 'Ancidetemi pur, grievi martiri',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2598/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '14',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1951,21 +3223,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2586a_Voi_volete_RDB.mei',\n", - " {'RDL_ID': 2586,\n", - " 'MEI_Name': '2586a_Voi_volete_RDB.mei',\n", - " 'Title': \"Voi volete ch'io mora\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2586/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2600_Deh_se_gia_fu_crudel_RDB.mei',\n", + " {'RDL_ID': 2600,\n", + " 'MEI_Name': '2600_Deh_se_gia_fu_crudel_RDB.mei',\n", + " 'Title': 'Deh, se già fu crudele al mio martire',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2600/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '1',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -1984,21 +3285,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2586b_Voi_volete_RDB.mei',\n", - " {'RDL_ID': 2586,\n", - " 'MEI_Name': '2586b_Voi_volete_RDB.mei',\n", - " 'Title': \"Voi volete ch'io mora\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2586/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2599_Se_vi_miro_RDB.mei',\n", + " {'RDL_ID': 2599,\n", + " 'MEI_Name': '2599_Se_vi_miro_RDB.mei',\n", + " 'Title': 'Se vi miro pietosa',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2599/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '1',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2017,21 +3347,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2587_Ahi_disperata_RDB.mei',\n", - " {'RDL_ID': 2587,\n", - " 'MEI_Name': '2587_Ahi_disperata_RDB.mei',\n", - " 'Title': 'Ahi, disperata vita',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2587/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2595b_Meraviglia_d_Amore_RDB.mei',\n", + " {'RDL_ID': 2595,\n", + " 'MEI_Name': '2595b_Meraviglia_d_Amore_RDB.mei',\n", + " 'Title': \"Meraviglia d'Amore\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2595/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '2',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '10',\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2050,21 +3409,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2575b_Se_per_lieve_RDB.mei',\n", - " {'RDL_ID': 2575,\n", - " 'MEI_Name': '2575b_Se_per_lieve_RDB.mei',\n", - " 'Title': 'Se per lieve ferita',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2575/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2596_Crudelissima_doglia_RDB.mei',\n", + " {'RDL_ID': 2596,\n", + " 'MEI_Name': '2596_Crudelissima_doglia_RDB.mei',\n", + " 'Title': 'Crudelissima doglia',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2596/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '3',\n", - " 'Source_Date': 1594.0,\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '11',\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2083,21 +3471,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2730a_Canzon_francese_del_Principe_dim_def_RDB.mei',\n", - " {'RDL_ID': 2730,\n", - " 'MEI_Name': '2730a_Canzon_francese_del_Principe_dim_def_RDB.mei',\n", - " 'Title': 'Canzon franzese del Principe',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2730/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2586a_Voi_volete_RDB.mei',\n", + " {'RDL_ID': 2586,\n", + " 'MEI_Name': '2586a_Voi_volete_RDB.mei',\n", + " 'Title': \"Voi volete ch'io mora\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2586/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#964 GB-Lbl, MS Add. 30491',\n", - " 'Source_Position': '',\n", - " 'Source_Date': '',\n", - " 'Source_Country': '',\n", - " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1611.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2116,21 +3533,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei',\n", - " {'RDL_ID': 2730,\n", - " 'MEI_Name': '2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei',\n", - " 'Title': 'Canzon franzese del Principe',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2730/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2577b_Se_cosi_dolce_RDB.mei',\n", + " {'RDL_ID': 2577,\n", + " 'MEI_Name': '2577b_Se_cosi_dolce_RDB.mei',\n", + " 'Title': 'Se così dolce è il duolo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2577/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#964 GB-Lbl, MS Add. 30491',\n", - " 'Source_Position': '',\n", - " 'Source_Date': '',\n", - " 'Source_Country': '',\n", - " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1594.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2149,21 +3595,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2588_Languisco_e_moro_RDB.mei',\n", - " {'RDL_ID': 2588,\n", - " 'MEI_Name': '2588_Languisco_e_moro_RDB.mei',\n", - " 'Title': 'Languisco e moro, ahi, cruda',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2588/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2579a_O_com_e_gran_martire_RDB.mei',\n", + " {'RDL_ID': 2579,\n", + " 'MEI_Name': '2579a_O_com_e_gran_martire_RDB.mei',\n", + " 'Title': 'O come è gran martire',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2579/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '3',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '7',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2182,21 +3657,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2589_Del_bel_de_bei_RDB.mei',\n", - " {'RDL_ID': 2589,\n", - " 'MEI_Name': '2589_Del_bel_de_bei_RDB.mei',\n", - " 'Title': \"Del bel de' bei vostri occhi\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2589/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2573b_Caro_amoroso_neo_RDB.mei',\n", + " {'RDL_ID': 2573,\n", + " 'MEI_Name': '2573b_Caro_amoroso_neo_RDB.mei',\n", + " 'Title': 'Caro amoroso neo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2573/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '4',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2215,21 +3719,52 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2590_Ahi_dispietata_RDB.mei',\n", - " {'RDL_ID': 2590,\n", - " 'MEI_Name': '2590_Ahi_dispietata_RDB.mei',\n", - " 'Title': 'Ahi, dispietata e cruda',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2590/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2574_Hai_rotto_RDB_2_bsWHShV.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2579b_O_com_e_gran_martire_RDB.mei',\n", + " {'RDL_ID': 2579,\n", + " 'MEI_Name': '2579b_O_com_e_gran_martire_RDB.mei',\n", + " 'Title': 'O come è gran martire',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2579/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '5',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '7',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2248,21 +3783,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2591_Dolce_spirto_RDB.mei',\n", - " {'RDL_ID': 2591,\n", - " 'MEI_Name': '2591_Dolce_spirto_RDB.mei',\n", - " 'Title': \"Dolce spirto d'Amore\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2591/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2575a_Se_per_lieve_RDB.mei',\n", + " {'RDL_ID': 2575,\n", + " 'MEI_Name': '2575a_Se_per_lieve_RDB.mei',\n", + " 'Title': 'Se per lieve ferita',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2575/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '6',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2281,21 +3845,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2592a_Sospirava_il_mio_core_RDB.mei',\n", - " {'RDL_ID': 2592,\n", - " 'MEI_Name': '2592a_Sospirava_il_mio_core_RDB.mei',\n", - " 'Title': 'Sospirava il mio core',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2592/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2576_In_piu_leggiadro_velo_RDB.mei',\n", + " {'RDL_ID': 2576,\n", + " 'MEI_Name': '2576_In_piu_leggiadro_velo_RDB.mei',\n", + " 'Title': 'In più leggiadro velo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2576/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '7',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1594.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2314,21 +3907,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2592b_Sospirava_il_mio_core_RDB.mei',\n", - " {'RDL_ID': 2592,\n", - " 'MEI_Name': '2592b_Sospirava_il_mio_core_RDB.mei',\n", - " 'Title': 'Sospirava il mio core',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2592/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2578_Se_taccio_il_duol_RDB.mei',\n", + " {'RDL_ID': 2578,\n", + " 'MEI_Name': '2578_Se_taccio_il_duol_RDB.mei',\n", + " 'Title': \"Se taccio, il duol s'avanza\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2578/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '7',\n", + " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020910',\n", + " 'Source_Position': '6',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': \"Alfonso d'Avalos\",\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/65106489',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Lyricist-Poet',\n", + " 'Person_3_name': 'Orsina Cavalletta',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Scipione Stella',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/61652494',\n", + " 'Person_7_role': 'Lyricist-Poet',\n", + " 'Person_7_name': 'Torquato Tasso',\n", + " 'Person_7_VIAF': 'http://viaf.org/viaf/4936996',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2347,21 +3969,52 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2593_Veggio_si_dal_mio_sole_RDB.mei',\n", - " {'RDL_ID': 2593,\n", - " 'MEI_Name': '2593_Veggio_si_dal_mio_sole_RDB.mei',\n", - " 'Title': 'Veggio sì dal mio sole',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2593/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2605a_Io_tacero_RDB_4eOUTTL.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2608a_Or_che_in_gioia_RDB.mei',\n", + " {'RDL_ID': 2608,\n", + " 'MEI_Name': '2608a_Or_che_in_gioia_RDB.mei',\n", + " 'Title': 'Or che in gioia credea viver contento',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2608/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '8',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2380,21 +4033,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2594_Non_t_amo_RDB.mei',\n", - " {'RDL_ID': 2594,\n", - " 'MEI_Name': '2594_Non_t_amo_RDB.mei',\n", - " 'Title': '\"Non t\\'amo\", o voce ingrata',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2594/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2603_Luci_serene_RDB.mei',\n", + " {'RDL_ID': 2603,\n", + " 'MEI_Name': '2603_Luci_serene_RDB.mei',\n", + " 'Title': 'Luci serene e chiare',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2603/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '9',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '1',\n", " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2413,21 +4095,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2595a_Meraviglia_d_Amore_RDB.mei',\n", - " {'RDL_ID': 2595,\n", - " 'MEI_Name': '2595a_Meraviglia_d_Amore_RDB.mei',\n", - " 'Title': \"Meraviglia d'Amore\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2595/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2612_Mentre_gira_costei_RDB.mei',\n", + " {'RDL_ID': 2612,\n", + " 'MEI_Name': '2612_Mentre_gira_costei_RDB.mei',\n", + " 'Title': 'Mentre gira costei',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2612/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", " 'Source_Position': '10',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2446,21 +4157,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2595b_Meraviglia_d_Amore_RDB.mei',\n", - " {'RDL_ID': 2595,\n", - " 'MEI_Name': '2595b_Meraviglia_d_Amore_RDB.mei',\n", - " 'Title': \"Meraviglia d'Amore\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2595/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2617b_Il_sol_RDB.mei',\n", + " {'RDL_ID': 2617,\n", + " 'MEI_Name': '2617b_Il_sol_RDB.mei',\n", + " 'Title': 'Il sol, qualor più splende',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2617/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '10',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2479,21 +4219,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2596_Crudelissima_doglia_RDB.mei',\n", - " {'RDL_ID': 2596,\n", - " 'MEI_Name': '2596_Crudelissima_doglia_RDB.mei',\n", - " 'Title': 'Crudelissima doglia',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2596/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2604_Talor_sano_desio_RDB.mei',\n", + " {'RDL_ID': 2604,\n", + " 'MEI_Name': '2604_Talor_sano_desio_RDB.mei',\n", + " 'Title': 'Talor sano desio',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2604/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '11',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '2',\n", " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2512,21 +4281,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2597_Se_piange_ohime_RDB.mei',\n", - " {'RDL_ID': 2597,\n", - " 'MEI_Name': '2597_Se_piange_ohime_RDB.mei',\n", - " 'Title': 'Se piange, ohimè, la donna del mio core',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2597/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2616_Se_chiudete_nel_core_RDB.mei',\n", + " {'RDL_ID': 2616,\n", + " 'MEI_Name': '2616_Se_chiudete_nel_core_RDB.mei',\n", + " 'Title': 'Se chiudete nel core',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2616/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '12',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2545,21 +4343,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2598_Ancidetemi_pur_RDB.mei',\n", - " {'RDL_ID': 2598,\n", - " 'MEI_Name': '2598_Ancidetemi_pur_RDB.mei',\n", - " 'Title': 'Ancidetemi pur, grievi martiri',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2598/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2617a_Il_sol_RDB.mei',\n", + " {'RDL_ID': 2617,\n", + " 'MEI_Name': '2617a_Il_sol_RDB.mei',\n", + " 'Title': 'Il sol, qualor più splende',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2617/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '13',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2578,21 +4405,52 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2599_Se_vi_miro_RDB.mei',\n", - " {'RDL_ID': 2599,\n", - " 'MEI_Name': '2599_Se_vi_miro_RDB.mei',\n", - " 'Title': 'Se vi miro pietosa',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2599/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2613_A_voi_mentre_il_mio_core_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2615_Arde_il_mio_cor_RDB.mei',\n", + " {'RDL_ID': 2615,\n", + " 'MEI_Name': '2615_Arde_il_mio_cor_RDB.mei',\n", + " 'Title': 'Arde il mio cor ed è sì dolce il foco',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2615/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '14',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2611,21 +4469,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2600_Deh_se_gia_fu_crudel_RDB.mei',\n", - " {'RDL_ID': 2600,\n", - " 'MEI_Name': '2600_Deh_se_gia_fu_crudel_RDB.mei',\n", - " 'Title': 'Deh, se già fu crudele al mio martire',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2600/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2614b_Ecco_moriro_dunque_RDB.mei',\n", + " {'RDL_ID': 2614,\n", + " 'MEI_Name': '2614b_Ecco_moriro_dunque_RDB.mei',\n", + " 'Title': 'Ecco, morirò dunque',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2614/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '15',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2644,21 +4531,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2601_Dolcissimo_sospiro_RDB.mei',\n", - " {'RDL_ID': 2601,\n", - " 'MEI_Name': '2601_Dolcissimo_sospiro_RDB.mei',\n", - " 'Title': 'Dolcissimo sospiro',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2601/',\n", - " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2614a_Ecco_moriro_dunque_RDB.mei',\n", + " {'RDL_ID': 2614,\n", + " 'MEI_Name': '2614a_Ecco_moriro_dunque_RDB.mei',\n", + " 'Title': 'Ecco, morirò dunque',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2614/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '16',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2677,21 +4593,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2602_Donna_se_m_ancidete_RDB.mei',\n", - " {'RDL_ID': 2602,\n", - " 'MEI_Name': '2602_Donna_se_m_ancidete_RDB.mei',\n", - " 'Title': \"Donna, se m'ancidete\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2602/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2589_Del_bel_de_bei_RDB.mei',\n", + " {'RDL_ID': 2589,\n", + " 'MEI_Name': '2589_Del_bel_de_bei_RDB.mei',\n", + " 'Title': \"Del bel de' bei vostri occhi\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2589/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", - " 'Source_Position': '17',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2710,21 +4655,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2604_Talor_sano_desio_RDB.mei',\n", - " {'RDL_ID': 2604,\n", - " 'MEI_Name': '2604_Talor_sano_desio_RDB.mei',\n", - " 'Title': 'Talor sano desio',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2604/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2591_Dolce_spirto_RDB.mei',\n", + " {'RDL_ID': 2591,\n", + " 'MEI_Name': '2591_Dolce_spirto_RDB.mei',\n", + " 'Title': \"Dolce spirto d'Amore\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2591/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '2',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2743,21 +4717,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2603_Luci_serene_RDB.mei',\n", - " {'RDL_ID': 2603,\n", - " 'MEI_Name': '2603_Luci_serene_RDB.mei',\n", - " 'Title': 'Luci serene e chiare',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2603/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2590_Ahi_dispietata_RDB.mei',\n", + " {'RDL_ID': 2590,\n", + " 'MEI_Name': '2590_Ahi_dispietata_RDB.mei',\n", + " 'Title': 'Ahi, dispietata e cruda',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2590/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '1',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2776,21 +4779,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2605a_Io_tacero_RDB.mei',\n", - " {'RDL_ID': 2605,\n", - " 'MEI_Name': '2605a_Io_tacero_RDB.mei',\n", - " 'Title': 'Io tacerò, ma nel silenzio moi',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2605/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2592a_Sospirava_il_mio_core_RDB.mei',\n", + " {'RDL_ID': 2592,\n", + " 'MEI_Name': '2592a_Sospirava_il_mio_core_RDB.mei',\n", + " 'Title': 'Sospirava il mio core',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2592/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '3',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2809,21 +4841,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2605b_Io_tacero_RDB.mei',\n", - " {'RDL_ID': 2605,\n", - " 'MEI_Name': '2605b_Io_tacero_RDB.mei',\n", - " 'Title': 'Io tacerò, ma nel silenzio moi',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2605/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2592b_Sospirava_il_mio_core_RDB.mei',\n", + " {'RDL_ID': 2592,\n", + " 'MEI_Name': '2592b_Sospirava_il_mio_core_RDB.mei',\n", + " 'Title': 'Sospirava il mio core',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2592/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '3',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2842,21 +4903,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2606_Che_fai_meco_RDB.mei',\n", - " {'RDL_ID': 2606,\n", - " 'MEI_Name': '2606_Che_fai_meco_RDB.mei',\n", - " 'Title': 'Che fai meco, mio cor misero e solo?',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2606/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2593_Veggio_si_dal_mio_sole_RDB.mei',\n", + " {'RDL_ID': 2593,\n", + " 'MEI_Name': '2593_Veggio_si_dal_mio_sole_RDB.mei',\n", + " 'Title': 'Veggio sì dal mio sole',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2593/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '4',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '8',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2875,21 +4965,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2607_Questa_crudele_RDB.mei',\n", - " {'RDL_ID': 2607,\n", - " 'MEI_Name': '2607_Questa_crudele_RDB.mei',\n", - " 'Title': 'Questa crudele e pia',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2607/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2588_Languisco_e_moro_RDB.mei',\n", + " {'RDL_ID': 2588,\n", + " 'MEI_Name': '2588_Languisco_e_moro_RDB.mei',\n", + " 'Title': 'Languisco e moro, ahi, cruda',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2588/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '5',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2908,21 +5027,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2608a_Or_che_in_gioia_RDB.mei',\n", - " {'RDL_ID': 2608,\n", - " 'MEI_Name': '2608a_Or_che_in_gioia_RDB.mei',\n", - " 'Title': 'Or che in gioia credea viver contento',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2608/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2594_Non_t_amo_RDB.mei',\n", + " {'RDL_ID': 2594,\n", + " 'MEI_Name': '2594_Non_t_amo_RDB.mei',\n", + " 'Title': '\"Non t\\'amo\", o voce ingrata',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2594/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '6',\n", + " 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020922',\n", + " 'Source_Position': '9',\n", " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': 'Lyricist-Poet',\n", + " 'Person_6_name': 'Annibale Pocaterra',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/5272120',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2941,21 +5089,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2608b_Or_che_in_gioia_RDB.mei',\n", - " {'RDL_ID': 2608,\n", - " 'MEI_Name': '2608b_Or_che_in_gioia_RDB.mei',\n", - " 'Title': 'Or che in gioia credea viver contento',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2608/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2620_Itene_o_miei_sospiri_RDB.mei',\n", + " {'RDL_ID': 2620,\n", + " 'MEI_Name': '2620_Itene_o_miei_sospiri_RDB.mei',\n", + " 'Title': 'Itene, o miei sospiri',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2620/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '6',\n", - " 'Source_Date': 1596.0,\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -2974,23 +5151,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2609a_Cor_mio_deh_non_piangete_RDB.mei',\n", - " None),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2609b_cor_mio_deh_non_piangete_RDB.mei',\n", - " {'RDL_ID': 2609,\n", - " 'MEI_Name': '2609b_cor_mio_deh_non_piangete_RDB.mei',\n", - " 'Title': 'Cor mio, deh, non piangete',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2609/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2619_S_io_non_miro_RDB.mei',\n", + " {'RDL_ID': 2619,\n", + " 'MEI_Name': '2619_S_io_non_miro_RDB.mei',\n", + " 'Title': \"S'io non miro non moro\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2619/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '7',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '2',\n", " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3009,21 +5213,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2610_Sparge_la_morte_RDB.mei',\n", - " {'RDL_ID': 2610,\n", - " 'MEI_Name': '2610_Sparge_la_morte_RDB.mei',\n", - " 'Title': 'Sparge la morte al mio signor nel viso',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2610/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2627_Languisce_al_fin_RDB.mei',\n", + " {'RDL_ID': 2627,\n", + " 'MEI_Name': '2627_Languisce_al_fin_RDB.mei',\n", + " 'Title': 'Languisce al fin chi da la vita parte',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2627/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '8',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '10',\n", " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3042,21 +5275,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2611a_Moro_e_mentre_sospiro_RDB.mei',\n", - " {'RDL_ID': 2611,\n", - " 'MEI_Name': '2611a_Moro_e_mentre_sospiro_RDB.mei',\n", - " 'Title': 'Moro e mentre sospiro',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2611/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2624_Felicissimo_sonno_RDB.mei',\n", + " {'RDL_ID': 2624,\n", + " 'MEI_Name': '2624_Felicissimo_sonno_RDB.mei',\n", + " 'Title': 'Felicissimo sonno',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2624/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '9',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '7',\n", " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3075,21 +5337,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2611b_Moro_e_mentre_sospiro_RDB.mei',\n", - " {'RDL_ID': 2611,\n", - " 'MEI_Name': '2611b_Moro_e_mentre_sospiro_RDB.mei',\n", - " 'Title': 'Moro e mentre sospiro',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2611/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2626_Occhi_del_mio_cor_RDB.mei',\n", + " {'RDL_ID': 2626,\n", + " 'MEI_Name': '2626_Occhi_del_mio_cor_RDB.mei',\n", + " 'Title': 'Occhi, del mio cor vita',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2626/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", " 'Source_Position': '9',\n", " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3108,21 +5399,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2612_Mentre_gira_costei_RDB.mei',\n", - " {'RDL_ID': 2612,\n", - " 'MEI_Name': '2612_Mentre_gira_costei_RDB.mei',\n", - " 'Title': 'Mentre gira costei',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2612/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2623_Qual_fora_donna_RDB.mei',\n", + " {'RDL_ID': 2623,\n", + " 'MEI_Name': '2623_Qual_fora_donna_RDB.mei',\n", + " 'Title': 'Qual fora, donna, un dolce \"Ohimè\" d\\'amore',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2623/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '10',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '6',\n", " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3141,23 +5461,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2613_A_voi_mentre_il_mio_core_RDB.mei',\n", - " None),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2614a_Ecco_moriro_dunque_RDB.mei',\n", - " {'RDL_ID': 2614,\n", - " 'MEI_Name': '2614a_Ecco_moriro_dunque_RDB.mei',\n", - " 'Title': 'Ecco, morirò dunque',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2614/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2622_O_dolorosa_gioia_RDB.mei',\n", + " {'RDL_ID': 2622,\n", + " 'MEI_Name': '2622_O_dolorosa_gioia_RDB.mei',\n", + " 'Title': 'O dolorosa gioia',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2622/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '12',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '5',\n", " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3176,21 +5523,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2615_Arde_il_mio_cor_RDB.mei',\n", - " {'RDL_ID': 2615,\n", - " 'MEI_Name': '2615_Arde_il_mio_cor_RDB.mei',\n", - " 'Title': 'Arde il mio cor ed è sì dolce il foco',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2615/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2628_Merce_grido_RDB.mei',\n", + " {'RDL_ID': 2628,\n", + " 'MEI_Name': '2628_Merce_grido_RDB.mei',\n", + " 'Title': 'Mercé grido piangendo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2628/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '13',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '11',\n", " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3209,21 +5585,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2616_Se_chiudete_nel_core_RDB.mei',\n", - " {'RDL_ID': 2616,\n", - " 'MEI_Name': '2616_Se_chiudete_nel_core_RDB.mei',\n", - " 'Title': 'Se chiudete nel core',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2616/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2621_Dolcissima_mia_vita_RDB.mei',\n", + " {'RDL_ID': 2621,\n", + " 'MEI_Name': '2621_Dolcissima_mia_vita_RDB.mei',\n", + " 'Title': 'Dolcissima mia vita',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2621/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '14',\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '4',\n", " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3242,21 +5647,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2617a_Il_sol_RDB.mei',\n", - " {'RDL_ID': 2617,\n", - " 'MEI_Name': '2617a_Il_sol_RDB.mei',\n", - " 'Title': 'Il sol, qualor più splende',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2617/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2634a_Poiche_l_avida_sete_RDB.mei',\n", + " {'RDL_ID': 2634,\n", + " 'MEI_Name': '2634a_Poiche_l_avida_sete_RDB.mei',\n", + " 'Title': \"Poiché l'avida sete\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2634/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '15',\n", - " 'Source_Date': 1614.0,\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3275,21 +5709,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2617b_Il_sol_RDB.mei',\n", - " {'RDL_ID': 2617,\n", - " 'MEI_Name': '2617b_Il_sol_RDB.mei',\n", - " 'Title': 'Il sol, qualor più splende',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2617/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2636_Se_tu_fuggi_RDB.mei',\n", + " {'RDL_ID': 2636,\n", + " 'MEI_Name': '2636_Se_tu_fuggi_RDB.mei',\n", + " 'Title': 'Se tu fuggi, io non resto',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2636/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '15',\n", - " 'Source_Date': 1614.0,\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3308,21 +5771,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2618_Gioite_voi_RDB.mei',\n", - " {'RDL_ID': 2618,\n", - " 'MEI_Name': '2618_Gioite_voi_RDB.mei',\n", - " 'Title': 'Gioite voi col canto',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2618/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2635_O_tenebroso_giorno_RDB.mei',\n", + " {'RDL_ID': 2635,\n", + " 'MEI_Name': '2635_O_tenebroso_giorno_RDB.mei',\n", + " 'Title': 'O tenebroso giorno',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2635/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '1',\n", - " 'Source_Date': 1614.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '18',\n", + " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3341,21 +5833,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2619_S_io_non_miro_RDB.mei',\n", - " {'RDL_ID': 2619,\n", - " 'MEI_Name': '2619_S_io_non_miro_RDB.mei',\n", - " 'Title': \"S'io non miro non moro\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2619/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2634b_Poiche_l_avida_sete_RDB.mei',\n", + " {'RDL_ID': 2634,\n", + " 'MEI_Name': '2634b_Poiche_l_avida_sete_RDB.mei',\n", + " 'Title': \"Poiché l'avida sete\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2634/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '2',\n", - " 'Source_Date': 1614.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3374,21 +5895,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2620_Itene_o_miei_sospiri_RDB.mei',\n", - " {'RDL_ID': 2620,\n", - " 'MEI_Name': '2620_Itene_o_miei_sospiri_RDB.mei',\n", - " 'Title': 'Itene, o miei sospiri',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2620/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2632_Tu_m_uccidi_RDB.mei',\n", + " {'RDL_ID': 2632,\n", + " 'MEI_Name': '2632_Tu_m_uccidi_RDB.mei',\n", + " 'Title': \"Tu m'uccidi, o crudele\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2632/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '3',\n", - " 'Source_Date': 1614.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3407,21 +5957,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2621_Dolcissima_mia_vita_RDB.mei',\n", - " {'RDL_ID': 2621,\n", - " 'MEI_Name': '2621_Dolcissima_mia_vita_RDB.mei',\n", - " 'Title': 'Dolcissima mia vita',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2621/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2611b_Moro_e_mentre_sospiro_RDB.mei',\n", + " {'RDL_ID': 2611,\n", + " 'MEI_Name': '2611b_Moro_e_mentre_sospiro_RDB.mei',\n", + " 'Title': 'Moro e mentre sospiro',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2611/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '4',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '9',\n", " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3440,21 +6019,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2622_O_dolorosa_gioia_RDB.mei',\n", - " {'RDL_ID': 2622,\n", - " 'MEI_Name': '2622_O_dolorosa_gioia_RDB.mei',\n", - " 'Title': 'O dolorosa gioia',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2622/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2631_Asciugate_RDB.mei',\n", + " {'RDL_ID': 2631,\n", + " 'MEI_Name': '2631_Asciugate_RDB.mei',\n", + " 'Title': 'Asciugate i begli occhi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2631/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '5',\n", - " 'Source_Date': 1614.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3473,21 +6081,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2623_Qual_fora_donna_RDB.mei',\n", - " {'RDL_ID': 2623,\n", - " 'MEI_Name': '2623_Qual_fora_donna_RDB.mei',\n", - " 'Title': 'Qual fora, donna, un dolce \"Ohimè\" d\\'amore',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2623/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2637_T_amo_mia_vita_RDB.mei',\n", + " {'RDL_ID': 2637,\n", + " 'MEI_Name': '2637_T_amo_mia_vita_RDB.mei',\n", + " 'Title': '\"T\\'amo, mia vita!\", la mia cara vita',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2637/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '6',\n", - " 'Source_Date': 1614.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '20',\n", + " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3506,21 +6143,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2624_Felicissimo_sonno_RDB.mei',\n", - " {'RDL_ID': 2624,\n", - " 'MEI_Name': '2624_Felicissimo_sonno_RDB.mei',\n", - " 'Title': 'Felicissimo sonno',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2624/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2605b_Io_tacero_RDB.mei',\n", + " {'RDL_ID': 2605,\n", + " 'MEI_Name': '2605b_Io_tacero_RDB.mei',\n", + " 'Title': 'Io tacerò, ma nel silenzio moi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2605/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '7',\n", - " 'Source_Date': 1614.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3539,21 +6205,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2625_Se_vi_duol_RDB.mei',\n", - " {'RDL_ID': 2625,\n", - " 'MEI_Name': '2625_Se_vi_duol_RDB.mei',\n", - " 'Title': 'Se vi duol il mio duolo',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2625/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2607_Questa_crudele_RDB.mei',\n", + " {'RDL_ID': 2607,\n", + " 'MEI_Name': '2607_Questa_crudele_RDB.mei',\n", + " 'Title': 'Questa crudele e pia',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2607/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '8',\n", - " 'Source_Date': 1614.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '5',\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3572,21 +6267,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2626_Occhi_del_mio_cor_RDB.mei',\n", - " {'RDL_ID': 2626,\n", - " 'MEI_Name': '2626_Occhi_del_mio_cor_RDB.mei',\n", - " 'Title': 'Occhi, del mio cor vita',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2626/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2618_Gioite_voi_RDB.mei',\n", + " {'RDL_ID': 2618,\n", + " 'MEI_Name': '2618_Gioite_voi_RDB.mei',\n", + " 'Title': 'Gioite voi col canto',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2618/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '9',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '1',\n", " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3605,21 +6329,52 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2627_Languisce_al_fin_RDB.mei',\n", - " {'RDL_ID': 2627,\n", - " 'MEI_Name': '2627_Languisce_al_fin_RDB.mei',\n", - " 'Title': 'Languisce al fin chi da la vita parte',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2627/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2609a_Cor_mio_deh_non_piangete_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2609b_cor_mio_deh_non_piangete_RDB.mei',\n", + " {'RDL_ID': 2609,\n", + " 'MEI_Name': '2609b_cor_mio_deh_non_piangete_RDB.mei',\n", + " 'Title': 'Cor mio, deh, non piangete',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2609/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '10',\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '7',\n", " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3638,21 +6393,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2628_Merce_grido_RDB.mei',\n", - " {'RDL_ID': 2628,\n", - " 'MEI_Name': '2628_Merce_grido_RDB.mei',\n", - " 'Title': 'Mercé grido piangendo',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2628/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2633_Deh_coprite_RDB.mei',\n", + " {'RDL_ID': 2633,\n", + " 'MEI_Name': '2633_Deh_coprite_RDB.mei',\n", + " 'Title': 'Deh, coprite il bel seno',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2633/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '11',\n", - " 'Source_Date': 1614.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '16',\n", + " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3671,21 +6455,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2629_O_voi_RDB.mei',\n", - " {'RDL_ID': 2629,\n", - " 'MEI_Name': '2629_O_voi_RDB.mei',\n", - " 'Title': 'O voi troppo felici',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2629/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2610_Sparge_la_morte_RDB.mei',\n", + " {'RDL_ID': 2610,\n", + " 'MEI_Name': '2610_Sparge_la_morte_RDB.mei',\n", + " 'Title': 'Sparge la morte al mio signor nel viso',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2610/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '12',\n", - " 'Source_Date': 1616.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '8',\n", + " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3704,21 +6517,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2630_Correte_amanti_RDB.mei',\n", - " {'RDL_ID': 2630,\n", - " 'MEI_Name': '2630_Correte_amanti_RDB.mei',\n", - " 'Title': 'Correte, amanti, a prova',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2630/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2608b_Or_che_in_gioia_RDB.mei',\n", + " {'RDL_ID': 2608,\n", + " 'MEI_Name': '2608b_Or_che_in_gioia_RDB.mei',\n", + " 'Title': 'Or che in gioia credea viver contento',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2608/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '13',\n", - " 'Source_Date': 1616.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3737,21 +6579,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2631_Asciugate_RDB.mei',\n", - " {'RDL_ID': 2631,\n", - " 'MEI_Name': '2631_Asciugate_RDB.mei',\n", - " 'Title': 'Asciugate i begli occhi',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2631/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2606_Che_fai_meco_RDB.mei',\n", + " {'RDL_ID': 2606,\n", + " 'MEI_Name': '2606_Che_fai_meco_RDB.mei',\n", + " 'Title': 'Che fai meco, mio cor misero e solo?',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2606/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '14',\n", - " 'Source_Date': 1616.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1596.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3770,21 +6641,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2632_Tu_m_uccidi_RDB.mei',\n", - " {'RDL_ID': 2632,\n", - " 'MEI_Name': '2632_Tu_m_uccidi_RDB.mei',\n", - " 'Title': \"Tu m'uccidi, o crudele\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2632/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2611a_Moro_e_mentre_sospiro_RDB.mei',\n", + " {'RDL_ID': 2611,\n", + " 'MEI_Name': '2611a_Moro_e_mentre_sospiro_RDB.mei',\n", + " 'Title': 'Moro e mentre sospiro',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2611/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '15',\n", - " 'Source_Date': 1616.0,\n", + " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020924',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Baldini',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/59056780',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Ettore Gesualdo',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Battista Guarini',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3803,21 +6703,52 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2633_Deh_coprite_RDB.mei',\n", - " {'RDL_ID': 2633,\n", - " 'MEI_Name': '2633_Deh_coprite_RDB.mei',\n", - " 'Title': 'Deh, coprite il bel seno',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2633/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/4793_Quandoridente_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2629_O_voi_RDB.mei',\n", + " {'RDL_ID': 2629,\n", + " 'MEI_Name': '2629_O_voi_RDB.mei',\n", + " 'Title': 'O voi troppo felici',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2629/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '16',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '12',\n", " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3836,21 +6767,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2634a_Poiche_l_avida_sete_RDB.mei',\n", - " {'RDL_ID': 2634,\n", - " 'MEI_Name': '2634a_Poiche_l_avida_sete_RDB.mei',\n", - " 'Title': \"Poiché l'avida sete\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2634/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2630_Correte_amanti_RDB.mei',\n", + " {'RDL_ID': 2630,\n", + " 'MEI_Name': '2630_Correte_amanti_RDB.mei',\n", + " 'Title': 'Correte, amanti, a prova',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2630/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '17',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '13',\n", " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3869,21 +6829,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2634b_Poiche_l_avida_sete_RDB.mei',\n", - " {'RDL_ID': 2634,\n", - " 'MEI_Name': '2634b_Poiche_l_avida_sete_RDB.mei',\n", - " 'Title': \"Poiché l'avida sete\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2634/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2655_Volan_quasi_farfalle_RDB.mei',\n", + " {'RDL_ID': 2655,\n", + " 'MEI_Name': '2655_Volan_quasi_farfalle_RDB.mei',\n", + " 'Title': 'Volan quasi farfalle',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2655/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '17',\n", - " 'Source_Date': 1616.0,\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '18',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Napoli',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3902,21 +6891,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2635_O_tenebroso_giorno_RDB.mei',\n", - " {'RDL_ID': 2635,\n", - " 'MEI_Name': '2635_O_tenebroso_giorno_RDB.mei',\n", - " 'Title': 'O tenebroso giorno',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2635/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2538_Se_la_mia_morte_RDB.mei',\n", + " {'RDL_ID': 2638,\n", + " 'MEI_Name': '2538_Se_la_mia_morte_RDB.mei',\n", + " 'Title': 'Se la mia morte brami',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2638/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '18',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '1',\n", " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Napoli',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3935,21 +6953,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2636_Se_tu_fuggi_RDB.mei',\n", - " {'RDL_ID': 2636,\n", - " 'MEI_Name': '2636_Se_tu_fuggi_RDB.mei',\n", - " 'Title': 'Se tu fuggi, io non resto',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2636/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2654_Moro_lasso_RDB.mei',\n", + " {'RDL_ID': 2654,\n", + " 'MEI_Name': '2654_Moro_lasso_RDB.mei',\n", + " 'Title': 'Moro, lasso, al mio duolo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2654/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '19',\n", - " 'Source_Date': 1616.0,\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Napoli',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -3968,21 +7015,52 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2637_T_amo_mia_vita_RDB.mei',\n", - " {'RDL_ID': 2637,\n", - " 'MEI_Name': '2637_T_amo_mia_vita_RDB.mei',\n", - " 'Title': '\"T\\'amo, mia vita!\", la mia cara vita',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2637/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/4792_Giapiansi_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2656_Al_mio_gioir_RDB.mei',\n", + " {'RDL_ID': 2656,\n", + " 'MEI_Name': '2656_Al_mio_gioir_RDB.mei',\n", + " 'Title': 'Al mio gioir il ciel si fa sereno',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2656/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", - " 'Source_Position': '20',\n", - " 'Source_Date': 1616.0,\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Napoli',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4001,21 +7079,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2538_Se_la_mia_morte_RDB.mei',\n", - " {'RDL_ID': 2638,\n", - " 'MEI_Name': '2538_Se_la_mia_morte_RDB.mei',\n", - " 'Title': 'Se la mia morte brami',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2638/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2657_Tu_piangi_o_Fille_RDB.mei',\n", + " {'RDL_ID': 2657,\n", + " 'MEI_Name': '2657_Tu_piangi_o_Fille_RDB.mei',\n", + " 'Title': 'Tu piangi, o Fille mia',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2657/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '1',\n", - " 'Source_Date': 1616.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '20',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4034,21 +7141,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2639_Belta_poi_che_RDB.mei',\n", - " {'RDL_ID': 2639,\n", - " 'MEI_Name': '2639_Belta_poi_che_RDB.mei',\n", - " 'Title': \"Beltà, poi che t'assenti\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2639/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2658_Ancor_che_per_amarti_RDB.mei',\n", + " {'RDL_ID': 2658,\n", + " 'MEI_Name': '2658_Ancor_che_per_amarti_RDB.mei',\n", + " 'Title': 'Ancor che per amarti io mi consumi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2658/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '2',\n", - " 'Source_Date': 1616.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '21',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4067,21 +7203,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2640_Tu_segui_RDB.mei',\n", - " {'RDL_ID': 2640,\n", - " 'MEI_Name': '2640_Tu_segui_RDB.mei',\n", - " 'Title': 'Tu segui, o bella Clori',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2640/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2625_Se_vi_duol_RDB.mei',\n", + " {'RDL_ID': 2625,\n", + " 'MEI_Name': '2625_Se_vi_duol_RDB.mei',\n", + " 'Title': 'Se vi duol il mio duolo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2625/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '3',\n", - " 'Source_Date': 1616.0,\n", + " 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020929',\n", + " 'Source_Position': '8',\n", + " 'Source_Date': 1614.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Venezia',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Ridolfo Arlotti',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/160274862',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Gardano',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Lyricist-Poet',\n", + " 'Person_4_name': 'Battista Guarini',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/54142932',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Bartolomeo Magni',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_6_role': 'Dedicator',\n", + " 'Person_6_name': 'Bartolomeo Magni',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_7_role': 'Dedicatee/Owner',\n", + " 'Person_7_name': 'Alfonso Strozzi',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4100,21 +7265,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2641_Resta_di_darmi_noia_RDB.mei',\n", - " {'RDL_ID': 2641,\n", - " 'MEI_Name': '2641_Resta_di_darmi_noia_RDB.mei',\n", - " 'Title': 'Resta di darmi noia',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2641/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2644_Mille_volte_RDB.mei',\n", + " {'RDL_ID': 2644,\n", + " 'MEI_Name': '2644_Mille_volte_RDB.mei',\n", + " 'Title': 'Mille volte il dì moro',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2644/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '4',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '7',\n", " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4133,21 +7327,52 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2642_Chiaro_risplender_RDB.mei',\n", - " {'RDL_ID': 2642,\n", - " 'MEI_Name': '2642_Chiaro_risplender_RDB.mei',\n", - " 'Title': 'Chiaro risplender suole',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2642/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2647_Io_pur_respiro_RDB_bb3U6AP.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2646_Deh_come_invan_RDB.mei',\n", + " {'RDL_ID': 2646,\n", + " 'MEI_Name': '2646_Deh_come_invan_RDB.mei',\n", + " 'Title': 'Deh, come invan sospiro',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2646/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '5',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '9',\n", " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4166,21 +7391,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2643_Io_parto_RDB.mei',\n", - " {'RDL_ID': 2643,\n", - " 'MEI_Name': '2643_Io_parto_RDB.mei',\n", - " 'Title': '\"Io parto\" e non più dissi, ché il dolore',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2643/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2639_Belta_poi_che_RDB.mei',\n", + " {'RDL_ID': 2639,\n", + " 'MEI_Name': '2639_Belta_poi_che_RDB.mei',\n", + " 'Title': \"Beltà, poi che t'assenti\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2639/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '6',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '2',\n", " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4199,21 +7453,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2644_Mille_volte_RDB.mei',\n", - " {'RDL_ID': 2644,\n", - " 'MEI_Name': '2644_Mille_volte_RDB.mei',\n", - " 'Title': 'Mille volte il dì moro',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2644/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2642_Chiaro_risplender_RDB.mei',\n", + " {'RDL_ID': 2642,\n", + " 'MEI_Name': '2642_Chiaro_risplender_RDB.mei',\n", + " 'Title': 'Chiaro risplender suole',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2642/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '7',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '5',\n", " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4232,21 +7515,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2645_O_dolce_mio_tesoro_RDB.mei',\n", - " {'RDL_ID': 2645,\n", - " 'MEI_Name': '2645_O_dolce_mio_tesoro_RDB.mei',\n", - " 'Title': 'O dolce mio tesoro',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2645/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2641_Resta_di_darmi_noia_RDB.mei',\n", + " {'RDL_ID': 2641,\n", + " 'MEI_Name': '2641_Resta_di_darmi_noia_RDB.mei',\n", + " 'Title': 'Resta di darmi noia',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2641/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '8',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '4',\n", " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4265,21 +7577,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2646_Deh_come_invan_RDB.mei',\n", - " {'RDL_ID': 2646,\n", - " 'MEI_Name': '2646_Deh_come_invan_RDB.mei',\n", - " 'Title': 'Deh, come invan sospiro',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2646/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2648_Alme_d_Amor_rubelle_RDB.mei',\n", + " {'RDL_ID': 2648,\n", + " 'MEI_Name': '2648_Alme_d_Amor_rubelle_RDB.mei',\n", + " 'Title': \"Alme d'Amor rubelle\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2648/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '9',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '11',\n", " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4298,21 +7639,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2647_Io_pur_respiro_RDB.mei',\n", - " {'RDL_ID': 2647,\n", - " 'MEI_Name': '2647_Io_pur_respiro_RDB.mei',\n", - " 'Title': 'Io pur respiro in così gran dolore',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2647/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2645_O_dolce_mio_tesoro_RDB.mei',\n", + " {'RDL_ID': 2645,\n", + " 'MEI_Name': '2645_O_dolce_mio_tesoro_RDB.mei',\n", + " 'Title': 'O dolce mio tesoro',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2645/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '10',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '8',\n", " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4331,21 +7701,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2648_Alme_d_Amor_rubelle_RDB.mei',\n", - " {'RDL_ID': 2648,\n", - " 'MEI_Name': '2648_Alme_d_Amor_rubelle_RDB.mei',\n", - " 'Title': \"Alme d'Amor rubelle\",\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2648/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2643_Io_parto_RDB.mei',\n", + " {'RDL_ID': 2643,\n", + " 'MEI_Name': '2643_Io_parto_RDB.mei',\n", + " 'Title': '\"Io parto\" e non più dissi, ché il dolore',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2643/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '11',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '6',\n", " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4364,21 +7763,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2649_Candido_e_verde_fiore_RDB.mei',\n", - " {'RDL_ID': 2649,\n", - " 'MEI_Name': '2649_Candido_e_verde_fiore_RDB.mei',\n", - " 'Title': 'Candido e verde fiore',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2649/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2640_Tu_segui_RDB.mei',\n", + " {'RDL_ID': 2640,\n", + " 'MEI_Name': '2640_Tu_segui_RDB.mei',\n", + " 'Title': 'Tu segui, o bella Clori',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2640/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '12',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '3',\n", " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4397,21 +7825,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2650_Ardita_zanzaretta_RDB.mei',\n", - " {'RDL_ID': 2650,\n", - " 'MEI_Name': '2650_Ardita_zanzaretta_RDB.mei',\n", - " 'Title': 'Ardita zanzaretta',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2650/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei',\n", + " {'RDL_ID': 2685,\n", + " 'MEI_Name': '2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei',\n", + " 'Title': 'Sepulto Domino. Sabbati Sancti. In iij. Noct. - Resp. IX',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2685/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '13',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '27',\n", + " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4430,21 +7887,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2651_Ardo_per_te_RDB.mei',\n", - " {'RDL_ID': 2651,\n", - " 'MEI_Name': '2651_Ardo_per_te_RDB.mei',\n", - " 'Title': 'Ardo per te, mio bene',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2651/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei',\n", + " {'RDL_ID': 2682,\n", + " 'MEI_Name': '2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei',\n", + " 'Title': 'Ecce quomodo moritur istus. Sabbati Sancti. In ij. Noct. - Resp. VI',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2682/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '14',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '24',\n", + " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4463,21 +7949,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2652_Ancide_sol_RDB.mei',\n", - " {'RDL_ID': 2652,\n", - " 'MEI_Name': '2652_Ancide_sol_RDB.mei',\n", - " 'Title': 'Ancide sol la morte',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2652/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei',\n", + " {'RDL_ID': 2684,\n", + " 'MEI_Name': '2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei',\n", + " 'Title': 'Æstimatus sum cum descendentibus. Sabbati Sancti. In iij. Noct. - Resp. VIII',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2684/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '15',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '26',\n", + " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4496,21 +8011,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2653_Quel_no_crudel_RDB.mei',\n", - " {'RDL_ID': 2653,\n", - " 'MEI_Name': '2653_Quel_no_crudel_RDB.mei',\n", - " 'Title': 'Quel \"no\" crudel che la mia speme ancise',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2653/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2651_Ardo_per_te_RDB.mei',\n", + " {'RDL_ID': 2651,\n", + " 'MEI_Name': '2651_Ardo_per_te_RDB.mei',\n", + " 'Title': 'Ardo per te, mio bene',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2651/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '16',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '14',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4529,21 +8073,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2654_Moro_lasso_RDB.mei',\n", - " {'RDL_ID': 2654,\n", - " 'MEI_Name': '2654_Moro_lasso_RDB.mei',\n", - " 'Title': 'Moro, lasso, al mio duolo',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2654/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei',\n", + " {'RDL_ID': 2681,\n", + " 'MEI_Name': '2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei',\n", + " 'Title': 'O vos omnes. Sabbati Sancti. In ij. Noct. - Resp. V',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2681/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '17',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '23',\n", + " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4562,21 +8135,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2655_Volan_quasi_farfalle_RDB.mei',\n", - " {'RDL_ID': 2655,\n", - " 'MEI_Name': '2655_Volan_quasi_farfalle_RDB.mei',\n", - " 'Title': 'Volan quasi farfalle',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2655/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei',\n", + " {'RDL_ID': 2663,\n", + " 'MEI_Name': '2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei',\n", + " 'Title': 'Iudas mercator pessimus. Feria V. In Coena Domini. In ij. Noct. - Resp. V',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2663/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '18',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '5',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4595,21 +8197,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2656_Al_mio_gioir_RDB.mei',\n", - " {'RDL_ID': 2656,\n", - " 'MEI_Name': '2656_Al_mio_gioir_RDB.mei',\n", - " 'Title': 'Al mio gioir il ciel si fa sereno',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2656/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei',\n", + " {'RDL_ID': 2683,\n", + " 'MEI_Name': '2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei',\n", + " 'Title': 'Astiterunt reges terræ. Sabbati Sancti. In iij. Noct. - Resp. VII',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2683/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '19',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '25',\n", + " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4628,21 +8259,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2657_Tu_piangi_o_Fille_RDB.mei',\n", - " {'RDL_ID': 2657,\n", - " 'MEI_Name': '2657_Tu_piangi_o_Fille_RDB.mei',\n", - " 'Title': 'Tu piangi, o Fille mia',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2657/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2653_Quel_no_crudel_RDB.mei',\n", + " {'RDL_ID': 2653,\n", + " 'MEI_Name': '2653_Quel_no_crudel_RDB.mei',\n", + " 'Title': 'Quel \"no\" crudel che la mia speme ancise',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2653/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '20',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '16',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4661,21 +8321,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2658_Ancor_che_per_amarti_RDB.mei',\n", - " {'RDL_ID': 2658,\n", - " 'MEI_Name': '2658_Ancor_che_per_amarti_RDB.mei',\n", - " 'Title': 'Ancor che per amarti io mi consumi',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2658/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/4779_Settimo_tono_RDB.mei',\n", + " {'RDL_ID': 4779,\n", + " 'MEI_Name': '4779_Settimo_tono_RDB.mei',\n", + " 'Title': '[Ricercar] Settimo Tono',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4779/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", - " 'Source_Position': '21',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque',\n", + " 'Source_URL_RISM': '',\n", + " 'Source_Position': '18',\n", + " 'Source_Date': 1586.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Roma',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': '',\n", + " 'Person_1_name': '',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': '',\n", + " 'Person_2_name': '',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4694,21 +8383,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei',\n", - " {'RDL_ID': 2659,\n", - " 'MEI_Name': '2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei',\n", - " 'Title': 'In monte Oliveti. Feria V. In Coena Domini. In j. Noct. - Resp. I',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2659/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/4778_Undecimo_tono_RDB.mei',\n", + " {'RDL_ID': 4778,\n", + " 'MEI_Name': '4778_Undecimo_tono_RDB.mei',\n", + " 'Title': '[Ricercar] Undecimo Tono',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4778/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '1',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque',\n", + " 'Source_URL_RISM': '',\n", + " 'Source_Position': '17',\n", + " 'Source_Date': 1586.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Roma',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': '',\n", + " 'Person_1_name': '',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': '',\n", + " 'Person_2_name': '',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4727,21 +8445,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei',\n", - " {'RDL_ID': 2660,\n", - " 'MEI_Name': '2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei',\n", - " 'Title': 'Tristis est anima mea. Feria V. In Coena Domini. In j. Noct. - Resp. II',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2660/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2730a_Canzon_francese_del_Principe_dim_def_RDB.mei',\n", + " {'RDL_ID': 2730,\n", + " 'MEI_Name': '2730a_Canzon_francese_del_Principe_dim_def_RDB.mei',\n", + " 'Title': 'Canzon franzese del Principe',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2730/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '2',\n", - " 'Source_Date': 1611.0,\n", - " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#964 GB-Lbl, MS Add. 30491',\n", + " 'Source_URL_RISM': '',\n", + " 'Source_Position': '',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': '',\n", + " 'Person_1_name': '',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': '',\n", + " 'Person_2_name': '',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4760,21 +8507,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei',\n", - " {'RDL_ID': 2661,\n", - " 'MEI_Name': '2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei',\n", - " 'Title': 'Ecce vidimus eum. Feria V. In Coena Domini. In j. Noct. - Resp. III',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2661/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/4780_Duedecimo_tono_RDB.mei',\n", + " {'RDL_ID': 4780,\n", + " 'MEI_Name': '4780_Duedecimo_tono_RDB.mei',\n", + " 'Title': '[Ricercar] Duedecimo Tono',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4780/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '3',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque',\n", + " 'Source_URL_RISM': '',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': 1586.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Roma',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': '',\n", + " 'Person_1_name': '',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': '',\n", + " 'Person_2_name': '',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4793,21 +8569,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei',\n", - " {'RDL_ID': 2662,\n", - " 'MEI_Name': '2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei',\n", - " 'Title': 'Amicus meus osculi me. Feria V. In Coena Domini. In ij. Noct. - Resp. IV',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2662/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei',\n", + " {'RDL_ID': 2730,\n", + " 'MEI_Name': '2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei',\n", + " 'Title': 'Canzon franzese del Principe',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2730/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '4',\n", - " 'Source_Date': 1611.0,\n", - " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#964 GB-Lbl, MS Add. 30491',\n", + " 'Source_URL_RISM': '',\n", + " 'Source_Position': '',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': '',\n", + " 'Person_1_name': '',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': '',\n", + " 'Person_2_name': '',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4826,21 +8631,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei',\n", - " {'RDL_ID': 2663,\n", - " 'MEI_Name': '2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei',\n", - " 'Title': 'Iudas mercator pessimus. Feria V. In Coena Domini. In ij. Noct. - Resp. V',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2663/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2652_Ancide_sol_RDB.mei',\n", + " {'RDL_ID': 2652,\n", + " 'MEI_Name': '2652_Ancide_sol_RDB.mei',\n", + " 'Title': 'Ancide sol la morte',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2652/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '5',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '15',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4859,21 +8693,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei',\n", - " {'RDL_ID': 2665,\n", - " 'MEI_Name': '2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei',\n", - " 'Title': 'Eram quasi agnus innocens. Feria V. In Coena Domini. In iij. Noct. - Resp. VII',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2665/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2649_Candido_e_verde_fiore_RDB.mei',\n", + " {'RDL_ID': 2649,\n", + " 'MEI_Name': '2649_Candido_e_verde_fiore_RDB.mei',\n", + " 'Title': 'Candido e verde fiore',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2649/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '7',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1616.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4892,21 +8755,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei',\n", - " {'RDL_ID': 2666,\n", - " 'MEI_Name': '2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei',\n", - " 'Title': 'Una hora non potuistis. Feria V. In Coena Domini. In iij. Noct. - Resp. VIII',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2666/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2727_All_ombra_degli_allori_RDB.mei',\n", + " {'RDL_ID': 2727,\n", + " 'MEI_Name': '2727_All_ombra_degli_allori_RDB.mei',\n", + " 'Title': \"All'ombra degli allori\",\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2727/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '8',\n", - " 'Source_Date': 1611.0,\n", - " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#205 Ottavo libro de Madrigali, A Cinque Voci, di Pomponio Nenna Cavilier di Cesare',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990046952',\n", + " 'Source_Position': '18',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Editor',\n", + " 'Person_1_name': 'Ferdinando Archilei',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/34153288341232652959',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Ferdinando Archilei',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/34153288341232652959',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Nicolò Doni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/148159032639301181115',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Giovanni Battista Robletti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/220401135',\n", + " 'Person_6_role': 'Music printer',\n", + " 'Person_6_name': 'Ferdinando Archilei',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/34153288341232652959',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4925,21 +8817,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei',\n", - " {'RDL_ID': 2667,\n", - " 'MEI_Name': '2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei',\n", - " 'Title': 'Seniores populi consilium. Feria V. In Coena Domini. In iij. Noct. - Resp. IX',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2667/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2728_Come_vivi_cor_mio_RDB.mei',\n", + " {'RDL_ID': 2728,\n", + " 'MEI_Name': '2728_Come_vivi_cor_mio_RDB.mei',\n", + " 'Title': 'Come vivi, Cor mio',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2728/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '9',\n", - " 'Source_Date': 1611.0,\n", - " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#205 Ottavo libro de Madrigali, A Cinque Voci, di Pomponio Nenna Cavilier di Cesare',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990046952',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Editor',\n", + " 'Person_1_name': 'Ferdinando Archilei',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/34153288341232652959',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Ferdinando Archilei',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/34153288341232652959',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Nicolò Doni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/148159032639301181115',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Giovanni Battista Robletti',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/220401135',\n", + " 'Person_6_role': 'Music printer',\n", + " 'Person_6_name': 'Ferdinando Archilei',\n", + " 'Person_6_VIAF': 'http://viaf.org/viaf/34153288341232652959',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4958,21 +8879,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei',\n", - " {'RDL_ID': 2668,\n", - " 'MEI_Name': '2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei',\n", - " 'Title': 'Omnes amici mei. Feria VI. In Parasceve. In j. Noct. - Resp. I',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2668/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2726_Ne_reminiscaris_RDB.mei',\n", + " {'RDL_ID': 2726,\n", + " 'MEI_Name': '2726_Ne_reminiscaris_RDB.mei',\n", + " 'Title': 'Ne reminiscaris Domine',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2726/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '10',\n", - " 'Source_Date': 1611.0,\n", - " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#197 Liber Secundus Motectorum, Stefano Felis',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990017484',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Dedicatee/Owner',\n", + " 'Person_1_name': 'Matteo de Bona',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/305793060',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Felis',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/62463631',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Angelo Gardano',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -4991,21 +8941,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei',\n", - " {'RDL_ID': 2669,\n", - " 'MEI_Name': '2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei',\n", - " 'Title': 'Velum templi scissum est. Feria VI. In Parasceve. In j. Noct. - Resp. II',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2669/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2650_Ardita_zanzaretta_RDB.mei',\n", + " {'RDL_ID': 2650,\n", + " 'MEI_Name': '2650_Ardita_zanzaretta_RDB.mei',\n", + " 'Title': 'Ardita zanzaretta',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2650/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '11',\n", + " 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020931',\n", + " 'Source_Position': '13',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Angelo Gardano',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/22992323',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': 'Music printer',\n", + " 'Person_3_name': 'Bartolomeo Magni',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_4_role': 'Dedicator',\n", + " 'Person_4_name': 'Bartolomeo Magni',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/312604204',\n", + " 'Person_5_role': 'Lyricist-Poet',\n", + " 'Person_5_name': 'Illuminato Perazzoli',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/89309088',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5024,21 +9003,52 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei',\n", - " {'RDL_ID': 2670,\n", - " 'MEI_Name': '2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei',\n", - " 'Title': 'Vinea mea electa. Feria VI. In Parasceve. In j. Noct. - Resp. III',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2670/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2729_In_te_Domine_speravi_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2731_Gagliarda_del_Principe_di_Venosa_RDB.mei',\n", + " {'RDL_ID': 2731,\n", + " 'MEI_Name': '2731_Gagliarda_del_Principe_di_Venosa_RDB.mei',\n", + " 'Title': 'Gagliarda del Principe di Venosa',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2731/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '12',\n", - " 'Source_Date': 1611.0,\n", - " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#965 I-Nc, MS 4.6.3.',\n", + " 'Source_URL_RISM': '',\n", + " 'Source_Position': '',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': '',\n", + " 'Person_1_name': '',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': '',\n", + " 'Person_2_name': '',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5057,21 +9067,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei',\n", - " {'RDL_ID': 2671,\n", - " 'MEI_Name': '2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei',\n", - " 'Title': 'Tamquam ad latronem. Feria VI. In Parasceve. In ij. Noct. - Resp. IV',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2671/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei',\n", + " {'RDL_ID': 2676,\n", + " 'MEI_Name': '2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei',\n", + " 'Title': 'Caligaverunt oculi mei. Feria VI. In Parasceve. In iij. Noct. - Resp. IX',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2676/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '13',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '18',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5090,21 +9129,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei',\n", - " {'RDL_ID': 2672,\n", - " 'MEI_Name': '2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei',\n", - " 'Title': 'Tenebræ factæ sunt. Feria VI. In Parasceve. In ij. Noct. - Resp. V',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2672/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei',\n", + " {'RDL_ID': 2669,\n", + " 'MEI_Name': '2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei',\n", + " 'Title': 'Velum templi scissum est. Feria VI. In Parasceve. In j. Noct. - Resp. II',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2669/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '14',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '11',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5123,21 +9191,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei',\n", - " {'RDL_ID': 2673,\n", - " 'MEI_Name': '2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei',\n", - " 'Title': 'Animam meam dilectam. Feria VI. In Parasceve. In ij. Noct. - Resp. VI',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2673/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei',\n", + " {'RDL_ID': 2668,\n", + " 'MEI_Name': '2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei',\n", + " 'Title': 'Omnes amici mei. Feria VI. In Parasceve. In j. Noct. - Resp. I',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2668/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '15',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '10',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5156,21 +9253,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei',\n", - " {'RDL_ID': 2674,\n", - " 'MEI_Name': '2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei',\n", - " 'Title': 'Tradiderunt me in manus. Feria VI. In Parasceve. In iij. Noct. - Resp. VII',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2674/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei',\n", + " {'RDL_ID': 2672,\n", + " 'MEI_Name': '2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei',\n", + " 'Title': 'Tenebræ factæ sunt. Feria VI. In Parasceve. In ij. Noct. - Resp. V',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2672/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '16',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '14',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5189,21 +9315,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei',\n", - " {'RDL_ID': 2675,\n", - " 'MEI_Name': '2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei',\n", - " 'Title': 'Iesum tradidit impius. Feria VI. In Parasceve. In iij. Noct. - Resp. VIII',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2675/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei',\n", + " {'RDL_ID': 2679,\n", + " 'MEI_Name': '2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei',\n", + " 'Title': 'Plange quasi virgo. Sabbati Sancti. In j. Noct. - Resp. III',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2679/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '17',\n", - " 'Source_Date': 1611.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '21',\n", + " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5222,21 +9377,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei',\n", - " {'RDL_ID': 2676,\n", - " 'MEI_Name': '2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei',\n", - " 'Title': 'Caligaverunt oculi mei. Feria VI. In Parasceve. In iij. Noct. - Resp. IX',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2676/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei',\n", + " {'RDL_ID': 2675,\n", + " 'MEI_Name': '2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei',\n", + " 'Title': 'Iesum tradidit impius. Feria VI. In Parasceve. In iij. Noct. - Resp. VIII',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2675/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '18',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '17',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5255,21 +9439,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei',\n", - " {'RDL_ID': 2677,\n", - " 'MEI_Name': '2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei',\n", - " 'Title': 'Sicut ovis ad occisionem. Sabbati Sancti. In j. Noct. - Resp. I',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2677/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei',\n", + " {'RDL_ID': 2671,\n", + " 'MEI_Name': '2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei',\n", + " 'Title': 'Tamquam ad latronem. Feria VI. In Parasceve. In ij. Noct. - Resp. IV',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2671/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '19',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '13',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5288,21 +9501,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei',\n", - " {'RDL_ID': 2678,\n", - " 'MEI_Name': '2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei',\n", - " 'Title': 'Ierusalem iuge. Sabbati Sancti. In j. Noct. - Resp. II',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2678/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei',\n", + " {'RDL_ID': 2673,\n", + " 'MEI_Name': '2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei',\n", + " 'Title': 'Animam meam dilectam. Feria VI. In Parasceve. In ij. Noct. - Resp. VI',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2673/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '20',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '15',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5321,21 +9563,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei',\n", - " {'RDL_ID': 2679,\n", - " 'MEI_Name': '2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei',\n", - " 'Title': 'Plange quasi virgo. Sabbati Sancti. In j. Noct. - Resp. III',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2679/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei',\n", + " {'RDL_ID': 2674,\n", + " 'MEI_Name': '2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei',\n", + " 'Title': 'Tradiderunt me in manus. Feria VI. In Parasceve. In iij. Noct. - Resp. VII',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2674/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '21',\n", - " 'Source_Date': 1603.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '16',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5354,21 +9625,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei',\n", - " {'RDL_ID': 2680,\n", - " 'MEI_Name': '2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei',\n", - " 'Title': 'Recessit pastor noster. Sabbati Sancti. In ij. Noct. - Resp. IV',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2680/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei',\n", + " {'RDL_ID': 2670,\n", + " 'MEI_Name': '2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei',\n", + " 'Title': 'Vinea mea electa. Feria VI. In Parasceve. In j. Noct. - Resp. III',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2670/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '22',\n", - " 'Source_Date': 1603.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '12',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5387,21 +9687,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei',\n", - " {'RDL_ID': 2681,\n", - " 'MEI_Name': '2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei',\n", - " 'Title': 'O vos omnes. Sabbati Sancti. In ij. Noct. - Resp. V',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2681/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei',\n", + " {'RDL_ID': 2662,\n", + " 'MEI_Name': '2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei',\n", + " 'Title': 'Amicus meus osculi me. Feria V. In Coena Domini. In ij. Noct. - Resp. IV',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2662/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '23',\n", - " 'Source_Date': 1603.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5420,21 +9749,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei',\n", - " {'RDL_ID': 2682,\n", - " 'MEI_Name': '2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei',\n", - " 'Title': 'Ecce quomodo moritur istus. Sabbati Sancti. In ij. Noct. - Resp. VI',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2682/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2686_Benedictus_RDB.mei',\n", + " {'RDL_ID': 2686,\n", + " 'MEI_Name': '2686_Benedictus_RDB.mei',\n", + " 'Title': 'Benedictus',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2686/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '24',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '28',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5453,21 +9811,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei',\n", - " {'RDL_ID': 2683,\n", - " 'MEI_Name': '2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei',\n", - " 'Title': 'Astiterunt reges terræ. Sabbati Sancti. In iij. Noct. - Resp. VII',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2683/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei',\n", + " {'RDL_ID': 2665,\n", + " 'MEI_Name': '2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei',\n", + " 'Title': 'Eram quasi agnus innocens. Feria V. In Coena Domini. In iij. Noct. - Resp. VII',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2665/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '25',\n", - " 'Source_Date': 1603.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5486,21 +9873,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei',\n", - " {'RDL_ID': 2684,\n", - " 'MEI_Name': '2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei',\n", - " 'Title': 'Æstimatus sum cum descendentibus. Sabbati Sancti. In iij. Noct. - Resp. VIII',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2684/',\n", - " 'Composer_Name': '#265 Carlo Gesualdo',\n", - " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", - " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '26',\n", - " 'Source_Date': 1603.0,\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei',\n", + " {'RDL_ID': 2667,\n", + " 'MEI_Name': '2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei',\n", + " 'Title': 'Seniores populi consilium. Feria V. In Coena Domini. In iij. Noct. - Resp. IX',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2667/',\n", + " 'Composer_Name': '#265 Carlo Gesualdo',\n", + " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", + " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '9',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5519,21 +9935,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei',\n", - " {'RDL_ID': 2685,\n", - " 'MEI_Name': '2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei',\n", - " 'Title': 'Sepulto Domino. Sabbati Sancti. In iij. Noct. - Resp. IX',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2685/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei',\n", + " {'RDL_ID': 2661,\n", + " 'MEI_Name': '2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei',\n", + " 'Title': 'Ecce vidimus eum. Feria V. In Coena Domini. In j. Noct. - Resp. III',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2661/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '27',\n", - " 'Source_Date': 1603.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '3',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5552,21 +9997,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2686_Benedictus_RDB.mei',\n", - " {'RDL_ID': 2686,\n", - " 'MEI_Name': '2686_Benedictus_RDB.mei',\n", - " 'Title': 'Benedictus',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2686/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2687_Miserere_RDB.mei',\n", + " {'RDL_ID': 2687,\n", + " 'MEI_Name': '2687_Miserere_RDB.mei',\n", + " 'Title': 'Miserere',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2687/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '28',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '29',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5585,21 +10059,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2687_Miserere_RDB.mei',\n", - " {'RDL_ID': 2687,\n", - " 'MEI_Name': '2687_Miserere_RDB.mei',\n", - " 'Title': 'Miserere',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2687/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei',\n", + " {'RDL_ID': 2659,\n", + " 'MEI_Name': '2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei',\n", + " 'Title': 'In monte Oliveti. Feria V. In Coena Domini. In j. Noct. - Resp. I',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2659/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '29',\n", - " 'Source_Date': 1603.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5618,21 +10121,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei',\n", - " {'RDL_ID': 2664,\n", - " 'MEI_Name': '2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei',\n", - " 'Title': 'Unus ex discipulis meis. Feria V. In Coena Domini. In ij. Noct. - Resp. VI',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2664/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei',\n", + " {'RDL_ID': 2666,\n", + " 'MEI_Name': '2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei',\n", + " 'Title': 'Una hora non potuistis. Feria V. In Coena Domini. In iij. Noct. - Resp. VIII',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2666/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", - " 'Source_Position': '6',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '8',\n", " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5651,21 +10183,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/1369_Ave_regina_cœlorum_RDB.mei',\n", - " {'RDL_ID': 1369,\n", - " 'MEI_Name': '1369_Ave_regina_cœlorum_RDB.mei',\n", - " 'Title': 'Ave regina caelorum [053]',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1369/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei',\n", + " {'RDL_ID': 2660,\n", + " 'MEI_Name': '2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei',\n", + " 'Title': 'Tristis est anima mea. Feria V. In Coena Domini. In j. Noct. - Resp. II',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2660/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '1',\n", - " 'Source_Date': 1603.0,\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '2',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Napoli',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5684,21 +10245,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2688_Venit_lumen_tuum_RDB.mei',\n", - " {'RDL_ID': 2688,\n", - " 'MEI_Name': '2688_Venit_lumen_tuum_RDB.mei',\n", - " 'Title': 'Venit lumen tuum',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2688/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei',\n", + " {'RDL_ID': 2664,\n", + " 'MEI_Name': '2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei',\n", + " 'Title': 'Unus ex discipulis meis. Feria V. In Coena Domini. In ij. Noct. - Resp. VI',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2664/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '2',\n", - " 'Source_Date': 1603.0,\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5717,21 +10307,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2689_Ave_dulcissima_Maria_RDB.mei',\n", - " {'RDL_ID': 2689,\n", - " 'MEI_Name': '2689_Ave_dulcissima_Maria_RDB.mei',\n", - " 'Title': 'Ave dulcissima Maria',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2689/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2718_Verba_mea_RDB.mei',\n", + " {'RDL_ID': 2718,\n", + " 'MEI_Name': '2718_Verba_mea_RDB.mei',\n", + " 'Title': 'Verba mea',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2718/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '3',\n", - " 'Source_Date': 1603.0,\n", - " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '13',\n", + " 'Source_Date': 1618.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5750,21 +10369,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2690_Reminiscere_miserationum_tuarum_RDB.mei',\n", - " {'RDL_ID': 2690,\n", - " 'MEI_Name': '2690_Reminiscere_miserationum_tuarum_RDB.mei',\n", - " 'Title': 'Reminiscere miserationum tuarum',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2690/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2697_O_vos_omnes_qui_transitis_RDB.mei',\n", + " {'RDL_ID': 2697,\n", + " 'MEI_Name': '2697_O_vos_omnes_qui_transitis_RDB.mei',\n", + " 'Title': 'O vos omnes qui transitis',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2697/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '4',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '11',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5783,21 +10431,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2691_Dignare_me_RDB.mei',\n", - " {'RDL_ID': 2691,\n", - " 'MEI_Name': '2691_Dignare_me_RDB.mei',\n", - " 'Title': 'Dignare me laudare te',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2691/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2695_Laboravi_in_gemitu_meo_RDB.mei',\n", + " {'RDL_ID': 2695,\n", + " 'MEI_Name': '2695_Laboravi_in_gemitu_meo_RDB.mei',\n", + " 'Title': 'Laboravi in gemitu meo',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2695/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '5',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '9',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5825,12 +10502,41 @@ " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", " 'Source_Position': '6',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5849,21 +10555,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2693_Domine_ne_despicias_deprecationem_meam_RDB.mei',\n", - " {'RDL_ID': 2693,\n", - " 'MEI_Name': '2693_Domine_ne_despicias_deprecationem_meam_RDB.mei',\n", - " 'Title': 'Domine ne despicias',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2693/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2698_Exaudi_Deus_deprecationem_meam_RDB.mei',\n", + " {'RDL_ID': 2698,\n", + " 'MEI_Name': '2698_Exaudi_Deus_deprecationem_meam_RDB.mei',\n", + " 'Title': 'Exaudi Deus deprecationem meam',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2698/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '7',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '12',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5882,21 +10617,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2694_Hei_mihi_Domine_RDB.mei',\n", - " {'RDL_ID': 2694,\n", - " 'MEI_Name': '2694_Hei_mihi_Domine_RDB.mei',\n", - " 'Title': 'Hei mihi Domine',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2694/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2693_Domine_ne_despicias_deprecationem_meam_RDB.mei',\n", + " {'RDL_ID': 2693,\n", + " 'MEI_Name': '2693_Domine_ne_despicias_deprecationem_meam_RDB.mei',\n", + " 'Title': 'Domine ne despicias',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2693/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '8',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '7',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5915,21 +10679,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2695_Laboravi_in_gemitu_meo_RDB.mei',\n", - " {'RDL_ID': 2695,\n", - " 'MEI_Name': '2695_Laboravi_in_gemitu_meo_RDB.mei',\n", - " 'Title': 'Laboravi in gemitu meo',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2695/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2694_Hei_mihi_Domine_RDB.mei',\n", + " {'RDL_ID': 2694,\n", + " 'MEI_Name': '2694_Hei_mihi_Domine_RDB.mei',\n", + " 'Title': 'Hei mihi Domine',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2694/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '9',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '8',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5948,21 +10741,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2696_Peccantem_me_quotidie_RDB.mei',\n", - " {'RDL_ID': 2696,\n", - " 'MEI_Name': '2696_Peccantem_me_quotidie_RDB.mei',\n", - " 'Title': 'Peccantem me quotidie',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2696/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2699_Precibus_et_meritis_RDB.mei',\n", + " {'RDL_ID': 2699,\n", + " 'MEI_Name': '2699_Precibus_et_meritis_RDB.mei',\n", + " 'Title': 'Precibus et meritis',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2699/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '10',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '13',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -5981,21 +10803,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2697_O_vos_omnes_qui_transitis_RDB.mei',\n", - " {'RDL_ID': 2697,\n", - " 'MEI_Name': '2697_O_vos_omnes_qui_transitis_RDB.mei',\n", - " 'Title': 'O vos omnes qui transitis',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2697/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2690_Reminiscere_miserationum_tuarum_RDB.mei',\n", + " {'RDL_ID': 2690,\n", + " 'MEI_Name': '2690_Reminiscere_miserationum_tuarum_RDB.mei',\n", + " 'Title': 'Reminiscere miserationum tuarum',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2690/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '11',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '4',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6014,21 +10865,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2698_Exaudi_Deus_deprecationem_meam_RDB.mei',\n", - " {'RDL_ID': 2698,\n", - " 'MEI_Name': '2698_Exaudi_Deus_deprecationem_meam_RDB.mei',\n", - " 'Title': 'Exaudi Deus deprecationem meam',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2698/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2696_Peccantem_me_quotidie_RDB.mei',\n", + " {'RDL_ID': 2696,\n", + " 'MEI_Name': '2696_Peccantem_me_quotidie_RDB.mei',\n", + " 'Title': 'Peccantem me quotidie',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2696/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '12',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '10',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6047,21 +10927,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2699_Precibus_et_meritis_RDB.mei',\n", - " {'RDL_ID': 2699,\n", - " 'MEI_Name': '2699_Precibus_et_meritis_RDB.mei',\n", - " 'Title': 'Precibus et meritis',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2699/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2691_Dignare_me_RDB.mei',\n", + " {'RDL_ID': 2691,\n", + " 'MEI_Name': '2691_Dignare_me_RDB.mei',\n", + " 'Title': 'Dignare me laudare te',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2691/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '13',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '5',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6080,21 +10989,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2700_O_crux_benedicta_RDB.mei',\n", - " {'RDL_ID': 2700,\n", - " 'MEI_Name': '2700_O_crux_benedicta_RDB.mei',\n", - " 'Title': 'O crux benedicta',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2700/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2689_Ave_dulcissima_Maria_RDB.mei',\n", + " {'RDL_ID': 2689,\n", + " 'MEI_Name': '2689_Ave_dulcissima_Maria_RDB.mei',\n", + " 'Title': 'Ave dulcissima Maria',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2689/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '14',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '3',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6113,21 +11051,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2701_Tribularer_si_nescirem_RDB.mei',\n", - " {'RDL_ID': 2701,\n", - " 'MEI_Name': '2701_Tribularer_si_nescirem_RDB.mei',\n", - " 'Title': 'Tribularer si nescirem',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2701/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2704_Illumina_faciem_tuam_RDB.mei',\n", + " {'RDL_ID': 2704,\n", + " 'MEI_Name': '2704_Illumina_faciem_tuam_RDB.mei',\n", + " 'Title': 'Illumina faciem tuam',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2704/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '15',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '18',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6146,21 +11113,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2702_Deus_refugium_et_virtus_RDB.mei',\n", - " {'RDL_ID': 2702,\n", - " 'MEI_Name': '2702_Deus_refugium_et_virtus_RDB.mei',\n", - " 'Title': 'Deus refugium et virtus',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2702/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei',\n", + " {'RDL_ID': 2677,\n", + " 'MEI_Name': '2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei',\n", + " 'Title': 'Sicut ovis ad occisionem. Sabbati Sancti. In j. Noct. - Resp. I',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2677/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '16',\n", - " 'Source_Date': 1603.0,\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6179,21 +11175,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2703_Tribulationem_et_dolorem_RDB.mei',\n", - " {'RDL_ID': 2703,\n", - " 'MEI_Name': '2703_Tribulationem_et_dolorem_RDB.mei',\n", - " 'Title': 'Tribulationem et dolorem',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2703/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei',\n", + " {'RDL_ID': 2680,\n", + " 'MEI_Name': '2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei',\n", + " 'Title': 'Recessit pastor noster. Sabbati Sancti. In ij. Noct. - Resp. IV',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2680/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '17',\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '22',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6212,21 +11237,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2704_Illumina_faciem_tuam_RDB.mei',\n", - " {'RDL_ID': 2704,\n", - " 'MEI_Name': '2704_Illumina_faciem_tuam_RDB.mei',\n", - " 'Title': 'Illumina faciem tuam',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2704/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2702_Deus_refugium_et_virtus_RDB.mei',\n", + " {'RDL_ID': 2702,\n", + " 'MEI_Name': '2702_Deus_refugium_et_virtus_RDB.mei',\n", + " 'Title': 'Deus refugium et virtus',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2702/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '18',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '16',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6245,21 +11299,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2705_Maria_Mater_gratiæ_RDB.mei',\n", - " {'RDL_ID': 2705,\n", - " 'MEI_Name': '2705_Maria_Mater_gratiæ_RDB.mei',\n", - " 'Title': 'Maria Mater gratiæ',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2705/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei',\n", + " {'RDL_ID': 2678,\n", + " 'MEI_Name': '2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei',\n", + " 'Title': 'Ierusalem iuge. Sabbati Sancti. In j. Noct. - Resp. II',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2678/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", - " 'Source_Position': '19',\n", - " 'Source_Date': 1603.0,\n", + " 'Source_Title': '#206 Responsoria, A Sei Voci',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020909',\n", + " 'Source_Position': '20',\n", + " 'Source_Date': 1611.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Napoli',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Giacomo Carlino',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/165300379',\n", + " 'Person_2_role': 'Dedicatee/Owner',\n", + " 'Person_2_name': 'Gesualdo',\n", + " 'Person_2_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_3_role': '',\n", + " 'Person_3_name': '',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': '',\n", + " 'Person_4_name': '',\n", + " 'Person_4_VIAF': '',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6278,21 +11361,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2706_Virgo_benedicta_RDB.mei',\n", - " {'RDL_ID': 2706,\n", - " 'MEI_Name': '2706_Virgo_benedicta_RDB.mei',\n", - " 'Title': 'Virgo benedicta',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2706/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2703_Tribulationem_et_dolorem_RDB.mei',\n", + " {'RDL_ID': 2703,\n", + " 'MEI_Name': '2703_Tribulationem_et_dolorem_RDB.mei',\n", + " 'Title': 'Tribulationem et dolorem',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2703/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '1',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '17',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Roma',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Napoli',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6311,21 +11423,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2708_Sana_me_Domine_RDB.mei',\n", - " {'RDL_ID': 2708,\n", - " 'MEI_Name': '2708_Sana_me_Domine_RDB.mei',\n", - " 'Title': 'Sana me domine',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2708/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2688_Venit_lumen_tuum_RDB.mei',\n", + " {'RDL_ID': 2688,\n", + " 'MEI_Name': '2688_Venit_lumen_tuum_RDB.mei',\n", + " 'Title': 'Venit lumen tuum',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2688/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '3',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '2',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Napoli',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6344,21 +11485,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2709_Ave_sanctissima_Maria_RDB.mei',\n", - " {'RDL_ID': 2709,\n", - " 'MEI_Name': '2709_Ave_sanctissima_Maria_RDB.mei',\n", - " 'Title': 'Ave sanctissima Maria',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2709/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2701_Tribularer_si_nescirem_RDB.mei',\n", + " {'RDL_ID': 2701,\n", + " 'MEI_Name': '2701_Tribularer_si_nescirem_RDB.mei',\n", + " 'Title': 'Tribularer si nescirem',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2701/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '4',\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '15',\n", " 'Source_Date': 1603.0,\n", - " 'Source_Country': '',\n", - " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6377,21 +11547,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2710_O_Oriens_RDB.mei',\n", - " {'RDL_ID': 2710,\n", - " 'MEI_Name': '2710_O_Oriens_RDB.mei',\n", - " 'Title': 'O Oriens',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2710/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2716_Veni_sponsa_Christi_RDB.mei',\n", + " {'RDL_ID': 2716,\n", + " 'MEI_Name': '2716_Veni_sponsa_Christi_RDB.mei',\n", + " 'Title': 'Veni sponsa Christi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2716/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '5',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '11',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': '',\n", " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6410,21 +11609,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2711_Discedite_a_me_omnes_RDB.mei',\n", - " {'RDL_ID': 2711,\n", - " 'MEI_Name': '2711_Discedite_a_me_omnes_RDB.mei',\n", - " 'Title': 'Discedite a me omnes',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2711/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2725_Illumina_nos_RDB.mei',\n", + " {'RDL_ID': 2725,\n", + " 'MEI_Name': '2725_Illumina_nos_RDB.mei',\n", + " 'Title': 'Illumina nos',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2725/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '6',\n", - " 'Source_Date': 1603.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '20',\n", + " 'Source_Date': '',\n", " 'Source_Country': '',\n", " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6443,21 +11671,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2712_Gaudeamus_omnes_RDB.mei',\n", - " {'RDL_ID': 2712,\n", - " 'MEI_Name': '2712_Gaudeamus_omnes_RDB.mei',\n", - " 'Title': 'Gaudeamus omnes',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2712/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2715_Adoramus_te_RDB.mei',\n", + " {'RDL_ID': 2715,\n", + " 'MEI_Name': '2715_Adoramus_te_RDB.mei',\n", + " 'Title': 'Adoramus te Christe',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2715/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '7',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '10',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': '',\n", " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6476,21 +11733,52 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2713_Veni_Creator_Spiritus_RDB.mei',\n", - " {'RDL_ID': 2713,\n", - " 'MEI_Name': '2713_Veni_Creator_Spiritus_RDB.mei',\n", - " 'Title': 'Veni Creator Spiritus',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2713/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2717_Assumpta es Maria_RDB.mei',\n", + " None),\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2708_Sana_me_Domine_RDB.mei',\n", + " {'RDL_ID': 2708,\n", + " 'MEI_Name': '2708_Sana_me_Domine_RDB.mei',\n", + " 'Title': 'Sana me domine',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2708/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '8',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '3',\n", " 'Source_Date': 1603.0,\n", - " 'Source_Country': '',\n", - " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Napoli',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6509,21 +11797,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2714_O_sacrum_convivium_RDB.mei',\n", - " {'RDL_ID': 2714,\n", - " 'MEI_Name': '2714_O_sacrum_convivium_RDB.mei',\n", - " 'Title': 'O sacrum convivium',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2714/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2710_O_Oriens_RDB.mei',\n", + " {'RDL_ID': 2710,\n", + " 'MEI_Name': '2710_O_Oriens_RDB.mei',\n", + " 'Title': 'O Oriens',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2710/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '9',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '5',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': '',\n", " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6542,21 +11859,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2715_Adoramus_te_RDB.mei',\n", - " {'RDL_ID': 2715,\n", - " 'MEI_Name': '2715_Adoramus_te_RDB.mei',\n", - " 'Title': 'Adoramus te Christe',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2715/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2714_O_sacrum_convivium_RDB.mei',\n", + " {'RDL_ID': 2714,\n", + " 'MEI_Name': '2714_O_sacrum_convivium_RDB.mei',\n", + " 'Title': 'O sacrum convivium',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2714/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '10',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '9',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': '',\n", " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6575,21 +11921,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2716_Veni_sponsa_Christi_RDB.mei',\n", - " {'RDL_ID': 2716,\n", - " 'MEI_Name': '2716_Veni_sponsa_Christi_RDB.mei',\n", - " 'Title': 'Veni sponsa Christi',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2716/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2713_Veni_Creator_Spiritus_RDB.mei',\n", + " {'RDL_ID': 2713,\n", + " 'MEI_Name': '2713_Veni_Creator_Spiritus_RDB.mei',\n", + " 'Title': 'Veni Creator Spiritus',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2713/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '11',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '8',\n", " 'Source_Date': 1603.0,\n", " 'Source_Country': '',\n", " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6608,21 +11983,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2718_Verba_mea_RDB.mei',\n", - " {'RDL_ID': 2718,\n", - " 'MEI_Name': '2718_Verba_mea_RDB.mei',\n", - " 'Title': 'Verba mea',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2718/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2711_Discedite_a_me_omnes_RDB.mei',\n", + " {'RDL_ID': 2711,\n", + " 'MEI_Name': '2711_Discedite_a_me_omnes_RDB.mei',\n", + " 'Title': 'Discedite a me omnes',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2711/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '13',\n", - " 'Source_Date': 1618.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '6',\n", + " 'Source_Date': 1603.0,\n", " 'Source_Country': '',\n", " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6641,21 +12045,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2719_Ardens_est_cor_meum_RDB.mei',\n", - " {'RDL_ID': 2719,\n", - " 'MEI_Name': '2719_Ardens_est_cor_meum_RDB.mei',\n", - " 'Title': 'Ardens est cor meum',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2719/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2707_Da_pacem_domine_RDB.mei',\n", + " {'RDL_ID': 2707,\n", + " 'MEI_Name': '2707_Da_pacem_domine_RDB.mei',\n", + " 'Title': 'Da pacem domine',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2707/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '14',\n", - " 'Source_Date': 1618.0,\n", - " 'Source_Country': '',\n", - " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '2',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Roma',\n", + " 'Source_Geonames': 'https://www.geonames.org/3169070/rome.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6674,21 +12107,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2720_Ne_derelinquas_me_RDB.mei',\n", - " {'RDL_ID': 2720,\n", - " 'MEI_Name': '2720_Ne_derelinquas_me_RDB.mei',\n", - " 'Title': 'Ne derelinquas me',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2720/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2712_Gaudeamus_omnes_RDB.mei',\n", + " {'RDL_ID': 2712,\n", + " 'MEI_Name': '2712_Gaudeamus_omnes_RDB.mei',\n", + " 'Title': 'Gaudeamus omnes',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2712/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '15',\n", - " 'Source_Date': 1620.0,\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '7',\n", + " 'Source_Date': 1603.0,\n", " 'Source_Country': '',\n", " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6707,21 +12169,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2722_Ad_te_levavi_RDB.mei',\n", - " {'RDL_ID': 2722,\n", - " 'MEI_Name': '2722_Ad_te_levavi_RDB.mei',\n", - " 'Title': 'Ad te levavi',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2722/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2709_Ave_sanctissima_Maria_RDB.mei',\n", + " {'RDL_ID': 2709,\n", + " 'MEI_Name': '2709_Ave_sanctissima_Maria_RDB.mei',\n", + " 'Title': 'Ave sanctissima Maria',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2709/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '17',\n", - " 'Source_Date': '',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '4',\n", + " 'Source_Date': 1603.0,\n", " 'Source_Country': '',\n", " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6740,21 +12231,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2724_O_anima_sanctissima_RDB.mei',\n", - " {'RDL_ID': 2724,\n", - " 'MEI_Name': '2724_O_anima_sanctissima_RDB.mei',\n", - " 'Title': 'O anima sanctissima',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2724/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2706_Virgo_benedicta_RDB.mei',\n", + " {'RDL_ID': 2706,\n", + " 'MEI_Name': '2706_Virgo_benedicta_RDB.mei',\n", + " 'Title': 'Virgo benedicta',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2706/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '19',\n", - " 'Source_Date': '',\n", - " 'Source_Country': '',\n", - " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1603.0,\n", + " 'Source_Country': 'Italy',\n", + " 'Source_City': 'Roma',\n", + " 'Source_Geonames': 'https://www.geonames.org/3169070/rome.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6773,21 +12293,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2725_Illumina_nos_RDB.mei',\n", - " {'RDL_ID': 2725,\n", - " 'MEI_Name': '2725_Illumina_nos_RDB.mei',\n", - " 'Title': 'Illumina nos',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2725/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2722_Ad_te_levavi_RDB.mei',\n", + " {'RDL_ID': 2722,\n", + " 'MEI_Name': '2722_Ad_te_levavi_RDB.mei',\n", + " 'Title': 'Ad te levavi',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2722/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '20',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '17',\n", " 'Source_Date': '',\n", " 'Source_Country': '',\n", " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6806,54 +12355,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2614b_Ecco_moriro_dunque_RDB.mei',\n", - " {'RDL_ID': 2614,\n", - " 'MEI_Name': '2614b_Ecco_moriro_dunque_RDB.mei',\n", - " 'Title': 'Ecco, morirò dunque',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2614/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2705_Maria_Mater_gratiæ_RDB.mei',\n", + " {'RDL_ID': 2705,\n", + " 'MEI_Name': '2705_Maria_Mater_gratiæ_RDB.mei',\n", + " 'Title': 'Maria Mater gratiæ',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2705/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]',\n", - " 'Source_Position': '12',\n", - " 'Source_Date': 1614.0,\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '19',\n", + " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", - " 'Publisher': '',\n", - " 'Genre': '',\n", - " 'CRIM_ID': '',\n", - " 'CRIM_Person_ID': '',\n", - " 'Mass Title': '',\n", - " 'Piece_Date': '',\n", - " 'Source_Short_Title': '',\n", - " 'Source_Title.1': '',\n", - " 'Source_Publisher_1': '',\n", - " 'Source_Date.1': '',\n", - " 'Source_Reference': '',\n", - " 'Source_Location': '',\n", - " 'Source_Institution': '',\n", - " 'Source_Shelfmark': '',\n", - " 'Editor.1': '',\n", - " 'Last_Revised': '',\n", - " 'Rights_Statement': '',\n", - " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2560_Madonna_io_RDB.mei',\n", - " {'RDL_ID': 2560,\n", - " 'MEI_Name': '2560_Madonna_io_RDB.mei',\n", - " 'Title': 'Madonna, io ben vorrei che fusse in voi',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2560/',\n", - " 'Composer_Name': '#265 Carlo Gesualdo',\n", - " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", - " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594',\n", - " 'Source_Position': '2',\n", - " 'Source_Date': 1594.0,\n", - " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Ferrara',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': 'http://geonames.org/3164603/venice.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6872,21 +12417,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2577b_Se_cosi_dolce_RDB.mei',\n", - " {'RDL_ID': 2577,\n", - " 'MEI_Name': '2577b_Se_cosi_dolce_RDB.mei',\n", - " 'Title': 'Se così dolce è il duolo',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2577/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2721_O_Beata_Mater_RDB.mei',\n", + " {'RDL_ID': 2721,\n", + " 'MEI_Name': '2721_O_Beata_Mater_RDB.mei',\n", + " 'Title': 'O Beata Mater',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2721/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594',\n", - " 'Source_Position': '5',\n", - " 'Source_Date': 1594.0,\n", - " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Venezia',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '16',\n", + " 'Source_Date': '',\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6905,21 +12479,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2707_Da_pacem_domine_RDB.mei',\n", - " {'RDL_ID': 2707,\n", - " 'MEI_Name': '2707_Da_pacem_domine_RDB.mei',\n", - " 'Title': 'Da pacem domine',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2707/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2720_Ne_derelinquas_me_RDB.mei',\n", + " {'RDL_ID': 2720,\n", + " 'MEI_Name': '2720_Ne_derelinquas_me_RDB.mei',\n", + " 'Title': 'Ne derelinquas me',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2720/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '2',\n", - " 'Source_Date': 1603.0,\n", - " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Roma',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '15',\n", + " 'Source_Date': 1620.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6938,23 +12541,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2717_Assumpta es Maria_RDB.mei',\n", - " None),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2721_O_Beata_Mater_RDB.mei',\n", - " {'RDL_ID': 2721,\n", - " 'MEI_Name': '2721_O_Beata_Mater_RDB.mei',\n", - " 'Title': 'O Beata Mater',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2721/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2723_Franciscus_humilis_et_pauper_RDB.mei',\n", + " {'RDL_ID': 2723,\n", + " 'MEI_Name': '2723_Franciscus_humilis_et_pauper_RDB.mei',\n", + " 'Title': 'Franciscus humilis et pauper',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2723/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '16',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '18',\n", " 'Source_Date': '',\n", " 'Source_Country': '',\n", " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -6973,21 +12603,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2723_Franciscus_humilis_et_pauper_RDB.mei',\n", - " {'RDL_ID': 2723,\n", - " 'MEI_Name': '2723_Franciscus_humilis_et_pauper_RDB.mei',\n", - " 'Title': 'Franciscus humilis et pauper',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2723/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2724_O_anima_sanctissima_RDB.mei',\n", + " {'RDL_ID': 2724,\n", + " 'MEI_Name': '2724_O_anima_sanctissima_RDB.mei',\n", + " 'Title': 'O anima sanctissima',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2724/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", - " 'Source_Position': '18',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '19',\n", " 'Source_Date': '',\n", " 'Source_Country': '',\n", " 'Source_City': '',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -7006,21 +12665,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/4780_Duedecimo_tono_RDB.mei',\n", - " {'RDL_ID': 4780,\n", - " 'MEI_Name': '4780_Duedecimo_tono_RDB.mei',\n", - " 'Title': '[Ricercar] Duedecimo Tono',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4780/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2719_Ardens_est_cor_meum_RDB.mei',\n", + " {'RDL_ID': 2719,\n", + " 'MEI_Name': '2719_Ardens_est_cor_meum_RDB.mei',\n", + " 'Title': 'Ardens est cor meum',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2719/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque',\n", - " 'Source_Position': '19',\n", - " 'Source_Date': 1586.0,\n", - " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Roma',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020908',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1618.0,\n", + " 'Source_Country': '',\n", + " 'Source_City': '',\n", + " 'Source_Geonames': '',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Lyricist-Poet',\n", + " 'Person_1_name': 'Thomas Aquinas',\n", + " 'Person_1_VIAF': 'http://viaf.org/viaf/100910150',\n", + " 'Person_2_role': 'Music printer',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicator',\n", + " 'Person_3_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_3_VIAF': '',\n", + " 'Person_4_role': 'Dedicatee/Owner',\n", + " 'Person_4_name': 'Carlo Gesualdo',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_5_role': 'Music printer',\n", + " 'Person_5_name': 'Costantino Vitale',\n", + " 'Person_5_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -7039,21 +12727,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/4779_Settimo_tono_RDB.mei',\n", - " {'RDL_ID': 4779,\n", - " 'MEI_Name': '4779_Settimo_tono_RDB.mei',\n", - " 'Title': '[Ricercar] Settimo Tono',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4779/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/2700_O_crux_benedicta_RDB.mei',\n", + " {'RDL_ID': 2700,\n", + " 'MEI_Name': '2700_O_crux_benedicta_RDB.mei',\n", + " 'Title': 'O crux benedicta',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2700/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque',\n", - " 'Source_Position': '18',\n", - " 'Source_Date': 1586.0,\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '14',\n", + " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Roma',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Napoli',\n", + " 'Source_Geonames': 'https://www.geonames.org/3172394/naples.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -7072,21 +12789,50 @@ " 'Last_Revised': '',\n", " 'Rights_Statement': '',\n", " 'Copyright_Owner': ''}),\n", - " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/4778_Undecimo_tono_RDB.mei',\n", - " {'RDL_ID': 4778,\n", - " 'MEI_Name': '4778_Undecimo_tono_RDB.mei',\n", - " 'Title': '[Ricercar] Undecimo Tono',\n", - " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4778/',\n", + " ('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_input/1369_Ave_regina_cœlorum_RDB.mei',\n", + " {'RDL_ID': 1369,\n", + " 'MEI_Name': '1369_Ave_regina_cœlorum_RDB.mei',\n", + " 'Title': 'Ave regina caelorum [053]',\n", + " 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1369/',\n", " 'Composer_Name': '#265 Carlo Gesualdo',\n", " 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142',\n", " 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z',\n", - " 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque',\n", - " 'Source_Position': '17',\n", - " 'Source_Date': 1586.0,\n", + " 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]',\n", + " 'Source_URL_RISM': 'https://rism.online/sources/990020907',\n", + " 'Source_Position': '1',\n", + " 'Source_Date': 1603.0,\n", " 'Source_Country': 'Italy',\n", - " 'Source_City': 'Roma',\n", - " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work',\n", - " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ',\n", + " 'Source_City': 'Ferrara',\n", + " 'Source_Geonames': 'https://www.geonames.org/3177090/ferrara.html',\n", + " 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Cristina Cassia - Data collector | Marco Gurrieri - Data collector | Alberto Napoli - Data collector',\n", + " 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | https://orcid.org/0009-0009-0854-4559 | https://orcid.org/0000-0001-8600-6443\\n | https://orcid.org/0000-0002-9764-2522 | https://orcid.org/0000-0001-9404-6322',\n", + " 'Person_1_role': 'Music printer',\n", + " 'Person_1_name': 'Giovanni Pietro Cappuccio',\n", + " 'Person_1_VIAF': '',\n", + " 'Person_2_role': 'Dedicator',\n", + " 'Person_2_name': 'Cappuccio',\n", + " 'Person_2_VIAF': '',\n", + " 'Person_3_role': 'Dedicatee/Owner',\n", + " 'Person_3_name': 'Carlo Gesualdo',\n", + " 'Person_3_VIAF': 'http://viaf.org/viaf/102315314',\n", + " 'Person_4_role': 'Music printer',\n", + " 'Person_4_name': 'Costantino Vitale',\n", + " 'Person_4_VIAF': 'http://viaf.org/viaf/87869996',\n", + " 'Person_5_role': '',\n", + " 'Person_5_name': '',\n", + " 'Person_5_VIAF': '',\n", + " 'Person_6_role': '',\n", + " 'Person_6_name': '',\n", + " 'Person_6_VIAF': '',\n", + " 'Person_7_role': '',\n", + " 'Person_7_name': '',\n", + " 'Person_7_VIAF': '',\n", + " 'Person_8_role': '',\n", + " 'Person_8_name': '',\n", + " 'Person_8_VIAF': '',\n", + " 'Person_9_role': '',\n", + " 'Person_9_name': '',\n", + " 'Person_9_VIAF': '',\n", " 'Publisher': '',\n", " 'Genre': '',\n", " 'CRIM_ID': '',\n", @@ -7114,861 +12860,3148 @@ { "cell_type": "code", "source": [ - "output_folder = '/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output'\n", - "# Ensure the output folder exists\n", - "os.makedirs(output_folder, exist_ok=True)\n", - "\n", - "\n", - "# Assuming your CSV is loaded into a pandas DataFrame named `df_metadata`\n", - "# And the MEI files are listed in `mei_files` as defined previously\n", - "\n", - "# Create an instance of the updater\n", - "metadata_updater = MEI_Metadata_Updater()\n", - "\n", - "# Assuming you have a list of pairs (mei_file_path, metadata_dictionary)\n", - "# as created in the previous steps, e.g., `pairs_to_process`\n", - "\n", - "# Loop through the pairs and apply metadata\n", "for mei_file_name, matching_dict in pairs_to_process:\n", - " # --- Debugging Print ---\n", - " print(f\"\\nProcessing file: {os.path.basename(mei_file_name)}\")\n", - " print(f\"Metadata dictionary for this file: {matching_dict}\")\n", - " # --- End Debugging Print ---\n", - " metadata_updater.apply_metadata(mei_file_name, matching_dict, output_folder)\n", - "\n", - "print(\"\\nMetadata update process completed.\")" + " metadata_updater.apply_metadata(mei_file_name, matching_dict, output_folder)" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "DiYNJDrxTd3M", - "outputId": "b8b55771-60b0-4724-9d5d-f1a8e951e778" + "outputId": "a988292b-4e41-4b0c-a084-014b30e1941c" }, - "execution_count": 319, + "execution_count": 446, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ - "\n", - "Processing file: 2729_In_te_Domine_speravi_RDB.mei\n", - "Metadata dictionary for this file: None\n", - "Getting 2729_In_te_Domine_speravi_RDB.mei\n", - "Error processing 2729_In_te_Domine_speravi_RDB.mei: 'NoneType' object has no attribute 'get'\n", - "\n", - "Processing file: 2727_All_ombra_degli_allori_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2727, 'MEI_Name': '2727_All_ombra_degli_allori_RDB.mei', 'Title': \"All'ombra degli allori\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2727/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#205 Ottavo libro de Madrigali, A Cinque Voci, di Pomponio Nenna Cavilier di Cesare', 'Source_Position': '18', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2727_All_ombra_degli_allori_RDB.mei\n", - "\n", - "Processing file: 2728_Come_vivi_cor_mio_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2728, 'MEI_Name': '2728_Come_vivi_cor_mio_RDB.mei', 'Title': 'Come vivi, Cor mio', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2728/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#205 Ottavo libro de Madrigali, A Cinque Voci, di Pomponio Nenna Cavilier di Cesare', 'Source_Position': '19', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2728_Come_vivi_cor_mio_RDB.mei\n", - "\n", - "Processing file: 2726_Ne_reminiscaris_1585_02_RDB.mei\n", - "Metadata dictionary for this file: None\n", - "Getting 2726_Ne_reminiscaris_1585_02_RDB.mei\n", - "Error processing 2726_Ne_reminiscaris_1585_02_RDB.mei: 'NoneType' object has no attribute 'get'\n", - "\n", - "Processing file: 2559a_Baci_soavi_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2559, 'MEI_Name': '2559a_Baci_soavi_RDB.mei', 'Title': 'Baci soavi e cari', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2559/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '1', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2559a_Baci_soavi_RDB.mei\n", - "\n", - "Processing file: 2561_Com_esser_puo_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2561, 'MEI_Name': '2561_Com_esser_puo_RDB.mei', 'Title': \"Com'esser può ch'io viva se m'uccidi\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2561/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '3', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2561_Com_esser_puo_RDB.mei\n", - "\n", - "Processing file: 2563b_Mentre_Madonna_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2563, 'MEI_Name': '2563b_Mentre_Madonna_RDB.mei', 'Title': 'Mentre madonna il lasso fianco posa', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2563/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '5', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2563b_Mentre_Madonna_RDB.mei\n", - "\n", - "Processing file: 2565_Si_gioioso_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2565, 'MEI_Name': '2565_Si_gioioso_RDB.mei', 'Title': 'Sì gioioso mi fanno i dolor miei', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2565/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '7', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2565_Si_gioioso_RDB.mei\n", - "\n", - "Processing file: 2567a_Tirsi_morir_volea_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2567, 'MEI_Name': '2567a_Tirsi_morir_volea_RDB.mei', 'Title': 'Tirsi morir volea', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2567/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '9', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2567a_Tirsi_morir_volea_RDB.mei\n", - "\n", - "Processing file: 2567b_Tirsi_morir_volea_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2567, 'MEI_Name': '2567b_Tirsi_morir_volea_RDB.mei', 'Title': 'Tirsi morir volea', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2567/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '9', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2567b_Tirsi_morir_volea_RDB.mei\n", - "\n", - "Processing file: 2568_Mentre_mia_stella_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2568, 'MEI_Name': '2568_Mentre_mia_stella_RDB.mei', 'Title': 'Mentre, mia stella, miri', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2568/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '10', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2564b_Se_da_si_nobil_RDB.mei\n", + " Added specified static encodingDesc block to 2564b_Se_da_si_nobil_RDB.mei\n", "Getting 2568_Mentre_mia_stella_RDB.mei\n", - "\n", - "Processing file: 1021_Son_si_belle_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 1021, 'MEI_Name': '1021_Son_si_belle_RDB.mei', 'Title': 'Son sì belle le rose', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1021/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '19 | 14', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector ', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | | https://orcid.org/0009-0004-9844-9662', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 1021_Son_si_belle_RDB.mei\n", - "\n", - "Processing file: 2572_Bella_angioletta_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2572, 'MEI_Name': '2572_Bella_angioletta_RDB.mei', 'Title': \"Bell'angioletta da le vaghe piume\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2572/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '15', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2568_Mentre_mia_stella_RDB.mei\n", + "Getting 2570_Questi_leggiadri_RDB.mei\n", + " Added specified static encodingDesc block to 2570_Questi_leggiadri_RDB.mei\n", + "Getting 2565_Si_gioioso_RDB.mei\n", + " Added specified static encodingDesc block to 2565_Si_gioioso_RDB.mei\n", "Getting 2572_Bella_angioletta_RDB.mei\n", - "\n", - "Processing file: 2573a_Caro_amoroso_neo_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2573, 'MEI_Name': '2573a_Caro_amoroso_neo_RDB.mei', 'Title': 'Caro amoroso neo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2573/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '1', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2573a_Caro_amoroso_neo_RDB.mei\n", - "\n", - "Processing file: 2562_Gel_ha_madonna_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2562, 'MEI_Name': '2562_Gel_ha_madonna_RDB.mei', 'Title': 'Gelo ha madonna il seno e fiamma il volto', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2562/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '4', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2562_Gel_ha_madonna_RDB.mei\n", - "\n", - "Processing file: 2563a_Mentre_Madonna_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2563, 'MEI_Name': '2563a_Mentre_Madonna_RDB.mei', 'Title': 'Mentre madonna il lasso fianco posa', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2563/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '5', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2563a_Mentre_Madonna_RDB.mei\n", - "\n", - "Processing file: 2559b_Baci_soavi_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2559, 'MEI_Name': '2559b_Baci_soavi_RDB.mei', 'Title': 'Baci soavi e cari', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2559/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '1', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2559b_Baci_soavi_RDB.mei\n", - "\n", - "Processing file: 2564a_Se_da_si_nobil_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2564, 'MEI_Name': '2564a_Se_da_si_nobil_RDB.mei', 'Title': 'Se da sì nobil mano', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2564/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '6', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2564a_Se_da_si_nobil_RDB.mei\n", - "\n", - "Processing file: 2564b_Se_da_si_nobil_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2564, 'MEI_Name': '2564b_Se_da_si_nobil_RDB.mei', 'Title': 'Se da sì nobil mano', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2564/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '6', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2564b_Se_da_si_nobil_RDB.mei\n", - "\n", - "Processing file: 2566_O_dolce_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2566, 'MEI_Name': '2566_O_dolce_RDB.mei', 'Title': 'O dolce mio martire', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2566/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '8', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2566_O_dolce_RDB.mei\n", - "\n", - "Processing file: 2569_Non_mirar_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2569, 'MEI_Name': '2569_Non_mirar_RDB.mei', 'Title': 'Non mirar, non mirare', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2569/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '11', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2572_Bella_angioletta_RDB.mei\n", "Getting 2569_Non_mirar_RDB.mei\n", - "\n", - "Processing file: 2570_Questi_leggiadri_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2570, 'MEI_Name': '2570_Questi_leggiadri_RDB.mei', 'Title': 'Questi leggiadri odorosetti fiori', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2570/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '12', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2570_Questi_leggiadri_RDB.mei\n", - "\n", - "Processing file: 2571a_Felice_primavera_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2571, 'MEI_Name': '2571a_Felice_primavera_RDB.mei', 'Title': 'Felice primavera', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2571/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '13', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2571a_Felice_primavera_RDB.mei\n", - "\n", - "Processing file: 2571b_Felice_primavera_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2571, 'MEI_Name': '2571b_Felice_primavera_RDB.mei', 'Title': 'Felice primavera', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2571/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '13', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2569_Non_mirar_RDB.mei\n", "Getting 2571b_Felice_primavera_RDB.mei\n", - "\n", - "Processing file: 2573b_Caro_amoroso_neo_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2573, 'MEI_Name': '2573b_Caro_amoroso_neo_RDB.mei', 'Title': 'Caro amoroso neo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2573/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '1', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2573b_Caro_amoroso_neo_RDB.mei\n", - "\n", - "Processing file: 2574_Hai_rotto_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2574, 'MEI_Name': '2574_Hai_rotto_RDB.mei', 'Title': 'Hai rotto e sciolto e spento a poco a poco', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2574/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '2', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2574_Hai_rotto_RDB.mei\n", - "\n", - "Processing file: 2575a_Se_per_lieve_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2575, 'MEI_Name': '2575a_Se_per_lieve_RDB.mei', 'Title': 'Se per lieve ferita', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2575/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '3', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2575a_Se_per_lieve_RDB.mei\n", - "\n", - "Processing file: 2576_In_piu_leggiadro_velo_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2576, 'MEI_Name': '2576_In_piu_leggiadro_velo_RDB.mei', 'Title': 'In più leggiadro velo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2576/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '4', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2576_In_piu_leggiadro_velo_RDB.mei\n", - "\n", - "Processing file: 2577a_Se_cosi_dolce_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2577, 'MEI_Name': '2577a_Se_cosi_dolce_RDB.mei', 'Title': 'Se così dolce è il duolo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2577/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '5', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2571b_Felice_primavera_RDB.mei\n", + "Getting 2567a_Tirsi_morir_volea_RDB.mei\n", + " Added specified static encodingDesc block to 2567a_Tirsi_morir_volea_RDB.mei\n", + "Getting 2571a_Felice_primavera_RDB.mei\n", + " Added specified static encodingDesc block to 2571a_Felice_primavera_RDB.mei\n", + "Getting 2566_O_dolce_RDB.mei\n", + " Added specified static encodingDesc block to 2566_O_dolce_RDB.mei\n", + "Getting 2567b_Tirsi_morir_volea_RDB.mei\n", + " Added specified static encodingDesc block to 2567b_Tirsi_morir_volea_RDB.mei\n", + "Getting 2582_Candida_man_RDB.mei\n", + " Added specified static encodingDesc block to 2582_Candida_man_RDB.mei\n", + "Getting 2575b_Se_per_lieve_RDB.mei\n", + " Added specified static encodingDesc block to 2575b_Se_per_lieve_RDB.mei\n", "Getting 2577a_Se_cosi_dolce_RDB.mei\n", - "\n", - "Processing file: 2578_Se_taccio_il_duol_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2578, 'MEI_Name': '2578_Se_taccio_il_duol_RDB.mei', 'Title': \"Se taccio, il duol s'avanza\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2578/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '6', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2578_Se_taccio_il_duol_RDB.mei\n", - "\n", - "Processing file: 2579a_O_com_e_gran_martire_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2579, 'MEI_Name': '2579a_O_com_e_gran_martire_RDB.mei', 'Title': 'O come è gran martire', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2579/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '7', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2579a_O_com_e_gran_martire_RDB.mei\n", - "\n", - "Processing file: 2579b_O_com_e_gran_martire_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2579, 'MEI_Name': '2579b_O_com_e_gran_martire_RDB.mei', 'Title': 'O come è gran martire', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2579/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '7', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2579b_O_com_e_gran_martire_RDB.mei\n", - "\n", - "Processing file: 2580_Sento_che_nel_partire_RDB.mei\n", - "Metadata dictionary for this file: None\n", + " Added specified static encodingDesc block to 2577a_Se_cosi_dolce_RDB.mei\n", + "Getting 2583_Non_mai_non_cangero_RDB.mei\n", + " Added specified static encodingDesc block to 2583_Non_mai_non_cangero_RDB.mei\n", + "Getting 2585_Non_mi_toglia_RDB.mei\n", + " Added specified static encodingDesc block to 2585_Non_mi_toglia_RDB.mei\n", + "Getting 2584_All_apparir_di_quelle_RDB.mei\n", + " Added specified static encodingDesc block to 2584_All_apparir_di_quelle_RDB.mei\n", + "Getting 1018b_Dalle_odorate_spoglie_RDB.mei\n", + " Added specified static encodingDesc block to 1018b_Dalle_odorate_spoglie_RDB.mei\n", + "Getting 2581b_Non_e_questa_RDB.mei\n", + " Added specified static encodingDesc block to 2581b_Non_e_questa_RDB.mei\n", "Getting 2580_Sento_che_nel_partire_RDB.mei\n", + " Added specified static encodingDesc block to 2580_Sento_che_nel_partire_RDB.mei\n", "Error processing 2580_Sento_che_nel_partire_RDB.mei: 'NoneType' object has no attribute 'get'\n", - "\n", - "Processing file: 2581a_Non_e_questa_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2581, 'MEI_Name': '2581a_Non_e_questa_RDB.mei', 'Title': 'Non è questa la mano', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2581/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '9', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", "Getting 2581a_Non_e_questa_RDB.mei\n", - "\n", - "Processing file: 2581b_Non_e_questa_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2581, 'MEI_Name': '2581b_Non_e_questa_RDB.mei', 'Title': 'Non è questa la mano', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2581/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '9', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2581b_Non_e_questa_RDB.mei\n", - "\n", - "Processing file: 2582_Candida_man_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2582, 'MEI_Name': '2582_Candida_man_RDB.mei', 'Title': 'Candida man qual neve agli occhi offerse', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2582/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '10', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2582_Candida_man_RDB.mei\n", - "\n", - "Processing file: 1018a_Dalle_odorate_spoglie_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 1018, 'MEI_Name': '1018a_Dalle_odorate_spoglie_RDB.mei', 'Title': 'Dalle odorate spoglie', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1018/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '16 | 11', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector ', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | | https://orcid.org/0009-0004-9844-9662', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2581a_Non_e_questa_RDB.mei\n", + "Getting 2573a_Caro_amoroso_neo_RDB.mei\n", + " Added specified static encodingDesc block to 2573a_Caro_amoroso_neo_RDB.mei\n", "Getting 1018a_Dalle_odorate_spoglie_RDB.mei\n", - "\n", - "Processing file: 1018b_Dalle_odorate_spoglie_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 1018, 'MEI_Name': '1018b_Dalle_odorate_spoglie_RDB.mei', 'Title': 'Dalle odorate spoglie', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1018/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '16 | 11', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work | Ailin Arjmand - Data collector ', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | | https://orcid.org/0009-0004-9844-9662', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 1018b_Dalle_odorate_spoglie_RDB.mei\n", - "\n", - "Processing file: 2583_Non_mai_non_cangero_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2583, 'MEI_Name': '2583_Non_mai_non_cangero_RDB.mei', 'Title': 'Non mai non cangerò', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2583/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '12', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2583_Non_mai_non_cangero_RDB.mei\n", - "\n", - "Processing file: 2584_All_apparir_di_quelle_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2584, 'MEI_Name': '2584_All_apparir_di_quelle_RDB.mei', 'Title': \"All'apparir di quelle luci ardenti\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2584/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '13', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2584_All_apparir_di_quelle_RDB.mei\n", - "\n", - "Processing file: 2585_Non_mi_toglia_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2585, 'MEI_Name': '2585_Non_mi_toglia_RDB.mei', 'Title': 'Non mi toglia il ben mio', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2585/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '14', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2585_Non_mi_toglia_RDB.mei\n", - "Error processing 2585_Non_mi_toglia_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", - "\n", - "Processing file: 2586a_Voi_volete_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2586, 'MEI_Name': '2586a_Voi_volete_RDB.mei', 'Title': \"Voi volete ch'io mora\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2586/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '1', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2586a_Voi_volete_RDB.mei\n", - "\n", - "Processing file: 2586b_Voi_volete_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2586, 'MEI_Name': '2586b_Voi_volete_RDB.mei', 'Title': \"Voi volete ch'io mora\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2586/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '1', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2586b_Voi_volete_RDB.mei\n", - "\n", - "Processing file: 2587_Ahi_disperata_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2587, 'MEI_Name': '2587_Ahi_disperata_RDB.mei', 'Title': 'Ahi, disperata vita', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2587/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '2', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2587_Ahi_disperata_RDB.mei\n", - "\n", - "Processing file: 2575b_Se_per_lieve_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2575, 'MEI_Name': '2575b_Se_per_lieve_RDB.mei', 'Title': 'Se per lieve ferita', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2575/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '3', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2575b_Se_per_lieve_RDB.mei\n", - "\n", - "Processing file: 2730a_Canzon_francese_del_Principe_dim_def_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2730, 'MEI_Name': '2730a_Canzon_francese_del_Principe_dim_def_RDB.mei', 'Title': 'Canzon franzese del Principe', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2730/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#964 GB-Lbl, MS Add. 30491', 'Source_Position': '', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2730a_Canzon_francese_del_Principe_dim_def_RDB.mei\n", - "Error processing 2730a_Canzon_francese_del_Principe_dim_def_RDB.mei: ID m-2389 already defined, line 3258, column 62 (<string>, line 3258)\n", - "\n", - "Processing file: 2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2730, 'MEI_Name': '2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei', 'Title': 'Canzon franzese del Principe', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2730/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#964 GB-Lbl, MS Add. 30491', 'Source_Position': '', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei\n", - "\n", - "Processing file: 2588_Languisco_e_moro_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2588, 'MEI_Name': '2588_Languisco_e_moro_RDB.mei', 'Title': 'Languisco e moro, ahi, cruda', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2588/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '3', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2588_Languisco_e_moro_RDB.mei\n", - "\n", - "Processing file: 2589_Del_bel_de_bei_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2589, 'MEI_Name': '2589_Del_bel_de_bei_RDB.mei', 'Title': \"Del bel de' bei vostri occhi\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2589/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '4', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2589_Del_bel_de_bei_RDB.mei\n", - "\n", - "Processing file: 2590_Ahi_dispietata_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2590, 'MEI_Name': '2590_Ahi_dispietata_RDB.mei', 'Title': 'Ahi, dispietata e cruda', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2590/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '5', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2590_Ahi_dispietata_RDB.mei\n", - "\n", - "Processing file: 2591_Dolce_spirto_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2591, 'MEI_Name': '2591_Dolce_spirto_RDB.mei', 'Title': \"Dolce spirto d'Amore\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2591/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '6', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2591_Dolce_spirto_RDB.mei\n", - "\n", - "Processing file: 2592a_Sospirava_il_mio_core_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2592, 'MEI_Name': '2592a_Sospirava_il_mio_core_RDB.mei', 'Title': 'Sospirava il mio core', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2592/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '7', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2592a_Sospirava_il_mio_core_RDB.mei\n", - "\n", - "Processing file: 2592b_Sospirava_il_mio_core_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2592, 'MEI_Name': '2592b_Sospirava_il_mio_core_RDB.mei', 'Title': 'Sospirava il mio core', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2592/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '7', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2592b_Sospirava_il_mio_core_RDB.mei\n", - "\n", - "Processing file: 2593_Veggio_si_dal_mio_sole_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2593, 'MEI_Name': '2593_Veggio_si_dal_mio_sole_RDB.mei', 'Title': 'Veggio sì dal mio sole', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2593/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '8', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2593_Veggio_si_dal_mio_sole_RDB.mei\n", - "\n", - "Processing file: 2594_Non_t_amo_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2594, 'MEI_Name': '2594_Non_t_amo_RDB.mei', 'Title': '\"Non t\\'amo\", o voce ingrata', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2594/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '9', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2594_Non_t_amo_RDB.mei\n", - "\n", - "Processing file: 2595a_Meraviglia_d_Amore_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2595, 'MEI_Name': '2595a_Meraviglia_d_Amore_RDB.mei', 'Title': \"Meraviglia d'Amore\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2595/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '10', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 1018a_Dalle_odorate_spoglie_RDB.mei\n", + "Getting 2559a_Baci_soavi_RDB.mei\n", + " Added specified static encodingDesc block to 2559a_Baci_soavi_RDB.mei\n", + "Getting 2560_Madonna_io_RDB.mei\n", + " Added specified static encodingDesc block to 2560_Madonna_io_RDB.mei\n", + "Getting 2564a_Se_da_si_nobil_RDB.mei\n", + " Added specified static encodingDesc block to 2564a_Se_da_si_nobil_RDB.mei\n", + "Getting 2559b_Baci_soavi_RDB.mei\n", + " Added specified static encodingDesc block to 2559b_Baci_soavi_RDB.mei\n", + "Getting 1021_Son_si_belle_RDB.mei\n", + " Added specified static encodingDesc block to 1021_Son_si_belle_RDB.mei\n", + "Getting 2561_Com_esser_puo_RDB.mei\n", + " Added specified static encodingDesc block to 2561_Com_esser_puo_RDB.mei\n", + "Getting 2563a_Mentre_Madonna_RDB.mei\n", + " Added specified static encodingDesc block to 2563a_Mentre_Madonna_RDB.mei\n", + "Getting 2562_Gel_ha_madonna_RDB.mei\n", + " Added specified static encodingDesc block to 2562_Gel_ha_madonna_RDB.mei\n", + "Getting 2563b_Mentre_Madonna_RDB.mei\n", + " Added specified static encodingDesc block to 2563b_Mentre_Madonna_RDB.mei\n", + "Getting 2587_Ahi_disperata_RDB.mei\n", + " Added specified static encodingDesc block to 2587_Ahi_disperata_RDB.mei\n", "Getting 2595a_Meraviglia_d_Amore_RDB.mei\n", - "\n", - "Processing file: 2595b_Meraviglia_d_Amore_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2595, 'MEI_Name': '2595b_Meraviglia_d_Amore_RDB.mei', 'Title': \"Meraviglia d'Amore\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2595/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '10', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2595b_Meraviglia_d_Amore_RDB.mei\n", - "\n", - "Processing file: 2596_Crudelissima_doglia_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2596, 'MEI_Name': '2596_Crudelissima_doglia_RDB.mei', 'Title': 'Crudelissima doglia', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2596/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '11', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2596_Crudelissima_doglia_RDB.mei\n", - "\n", - "Processing file: 2597_Se_piange_ohime_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2597, 'MEI_Name': '2597_Se_piange_ohime_RDB.mei', 'Title': 'Se piange, ohimè, la donna del mio core', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2597/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '12', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2595a_Meraviglia_d_Amore_RDB.mei\n", + "Getting 2602_Donna_se_m_ancidete_RDB.mei\n", + " Added specified static encodingDesc block to 2602_Donna_se_m_ancidete_RDB.mei\n", + "Getting 2601_Dolcissimo_sospiro_RDB.mei\n", + " Added specified static encodingDesc block to 2601_Dolcissimo_sospiro_RDB.mei\n", "Getting 2597_Se_piange_ohime_RDB.mei\n", - "\n", - "Processing file: 2598_Ancidetemi_pur_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2598, 'MEI_Name': '2598_Ancidetemi_pur_RDB.mei', 'Title': 'Ancidetemi pur, grievi martiri', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2598/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '13', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2597_Se_piange_ohime_RDB.mei\n", + "Getting 2586b_Voi_volete_RDB.mei\n", + " Added specified static encodingDesc block to 2586b_Voi_volete_RDB.mei\n", "Getting 2598_Ancidetemi_pur_RDB.mei\n", - "\n", - "Processing file: 2599_Se_vi_miro_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2599, 'MEI_Name': '2599_Se_vi_miro_RDB.mei', 'Title': 'Se vi miro pietosa', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2599/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '14', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2599_Se_vi_miro_RDB.mei\n", - "\n", - "Processing file: 2600_Deh_se_gia_fu_crudel_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2600, 'MEI_Name': '2600_Deh_se_gia_fu_crudel_RDB.mei', 'Title': 'Deh, se già fu crudele al mio martire', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2600/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '15', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2598_Ancidetemi_pur_RDB.mei\n", "Getting 2600_Deh_se_gia_fu_crudel_RDB.mei\n", - "\n", - "Processing file: 2601_Dolcissimo_sospiro_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2601, 'MEI_Name': '2601_Dolcissimo_sospiro_RDB.mei', 'Title': 'Dolcissimo sospiro', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2601/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '16', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2601_Dolcissimo_sospiro_RDB.mei\n", - "\n", - "Processing file: 2602_Donna_se_m_ancidete_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2602, 'MEI_Name': '2602_Donna_se_m_ancidete_RDB.mei', 'Title': \"Donna, se m'ancidete\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2602/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#203 Madrigali, A Cinque Voci. [libro terzo]', 'Source_Position': '17', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2602_Donna_se_m_ancidete_RDB.mei\n", - "\n", - "Processing file: 2604_Talor_sano_desio_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2604, 'MEI_Name': '2604_Talor_sano_desio_RDB.mei', 'Title': 'Talor sano desio', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2604/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '2', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2604_Talor_sano_desio_RDB.mei\n", - "Error processing 2604_Talor_sano_desio_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", - "\n", - "Processing file: 2603_Luci_serene_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2603, 'MEI_Name': '2603_Luci_serene_RDB.mei', 'Title': 'Luci serene e chiare', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2603/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '1', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2603_Luci_serene_RDB.mei\n", - "\n", - "Processing file: 2605a_Io_tacero_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2605, 'MEI_Name': '2605a_Io_tacero_RDB.mei', 'Title': 'Io tacerò, ma nel silenzio moi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2605/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '3', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2605a_Io_tacero_RDB.mei\n", - "Error processing 2605a_Io_tacero_RDB.mei: Blank needed here, line 1, column 38 (<string>, line 1)\n", - "\n", - "Processing file: 2605b_Io_tacero_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2605, 'MEI_Name': '2605b_Io_tacero_RDB.mei', 'Title': 'Io tacerò, ma nel silenzio moi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2605/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '3', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2605b_Io_tacero_RDB.mei\n", - "\n", - "Processing file: 2606_Che_fai_meco_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2606, 'MEI_Name': '2606_Che_fai_meco_RDB.mei', 'Title': 'Che fai meco, mio cor misero e solo?', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2606/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '4', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2606_Che_fai_meco_RDB.mei\n", - "\n", - "Processing file: 2607_Questa_crudele_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2607, 'MEI_Name': '2607_Questa_crudele_RDB.mei', 'Title': 'Questa crudele e pia', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2607/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '5', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2607_Questa_crudele_RDB.mei\n", - "\n", - "Processing file: 2608a_Or_che_in_gioia_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2608, 'MEI_Name': '2608a_Or_che_in_gioia_RDB.mei', 'Title': 'Or che in gioia credea viver contento', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2608/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '6', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2600_Deh_se_gia_fu_crudel_RDB.mei\n", + "Getting 2599_Se_vi_miro_RDB.mei\n", + " Added specified static encodingDesc block to 2599_Se_vi_miro_RDB.mei\n", + "Getting 2595b_Meraviglia_d_Amore_RDB.mei\n", + " Added specified static encodingDesc block to 2595b_Meraviglia_d_Amore_RDB.mei\n", + "Getting 2596_Crudelissima_doglia_RDB.mei\n", + " Added specified static encodingDesc block to 2596_Crudelissima_doglia_RDB.mei\n", + "Getting 2586a_Voi_volete_RDB.mei\n", + " Added specified static encodingDesc block to 2586a_Voi_volete_RDB.mei\n", + "Getting 2577b_Se_cosi_dolce_RDB.mei\n", + " Added specified static encodingDesc block to 2577b_Se_cosi_dolce_RDB.mei\n", + "Getting 2579a_O_com_e_gran_martire_RDB.mei\n", + " Added specified static encodingDesc block to 2579a_O_com_e_gran_martire_RDB.mei\n", + "Getting 2573b_Caro_amoroso_neo_RDB.mei\n", + " Added specified static encodingDesc block to 2573b_Caro_amoroso_neo_RDB.mei\n", + "Getting 2574_Hai_rotto_RDB_2_bsWHShV.mei\n", + " Added specified static encodingDesc block to 2574_Hai_rotto_RDB_2_bsWHShV.mei\n", + "Error processing 2574_Hai_rotto_RDB_2_bsWHShV.mei: 'NoneType' object has no attribute 'get'\n", + "Getting 2579b_O_com_e_gran_martire_RDB.mei\n", + " Added specified static encodingDesc block to 2579b_O_com_e_gran_martire_RDB.mei\n", + "Getting 2575a_Se_per_lieve_RDB.mei\n", + " Added specified static encodingDesc block to 2575a_Se_per_lieve_RDB.mei\n", + "Getting 2576_In_piu_leggiadro_velo_RDB.mei\n", + " Added specified static encodingDesc block to 2576_In_piu_leggiadro_velo_RDB.mei\n", + "Getting 2578_Se_taccio_il_duol_RDB.mei\n", + " Added specified static encodingDesc block to 2578_Se_taccio_il_duol_RDB.mei\n", + "Getting 2605a_Io_tacero_RDB_4eOUTTL.mei\n", + " Added specified static encodingDesc block to 2605a_Io_tacero_RDB_4eOUTTL.mei\n", + "Error processing 2605a_Io_tacero_RDB_4eOUTTL.mei: 'NoneType' object has no attribute 'get'\n", "Getting 2608a_Or_che_in_gioia_RDB.mei\n", - "\n", - "Processing file: 2608b_Or_che_in_gioia_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2608, 'MEI_Name': '2608b_Or_che_in_gioia_RDB.mei', 'Title': 'Or che in gioia credea viver contento', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2608/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '6', 'Source_Date': 1596.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2608b_Or_che_in_gioia_RDB.mei\n", - "\n", - "Processing file: 2609a_Cor_mio_deh_non_piangete_RDB.mei\n", - "Metadata dictionary for this file: None\n", - "Getting 2609a_Cor_mio_deh_non_piangete_RDB.mei\n", - "Error processing 2609a_Cor_mio_deh_non_piangete_RDB.mei: 'NoneType' object has no attribute 'get'\n", - "\n", - "Processing file: 2609b_cor_mio_deh_non_piangete_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2609, 'MEI_Name': '2609b_cor_mio_deh_non_piangete_RDB.mei', 'Title': 'Cor mio, deh, non piangete', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2609/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '7', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2609b_cor_mio_deh_non_piangete_RDB.mei\n", - "\n", - "Processing file: 2610_Sparge_la_morte_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2610, 'MEI_Name': '2610_Sparge_la_morte_RDB.mei', 'Title': 'Sparge la morte al mio signor nel viso', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2610/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '8', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2610_Sparge_la_morte_RDB.mei\n", - "\n", - "Processing file: 2611a_Moro_e_mentre_sospiro_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2611, 'MEI_Name': '2611a_Moro_e_mentre_sospiro_RDB.mei', 'Title': 'Moro e mentre sospiro', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2611/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '9', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2611a_Moro_e_mentre_sospiro_RDB.mei\n", - "\n", - "Processing file: 2611b_Moro_e_mentre_sospiro_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2611, 'MEI_Name': '2611b_Moro_e_mentre_sospiro_RDB.mei', 'Title': 'Moro e mentre sospiro', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2611/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '9', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2611b_Moro_e_mentre_sospiro_RDB.mei\n", - "\n", - "Processing file: 2612_Mentre_gira_costei_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2612, 'MEI_Name': '2612_Mentre_gira_costei_RDB.mei', 'Title': 'Mentre gira costei', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2612/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '10', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2608a_Or_che_in_gioia_RDB.mei\n", + "Getting 2603_Luci_serene_RDB.mei\n", + " Added specified static encodingDesc block to 2603_Luci_serene_RDB.mei\n", "Getting 2612_Mentre_gira_costei_RDB.mei\n", - "\n", - "Processing file: 2613_A_voi_mentre_il_mio_core_RDB.mei\n", - "Metadata dictionary for this file: None\n", + " Added specified static encodingDesc block to 2612_Mentre_gira_costei_RDB.mei\n", + "Getting 2617b_Il_sol_RDB.mei\n", + " Added specified static encodingDesc block to 2617b_Il_sol_RDB.mei\n", + "Getting 2604_Talor_sano_desio_RDB.mei\n", + " Added specified static encodingDesc block to 2604_Talor_sano_desio_RDB.mei\n", + "Getting 2616_Se_chiudete_nel_core_RDB.mei\n", + " Added specified static encodingDesc block to 2616_Se_chiudete_nel_core_RDB.mei\n", + "Getting 2617a_Il_sol_RDB.mei\n", + " Added specified static encodingDesc block to 2617a_Il_sol_RDB.mei\n", "Getting 2613_A_voi_mentre_il_mio_core_RDB.mei\n", + " Added specified static encodingDesc block to 2613_A_voi_mentre_il_mio_core_RDB.mei\n", "Error processing 2613_A_voi_mentre_il_mio_core_RDB.mei: 'NoneType' object has no attribute 'get'\n", - "\n", - "Processing file: 2614a_Ecco_moriro_dunque_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2614, 'MEI_Name': '2614a_Ecco_moriro_dunque_RDB.mei', 'Title': 'Ecco, morirò dunque', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2614/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '12', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2614a_Ecco_moriro_dunque_RDB.mei\n", - "\n", - "Processing file: 2615_Arde_il_mio_cor_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2615, 'MEI_Name': '2615_Arde_il_mio_cor_RDB.mei', 'Title': 'Arde il mio cor ed è sì dolce il foco', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2615/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '13', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", "Getting 2615_Arde_il_mio_cor_RDB.mei\n", - "\n", - "Processing file: 2616_Se_chiudete_nel_core_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2616, 'MEI_Name': '2616_Se_chiudete_nel_core_RDB.mei', 'Title': 'Se chiudete nel core', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2616/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '14', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2616_Se_chiudete_nel_core_RDB.mei\n", - "\n", - "Processing file: 2617a_Il_sol_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2617, 'MEI_Name': '2617a_Il_sol_RDB.mei', 'Title': 'Il sol, qualor più splende', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2617/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '15', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2617a_Il_sol_RDB.mei\n", - "\n", - "Processing file: 2617b_Il_sol_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2617, 'MEI_Name': '2617b_Il_sol_RDB.mei', 'Title': 'Il sol, qualor più splende', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2617/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '15', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2617b_Il_sol_RDB.mei\n", - "\n", - "Processing file: 2618_Gioite_voi_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2618, 'MEI_Name': '2618_Gioite_voi_RDB.mei', 'Title': 'Gioite voi col canto', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2618/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '1', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2618_Gioite_voi_RDB.mei\n", - "\n", - "Processing file: 2619_S_io_non_miro_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2619, 'MEI_Name': '2619_S_io_non_miro_RDB.mei', 'Title': \"S'io non miro non moro\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2619/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '2', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2619_S_io_non_miro_RDB.mei\n", - "\n", - "Processing file: 2620_Itene_o_miei_sospiri_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2620, 'MEI_Name': '2620_Itene_o_miei_sospiri_RDB.mei', 'Title': 'Itene, o miei sospiri', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2620/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '3', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2615_Arde_il_mio_cor_RDB.mei\n", + "Getting 2614b_Ecco_moriro_dunque_RDB.mei\n", + " Added specified static encodingDesc block to 2614b_Ecco_moriro_dunque_RDB.mei\n", + "Getting 2614a_Ecco_moriro_dunque_RDB.mei\n", + " Added specified static encodingDesc block to 2614a_Ecco_moriro_dunque_RDB.mei\n", + "Getting 2589_Del_bel_de_bei_RDB.mei\n", + " Added specified static encodingDesc block to 2589_Del_bel_de_bei_RDB.mei\n", + "Getting 2591_Dolce_spirto_RDB.mei\n", + " Added specified static encodingDesc block to 2591_Dolce_spirto_RDB.mei\n", + "Getting 2590_Ahi_dispietata_RDB.mei\n", + " Added specified static encodingDesc block to 2590_Ahi_dispietata_RDB.mei\n", + "Getting 2592a_Sospirava_il_mio_core_RDB.mei\n", + " Added specified static encodingDesc block to 2592a_Sospirava_il_mio_core_RDB.mei\n", + "Getting 2592b_Sospirava_il_mio_core_RDB.mei\n", + " Added specified static encodingDesc block to 2592b_Sospirava_il_mio_core_RDB.mei\n", + "Getting 2593_Veggio_si_dal_mio_sole_RDB.mei\n", + " Added specified static encodingDesc block to 2593_Veggio_si_dal_mio_sole_RDB.mei\n", + "Getting 2588_Languisco_e_moro_RDB.mei\n", + " Added specified static encodingDesc block to 2588_Languisco_e_moro_RDB.mei\n", + "Getting 2594_Non_t_amo_RDB.mei\n", + " Added specified static encodingDesc block to 2594_Non_t_amo_RDB.mei\n", "Getting 2620_Itene_o_miei_sospiri_RDB.mei\n", - "\n", - "Processing file: 2621_Dolcissima_mia_vita_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2621, 'MEI_Name': '2621_Dolcissima_mia_vita_RDB.mei', 'Title': 'Dolcissima mia vita', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2621/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '4', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2621_Dolcissima_mia_vita_RDB.mei\n", - "\n", - "Processing file: 2622_O_dolorosa_gioia_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2622, 'MEI_Name': '2622_O_dolorosa_gioia_RDB.mei', 'Title': 'O dolorosa gioia', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2622/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '5', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2622_O_dolorosa_gioia_RDB.mei\n", - "\n", - "Processing file: 2623_Qual_fora_donna_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2623, 'MEI_Name': '2623_Qual_fora_donna_RDB.mei', 'Title': 'Qual fora, donna, un dolce \"Ohimè\" d\\'amore', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2623/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '6', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2623_Qual_fora_donna_RDB.mei\n", - "\n", - "Processing file: 2624_Felicissimo_sonno_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2624, 'MEI_Name': '2624_Felicissimo_sonno_RDB.mei', 'Title': 'Felicissimo sonno', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2624/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '7', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2620_Itene_o_miei_sospiri_RDB.mei\n", + "Getting 2619_S_io_non_miro_RDB.mei\n", + " Added specified static encodingDesc block to 2619_S_io_non_miro_RDB.mei\n", + "Getting 2627_Languisce_al_fin_RDB.mei\n", + " Added specified static encodingDesc block to 2627_Languisce_al_fin_RDB.mei\n", "Getting 2624_Felicissimo_sonno_RDB.mei\n", - "\n", - "Processing file: 2625_Se_vi_duol_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2625, 'MEI_Name': '2625_Se_vi_duol_RDB.mei', 'Title': 'Se vi duol il mio duolo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2625/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '8', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2625_Se_vi_duol_RDB.mei\n", - "\n", - "Processing file: 2626_Occhi_del_mio_cor_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2626, 'MEI_Name': '2626_Occhi_del_mio_cor_RDB.mei', 'Title': 'Occhi, del mio cor vita', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2626/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '9', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2624_Felicissimo_sonno_RDB.mei\n", "Getting 2626_Occhi_del_mio_cor_RDB.mei\n", - "\n", - "Processing file: 2627_Languisce_al_fin_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2627, 'MEI_Name': '2627_Languisce_al_fin_RDB.mei', 'Title': 'Languisce al fin chi da la vita parte', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2627/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '10', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2627_Languisce_al_fin_RDB.mei\n", - "\n", - "Processing file: 2628_Merce_grido_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2628, 'MEI_Name': '2628_Merce_grido_RDB.mei', 'Title': 'Mercé grido piangendo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2628/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '11', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2626_Occhi_del_mio_cor_RDB.mei\n", + "Getting 2623_Qual_fora_donna_RDB.mei\n", + " Added specified static encodingDesc block to 2623_Qual_fora_donna_RDB.mei\n", + "Getting 2622_O_dolorosa_gioia_RDB.mei\n", + " Added specified static encodingDesc block to 2622_O_dolorosa_gioia_RDB.mei\n", "Getting 2628_Merce_grido_RDB.mei\n", - "\n", - "Processing file: 2629_O_voi_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2629, 'MEI_Name': '2629_O_voi_RDB.mei', 'Title': 'O voi troppo felici', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2629/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '12', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2629_O_voi_RDB.mei\n", - "\n", - "Processing file: 2630_Correte_amanti_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2630, 'MEI_Name': '2630_Correte_amanti_RDB.mei', 'Title': 'Correte, amanti, a prova', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2630/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '13', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2630_Correte_amanti_RDB.mei\n", - "\n", - "Processing file: 2631_Asciugate_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2631, 'MEI_Name': '2631_Asciugate_RDB.mei', 'Title': 'Asciugate i begli occhi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2631/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '14', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2631_Asciugate_RDB.mei\n", - "\n", - "Processing file: 2632_Tu_m_uccidi_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2632, 'MEI_Name': '2632_Tu_m_uccidi_RDB.mei', 'Title': \"Tu m'uccidi, o crudele\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2632/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '15', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2632_Tu_m_uccidi_RDB.mei\n", - "\n", - "Processing file: 2633_Deh_coprite_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2633, 'MEI_Name': '2633_Deh_coprite_RDB.mei', 'Title': 'Deh, coprite il bel seno', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2633/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '16', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2633_Deh_coprite_RDB.mei\n", - "\n", - "Processing file: 2634a_Poiche_l_avida_sete_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2634, 'MEI_Name': '2634a_Poiche_l_avida_sete_RDB.mei', 'Title': \"Poiché l'avida sete\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2634/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '17', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2628_Merce_grido_RDB.mei\n", + "Getting 2621_Dolcissima_mia_vita_RDB.mei\n", + " Added specified static encodingDesc block to 2621_Dolcissima_mia_vita_RDB.mei\n", "Getting 2634a_Poiche_l_avida_sete_RDB.mei\n", - "\n", - "Processing file: 2634b_Poiche_l_avida_sete_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2634, 'MEI_Name': '2634b_Poiche_l_avida_sete_RDB.mei', 'Title': \"Poiché l'avida sete\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2634/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '17', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2634b_Poiche_l_avida_sete_RDB.mei\n", - "\n", - "Processing file: 2635_O_tenebroso_giorno_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2635, 'MEI_Name': '2635_O_tenebroso_giorno_RDB.mei', 'Title': 'O tenebroso giorno', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2635/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '18', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2635_O_tenebroso_giorno_RDB.mei\n", - "\n", - "Processing file: 2636_Se_tu_fuggi_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2636, 'MEI_Name': '2636_Se_tu_fuggi_RDB.mei', 'Title': 'Se tu fuggi, io non resto', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2636/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '19', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2634a_Poiche_l_avida_sete_RDB.mei\n", "Getting 2636_Se_tu_fuggi_RDB.mei\n", - "\n", - "Processing file: 2637_T_amo_mia_vita_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2637, 'MEI_Name': '2637_T_amo_mia_vita_RDB.mei', 'Title': '\"T\\'amo, mia vita!\", la mia cara vita', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2637/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#200 Madrigali, A Cinque Voci. [libro quinto]', 'Source_Position': '20', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2636_Se_tu_fuggi_RDB.mei\n", + "Getting 2635_O_tenebroso_giorno_RDB.mei\n", + " Added specified static encodingDesc block to 2635_O_tenebroso_giorno_RDB.mei\n", + "Getting 2634b_Poiche_l_avida_sete_RDB.mei\n", + " Added specified static encodingDesc block to 2634b_Poiche_l_avida_sete_RDB.mei\n", + "Getting 2632_Tu_m_uccidi_RDB.mei\n", + " Added specified static encodingDesc block to 2632_Tu_m_uccidi_RDB.mei\n", + "Getting 2611b_Moro_e_mentre_sospiro_RDB.mei\n", + " Added specified static encodingDesc block to 2611b_Moro_e_mentre_sospiro_RDB.mei\n", + "Getting 2631_Asciugate_RDB.mei\n", + " Added specified static encodingDesc block to 2631_Asciugate_RDB.mei\n", "Getting 2637_T_amo_mia_vita_RDB.mei\n", - "\n", - "Processing file: 2538_Se_la_mia_morte_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2638, 'MEI_Name': '2538_Se_la_mia_morte_RDB.mei', 'Title': 'Se la mia morte brami', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2638/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '1', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2637_T_amo_mia_vita_RDB.mei\n", + "Getting 2605b_Io_tacero_RDB.mei\n", + " Added specified static encodingDesc block to 2605b_Io_tacero_RDB.mei\n", + "Getting 2607_Questa_crudele_RDB.mei\n", + " Added specified static encodingDesc block to 2607_Questa_crudele_RDB.mei\n", + "Getting 2618_Gioite_voi_RDB.mei\n", + " Added specified static encodingDesc block to 2618_Gioite_voi_RDB.mei\n", + "Getting 2609a_Cor_mio_deh_non_piangete_RDB.mei\n", + " Added specified static encodingDesc block to 2609a_Cor_mio_deh_non_piangete_RDB.mei\n", + "Error processing 2609a_Cor_mio_deh_non_piangete_RDB.mei: 'NoneType' object has no attribute 'get'\n", + "Getting 2609b_cor_mio_deh_non_piangete_RDB.mei\n", + " Added specified static encodingDesc block to 2609b_cor_mio_deh_non_piangete_RDB.mei\n", + "Getting 2633_Deh_coprite_RDB.mei\n", + " Added specified static encodingDesc block to 2633_Deh_coprite_RDB.mei\n", + "Getting 2610_Sparge_la_morte_RDB.mei\n", + " Added specified static encodingDesc block to 2610_Sparge_la_morte_RDB.mei\n", + "Getting 2608b_Or_che_in_gioia_RDB.mei\n", + " Added specified static encodingDesc block to 2608b_Or_che_in_gioia_RDB.mei\n", + "Getting 2606_Che_fai_meco_RDB.mei\n", + " Added specified static encodingDesc block to 2606_Che_fai_meco_RDB.mei\n", + "Getting 2611a_Moro_e_mentre_sospiro_RDB.mei\n", + " Added specified static encodingDesc block to 2611a_Moro_e_mentre_sospiro_RDB.mei\n", + "Getting 4793_Quandoridente_RDB.mei\n", + " Added specified static encodingDesc block to 4793_Quandoridente_RDB.mei\n", + "Error processing 4793_Quandoridente_RDB.mei: 'NoneType' object has no attribute 'get'\n", + "Getting 2629_O_voi_RDB.mei\n", + " Added specified static encodingDesc block to 2629_O_voi_RDB.mei\n", + "Getting 2630_Correte_amanti_RDB.mei\n", + " Added specified static encodingDesc block to 2630_Correte_amanti_RDB.mei\n", + "Getting 2655_Volan_quasi_farfalle_RDB.mei\n", + " Added specified static encodingDesc block to 2655_Volan_quasi_farfalle_RDB.mei\n", "Getting 2538_Se_la_mia_morte_RDB.mei\n", - "\n", - "Processing file: 2639_Belta_poi_che_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2639, 'MEI_Name': '2639_Belta_poi_che_RDB.mei', 'Title': \"Beltà, poi che t'assenti\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2639/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '2', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2639_Belta_poi_che_RDB.mei\n", - "\n", - "Processing file: 2640_Tu_segui_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2640, 'MEI_Name': '2640_Tu_segui_RDB.mei', 'Title': 'Tu segui, o bella Clori', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2640/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '3', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2640_Tu_segui_RDB.mei\n", - "\n", - "Processing file: 2641_Resta_di_darmi_noia_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2641, 'MEI_Name': '2641_Resta_di_darmi_noia_RDB.mei', 'Title': 'Resta di darmi noia', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2641/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '4', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2641_Resta_di_darmi_noia_RDB.mei\n", - "\n", - "Processing file: 2642_Chiaro_risplender_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2642, 'MEI_Name': '2642_Chiaro_risplender_RDB.mei', 'Title': 'Chiaro risplender suole', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2642/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '5', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2642_Chiaro_risplender_RDB.mei\n", - "\n", - "Processing file: 2643_Io_parto_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2643, 'MEI_Name': '2643_Io_parto_RDB.mei', 'Title': '\"Io parto\" e non più dissi, ché il dolore', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2643/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '6', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2643_Io_parto_RDB.mei\n", - "\n", - "Processing file: 2644_Mille_volte_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2644, 'MEI_Name': '2644_Mille_volte_RDB.mei', 'Title': 'Mille volte il dì moro', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2644/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '7', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2644_Mille_volte_RDB.mei\n", - "\n", - "Processing file: 2645_O_dolce_mio_tesoro_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2645, 'MEI_Name': '2645_O_dolce_mio_tesoro_RDB.mei', 'Title': 'O dolce mio tesoro', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2645/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '8', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2645_O_dolce_mio_tesoro_RDB.mei\n", - "\n", - "Processing file: 2646_Deh_come_invan_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2646, 'MEI_Name': '2646_Deh_come_invan_RDB.mei', 'Title': 'Deh, come invan sospiro', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2646/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '9', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2646_Deh_come_invan_RDB.mei\n", - "\n", - "Processing file: 2647_Io_pur_respiro_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2647, 'MEI_Name': '2647_Io_pur_respiro_RDB.mei', 'Title': 'Io pur respiro in così gran dolore', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2647/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '10', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2647_Io_pur_respiro_RDB.mei\n", - "Error processing 2647_Io_pur_respiro_RDB.mei: Blank needed here, line 1, column 38 (<string>, line 1)\n", - "\n", - "Processing file: 2648_Alme_d_Amor_rubelle_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2648, 'MEI_Name': '2648_Alme_d_Amor_rubelle_RDB.mei', 'Title': \"Alme d'Amor rubelle\", 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2648/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '11', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2648_Alme_d_Amor_rubelle_RDB.mei\n", - "\n", - "Processing file: 2649_Candido_e_verde_fiore_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2649, 'MEI_Name': '2649_Candido_e_verde_fiore_RDB.mei', 'Title': 'Candido e verde fiore', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2649/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '12', 'Source_Date': 1616.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2649_Candido_e_verde_fiore_RDB.mei\n", - "\n", - "Processing file: 2650_Ardita_zanzaretta_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2650, 'MEI_Name': '2650_Ardita_zanzaretta_RDB.mei', 'Title': 'Ardita zanzaretta', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2650/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '13', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2650_Ardita_zanzaretta_RDB.mei\n", - "\n", - "Processing file: 2651_Ardo_per_te_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2651, 'MEI_Name': '2651_Ardo_per_te_RDB.mei', 'Title': 'Ardo per te, mio bene', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2651/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '14', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2651_Ardo_per_te_RDB.mei\n", - "\n", - "Processing file: 2652_Ancide_sol_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2652, 'MEI_Name': '2652_Ancide_sol_RDB.mei', 'Title': 'Ancide sol la morte', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2652/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '15', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2652_Ancide_sol_RDB.mei\n", - "\n", - "Processing file: 2653_Quel_no_crudel_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2653, 'MEI_Name': '2653_Quel_no_crudel_RDB.mei', 'Title': 'Quel \"no\" crudel che la mia speme ancise', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2653/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '16', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2653_Quel_no_crudel_RDB.mei\n", - "\n", - "Processing file: 2654_Moro_lasso_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2654, 'MEI_Name': '2654_Moro_lasso_RDB.mei', 'Title': 'Moro, lasso, al mio duolo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2654/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '17', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2538_Se_la_mia_morte_RDB.mei\n", "Getting 2654_Moro_lasso_RDB.mei\n", - "\n", - "Processing file: 2655_Volan_quasi_farfalle_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2655, 'MEI_Name': '2655_Volan_quasi_farfalle_RDB.mei', 'Title': 'Volan quasi farfalle', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2655/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '18', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2655_Volan_quasi_farfalle_RDB.mei\n", - "\n", - "Processing file: 2656_Al_mio_gioir_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2656, 'MEI_Name': '2656_Al_mio_gioir_RDB.mei', 'Title': 'Al mio gioir il ciel si fa sereno', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2656/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '19', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2654_Moro_lasso_RDB.mei\n", + "Getting 4792_Giapiansi_RDB.mei\n", + "Error processing 4792_Giapiansi_RDB.mei: ID a1k8h3g already defined, line 1896, column 64 (<string>, line 1896)\n", "Getting 2656_Al_mio_gioir_RDB.mei\n", - "\n", - "Processing file: 2657_Tu_piangi_o_Fille_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2657, 'MEI_Name': '2657_Tu_piangi_o_Fille_RDB.mei', 'Title': 'Tu piangi, o Fille mia', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2657/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '20', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2656_Al_mio_gioir_RDB.mei\n", "Getting 2657_Tu_piangi_o_Fille_RDB.mei\n", - "\n", - "Processing file: 2658_Ancor_che_per_amarti_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2658, 'MEI_Name': '2658_Ancor_che_per_amarti_RDB.mei', 'Title': 'Ancor che per amarti io mi consumi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2658/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#202 Madrigali, A Cinque Voci. [libro sesto]', 'Source_Position': '21', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2657_Tu_piangi_o_Fille_RDB.mei\n", "Getting 2658_Ancor_che_per_amarti_RDB.mei\n", - "\n", - "Processing file: 2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2659, 'MEI_Name': '2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei', 'Title': 'In monte Oliveti. Feria V. In Coena Domini. In j. Noct. - Resp. I', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2659/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '1', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei\n", - "\n", - "Processing file: 2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2660, 'MEI_Name': '2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei', 'Title': 'Tristis est anima mea. Feria V. In Coena Domini. In j. Noct. - Resp. II', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2660/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '2', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei\n", - "\n", - "Processing file: 2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2661, 'MEI_Name': '2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei', 'Title': 'Ecce vidimus eum. Feria V. In Coena Domini. In j. Noct. - Resp. III', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2661/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '3', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei\n", - "\n", - "Processing file: 2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2662, 'MEI_Name': '2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei', 'Title': 'Amicus meus osculi me. Feria V. In Coena Domini. In ij. Noct. - Resp. IV', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2662/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '4', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei\n", - "\n", - "Processing file: 2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2663, 'MEI_Name': '2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei', 'Title': 'Iudas mercator pessimus. Feria V. In Coena Domini. In ij. Noct. - Resp. V', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2663/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '5', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2658_Ancor_che_per_amarti_RDB.mei\n", + "Getting 2625_Se_vi_duol_RDB.mei\n", + " Added specified static encodingDesc block to 2625_Se_vi_duol_RDB.mei\n", + "Getting 2644_Mille_volte_RDB.mei\n", + " Added specified static encodingDesc block to 2644_Mille_volte_RDB.mei\n", + "Getting 2647_Io_pur_respiro_RDB_bb3U6AP.mei\n", + " Added specified static encodingDesc block to 2647_Io_pur_respiro_RDB_bb3U6AP.mei\n", + "Error processing 2647_Io_pur_respiro_RDB_bb3U6AP.mei: 'NoneType' object has no attribute 'get'\n", + "Getting 2646_Deh_come_invan_RDB.mei\n", + " Added specified static encodingDesc block to 2646_Deh_come_invan_RDB.mei\n", + "Getting 2639_Belta_poi_che_RDB.mei\n", + " Added specified static encodingDesc block to 2639_Belta_poi_che_RDB.mei\n", + "Getting 2642_Chiaro_risplender_RDB.mei\n", + " Added specified static encodingDesc block to 2642_Chiaro_risplender_RDB.mei\n", + "Getting 2641_Resta_di_darmi_noia_RDB.mei\n", + " Added specified static encodingDesc block to 2641_Resta_di_darmi_noia_RDB.mei\n", + "Getting 2648_Alme_d_Amor_rubelle_RDB.mei\n", + " Added specified static encodingDesc block to 2648_Alme_d_Amor_rubelle_RDB.mei\n", + "Getting 2645_O_dolce_mio_tesoro_RDB.mei\n", + " Added specified static encodingDesc block to 2645_O_dolce_mio_tesoro_RDB.mei\n", + "Getting 2643_Io_parto_RDB.mei\n", + " Added specified static encodingDesc block to 2643_Io_parto_RDB.mei\n", + "Getting 2640_Tu_segui_RDB.mei\n", + " Added specified static encodingDesc block to 2640_Tu_segui_RDB.mei\n", + "Getting 2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei\n", + " Added specified static encodingDesc block to 2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei\n", + "Getting 2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei\n", + " Added specified static encodingDesc block to 2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei\n", + "Getting 2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei\n", + " Added specified static encodingDesc block to 2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei\n", + "Getting 2651_Ardo_per_te_RDB.mei\n", + " Added specified static encodingDesc block to 2651_Ardo_per_te_RDB.mei\n", + "Getting 2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei\n", + " Added specified static encodingDesc block to 2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei\n", "Getting 2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei\n", - "\n", - "Processing file: 2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2665, 'MEI_Name': '2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei', 'Title': 'Eram quasi agnus innocens. Feria V. In Coena Domini. In iij. Noct. - Resp. VII', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2665/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '7', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei\n", - "\n", - "Processing file: 2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2666, 'MEI_Name': '2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei', 'Title': 'Una hora non potuistis. Feria V. In Coena Domini. In iij. Noct. - Resp. VIII', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2666/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '8', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei\n", - "\n", - "Processing file: 2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2667, 'MEI_Name': '2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei', 'Title': 'Seniores populi consilium. Feria V. In Coena Domini. In iij. Noct. - Resp. IX', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2667/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '9', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei\n", - "\n", - "Processing file: 2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2668, 'MEI_Name': '2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei', 'Title': 'Omnes amici mei. Feria VI. In Parasceve. In j. Noct. - Resp. I', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2668/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '10', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei\n", - "\n", - "Processing file: 2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2669, 'MEI_Name': '2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei', 'Title': 'Velum templi scissum est. Feria VI. In Parasceve. In j. Noct. - Resp. II', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2669/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '11', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei\n", + "Getting 2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei\n", + " Added specified static encodingDesc block to 2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei\n", + "Getting 2653_Quel_no_crudel_RDB.mei\n", + " Added specified static encodingDesc block to 2653_Quel_no_crudel_RDB.mei\n", + "Getting 4779_Settimo_tono_RDB.mei\n", + "Error processing 4779_Settimo_tono_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", + "Getting 4778_Undecimo_tono_RDB.mei\n", + "Error processing 4778_Undecimo_tono_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", + "Getting 2730a_Canzon_francese_del_Principe_dim_def_RDB.mei\n", + "Error processing 2730a_Canzon_francese_del_Principe_dim_def_RDB.mei: ID m-2389 already defined, line 3258, column 62 (<string>, line 3258)\n", + "Getting 4780_Duedecimo_tono_RDB.mei\n", + "Error processing 4780_Duedecimo_tono_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", + "Getting 2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei\n", + " Added specified static encodingDesc block to 2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei\n", + "Getting 2652_Ancide_sol_RDB.mei\n", + " Added specified static encodingDesc block to 2652_Ancide_sol_RDB.mei\n", + "Getting 2649_Candido_e_verde_fiore_RDB.mei\n", + " Added specified static encodingDesc block to 2649_Candido_e_verde_fiore_RDB.mei\n", + "Getting 2727_All_ombra_degli_allori_RDB.mei\n", + " Added specified static encodingDesc block to 2727_All_ombra_degli_allori_RDB.mei\n", + "Getting 2728_Come_vivi_cor_mio_RDB.mei\n", + " Added specified static encodingDesc block to 2728_Come_vivi_cor_mio_RDB.mei\n", + "Getting 2726_Ne_reminiscaris_RDB.mei\n", + " Added specified static encodingDesc block to 2726_Ne_reminiscaris_RDB.mei\n", + "Getting 2650_Ardita_zanzaretta_RDB.mei\n", + " Added specified static encodingDesc block to 2650_Ardita_zanzaretta_RDB.mei\n", + "Getting 2729_In_te_Domine_speravi_RDB.mei\n", + " Added specified static encodingDesc block to 2729_In_te_Domine_speravi_RDB.mei\n", + "Error processing 2729_In_te_Domine_speravi_RDB.mei: 'NoneType' object has no attribute 'get'\n", + "Getting 2731_Gagliarda_del_Principe_di_Venosa_RDB.mei\n", + " Added specified static encodingDesc block to 2731_Gagliarda_del_Principe_di_Venosa_RDB.mei\n", + "Getting 2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei\n", + " Added specified static encodingDesc block to 2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei\n", "Getting 2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei\n", - "\n", - "Processing file: 2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2670, 'MEI_Name': '2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei', 'Title': 'Vinea mea electa. Feria VI. In Parasceve. In j. Noct. - Resp. III', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2670/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '12', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei\n", - "\n", - "Processing file: 2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2671, 'MEI_Name': '2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei', 'Title': 'Tamquam ad latronem. Feria VI. In Parasceve. In ij. Noct. - Resp. IV', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2671/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '13', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei\n", - "\n", - "Processing file: 2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2672, 'MEI_Name': '2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei', 'Title': 'Tenebræ factæ sunt. Feria VI. In Parasceve. In ij. Noct. - Resp. V', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2672/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '14', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei\n", + "Getting 2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei\n", + " Added specified static encodingDesc block to 2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei\n", "Getting 2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei\n", - "\n", - "Processing file: 2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2673, 'MEI_Name': '2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei', 'Title': 'Animam meam dilectam. Feria VI. In Parasceve. In ij. Noct. - Resp. VI', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2673/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '15', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei\n", + "Getting 2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei\n", + " Added specified static encodingDesc block to 2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei\n", + "Getting 2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei\n", + " Added specified static encodingDesc block to 2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei\n", + "Getting 2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei\n", + " Added specified static encodingDesc block to 2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei\n", "Getting 2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei\n", - "\n", - "Processing file: 2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2674, 'MEI_Name': '2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei', 'Title': 'Tradiderunt me in manus. Feria VI. In Parasceve. In iij. Noct. - Resp. VII', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2674/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '16', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei\n", "Getting 2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei\n", - "\n", - "Processing file: 2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2675, 'MEI_Name': '2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei', 'Title': 'Iesum tradidit impius. Feria VI. In Parasceve. In iij. Noct. - Resp. VIII', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2675/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '17', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei\n", - "\n", - "Processing file: 2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2676, 'MEI_Name': '2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei', 'Title': 'Caligaverunt oculi mei. Feria VI. In Parasceve. In iij. Noct. - Resp. IX', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2676/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '18', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei\n", - "\n", - "Processing file: 2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2677, 'MEI_Name': '2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei', 'Title': 'Sicut ovis ad occisionem. Sabbati Sancti. In j. Noct. - Resp. I', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2677/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '19', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei\n", - "\n", - "Processing file: 2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2678, 'MEI_Name': '2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei', 'Title': 'Ierusalem iuge. Sabbati Sancti. In j. Noct. - Resp. II', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2678/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '20', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei\n", - "\n", - "Processing file: 2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2679, 'MEI_Name': '2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei', 'Title': 'Plange quasi virgo. Sabbati Sancti. In j. Noct. - Resp. III', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2679/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '21', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei\n", - "\n", - "Processing file: 2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2680, 'MEI_Name': '2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei', 'Title': 'Recessit pastor noster. Sabbati Sancti. In ij. Noct. - Resp. IV', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2680/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '22', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei\n", - "\n", - "Processing file: 2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2681, 'MEI_Name': '2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei', 'Title': 'O vos omnes. Sabbati Sancti. In ij. Noct. - Resp. V', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2681/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '23', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei\n", - "\n", - "Processing file: 2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2682, 'MEI_Name': '2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei', 'Title': 'Ecce quomodo moritur istus. Sabbati Sancti. In ij. Noct. - Resp. VI', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2682/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '24', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei\n", - "\n", - "Processing file: 2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2683, 'MEI_Name': '2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei', 'Title': 'Astiterunt reges terræ. Sabbati Sancti. In iij. Noct. - Resp. VII', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2683/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '25', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei\n", - "\n", - "Processing file: 2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2684, 'MEI_Name': '2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei', 'Title': 'Æstimatus sum cum descendentibus. Sabbati Sancti. In iij. Noct. - Resp. VIII', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2684/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '26', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei\n", - "\n", - "Processing file: 2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2685, 'MEI_Name': '2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei', 'Title': 'Sepulto Domino. Sabbati Sancti. In iij. Noct. - Resp. IX', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2685/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '27', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei\n", - "\n", - "Processing file: 2686_Benedictus_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2686, 'MEI_Name': '2686_Benedictus_RDB.mei', 'Title': 'Benedictus', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2686/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '28', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei\n", + "Getting 2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei\n", + " Added specified static encodingDesc block to 2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei\n", + "Getting 2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei\n", + " Added specified static encodingDesc block to 2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei\n", "Getting 2686_Benedictus_RDB.mei\n", - "\n", - "Processing file: 2687_Miserere_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2687, 'MEI_Name': '2687_Miserere_RDB.mei', 'Title': 'Miserere', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2687/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '29', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2686_Benedictus_RDB.mei\n", + "Getting 2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei\n", + " Added specified static encodingDesc block to 2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei\n", + "Getting 2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei\n", + " Added specified static encodingDesc block to 2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei\n", + "Getting 2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei\n", + " Added specified static encodingDesc block to 2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei\n", "Getting 2687_Miserere_RDB.mei\n", - "\n", - "Processing file: 2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2664, 'MEI_Name': '2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei', 'Title': 'Unus ex discipulis meis. Feria V. In Coena Domini. In ij. Noct. - Resp. VI', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2664/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#206 Responsoria, A Sei Voci', 'Source_Position': '6', 'Source_Date': 1611.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2687_Miserere_RDB.mei\n", + "Getting 2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei\n", + " Added specified static encodingDesc block to 2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei\n", + "Getting 2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei\n", + " Added specified static encodingDesc block to 2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei\n", + "Getting 2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei\n", + " Added specified static encodingDesc block to 2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei\n", "Getting 2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei\n", - "\n", - "Processing file: 1369_Ave_regina_cœlorum_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 1369, 'MEI_Name': '1369_Ave_regina_cœlorum_RDB.mei', 'Title': 'Ave regina caelorum [053]', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/1369/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '1', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 1369_Ave_regina_cœlorum_RDB.mei\n", - "\n", - "Processing file: 2688_Venit_lumen_tuum_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2688, 'MEI_Name': '2688_Venit_lumen_tuum_RDB.mei', 'Title': 'Venit lumen tuum', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2688/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '2', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2688_Venit_lumen_tuum_RDB.mei\n", - "\n", - "Processing file: 2689_Ave_dulcissima_Maria_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2689, 'MEI_Name': '2689_Ave_dulcissima_Maria_RDB.mei', 'Title': 'Ave dulcissima Maria', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2689/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '3', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2689_Ave_dulcissima_Maria_RDB.mei\n", - "\n", - "Processing file: 2690_Reminiscere_miserationum_tuarum_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2690, 'MEI_Name': '2690_Reminiscere_miserationum_tuarum_RDB.mei', 'Title': 'Reminiscere miserationum tuarum', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2690/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '4', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2690_Reminiscere_miserationum_tuarum_RDB.mei\n", - "\n", - "Processing file: 2691_Dignare_me_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2691, 'MEI_Name': '2691_Dignare_me_RDB.mei', 'Title': 'Dignare me laudare te', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2691/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '5', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2691_Dignare_me_RDB.mei\n", - "\n", - "Processing file: 2692_Sancti_Spiritus_Domine_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2692, 'MEI_Name': '2692_Sancti_Spiritus_Domine_RDB.mei', 'Title': 'Sancti Spiritus Domine', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2692/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '6', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei\n", + "Getting 2718_Verba_mea_RDB.mei\n", + " Added specified static encodingDesc block to 2718_Verba_mea_RDB.mei\n", + "Getting 2697_O_vos_omnes_qui_transitis_RDB.mei\n", + " Added specified static encodingDesc block to 2697_O_vos_omnes_qui_transitis_RDB.mei\n", + "Getting 2695_Laboravi_in_gemitu_meo_RDB.mei\n", + " Added specified static encodingDesc block to 2695_Laboravi_in_gemitu_meo_RDB.mei\n", "Getting 2692_Sancti_Spiritus_Domine_RDB.mei\n", - "\n", - "Processing file: 2693_Domine_ne_despicias_deprecationem_meam_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2693, 'MEI_Name': '2693_Domine_ne_despicias_deprecationem_meam_RDB.mei', 'Title': 'Domine ne despicias', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2693/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '7', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2692_Sancti_Spiritus_Domine_RDB.mei\n", + "Getting 2698_Exaudi_Deus_deprecationem_meam_RDB.mei\n", + " Added specified static encodingDesc block to 2698_Exaudi_Deus_deprecationem_meam_RDB.mei\n", "Getting 2693_Domine_ne_despicias_deprecationem_meam_RDB.mei\n", - "\n", - "Processing file: 2694_Hei_mihi_Domine_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2694, 'MEI_Name': '2694_Hei_mihi_Domine_RDB.mei', 'Title': 'Hei mihi Domine', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2694/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '8', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2693_Domine_ne_despicias_deprecationem_meam_RDB.mei\n", "Getting 2694_Hei_mihi_Domine_RDB.mei\n", - "\n", - "Processing file: 2695_Laboravi_in_gemitu_meo_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2695, 'MEI_Name': '2695_Laboravi_in_gemitu_meo_RDB.mei', 'Title': 'Laboravi in gemitu meo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2695/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '9', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2695_Laboravi_in_gemitu_meo_RDB.mei\n", - "\n", - "Processing file: 2696_Peccantem_me_quotidie_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2696, 'MEI_Name': '2696_Peccantem_me_quotidie_RDB.mei', 'Title': 'Peccantem me quotidie', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2696/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '10', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2696_Peccantem_me_quotidie_RDB.mei\n", - "\n", - "Processing file: 2697_O_vos_omnes_qui_transitis_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2697, 'MEI_Name': '2697_O_vos_omnes_qui_transitis_RDB.mei', 'Title': 'O vos omnes qui transitis', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2697/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '11', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2697_O_vos_omnes_qui_transitis_RDB.mei\n", - "\n", - "Processing file: 2698_Exaudi_Deus_deprecationem_meam_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2698, 'MEI_Name': '2698_Exaudi_Deus_deprecationem_meam_RDB.mei', 'Title': 'Exaudi Deus deprecationem meam', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2698/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '12', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2698_Exaudi_Deus_deprecationem_meam_RDB.mei\n", - "\n", - "Processing file: 2699_Precibus_et_meritis_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2699, 'MEI_Name': '2699_Precibus_et_meritis_RDB.mei', 'Title': 'Precibus et meritis', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2699/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '13', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2694_Hei_mihi_Domine_RDB.mei\n", "Getting 2699_Precibus_et_meritis_RDB.mei\n", - "\n", - "Processing file: 2700_O_crux_benedicta_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2700, 'MEI_Name': '2700_O_crux_benedicta_RDB.mei', 'Title': 'O crux benedicta', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2700/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '14', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2700_O_crux_benedicta_RDB.mei\n", - "\n", - "Processing file: 2701_Tribularer_si_nescirem_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2701, 'MEI_Name': '2701_Tribularer_si_nescirem_RDB.mei', 'Title': 'Tribularer si nescirem', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2701/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '15', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2701_Tribularer_si_nescirem_RDB.mei\n", - "\n", - "Processing file: 2702_Deus_refugium_et_virtus_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2702, 'MEI_Name': '2702_Deus_refugium_et_virtus_RDB.mei', 'Title': 'Deus refugium et virtus', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2702/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '16', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2699_Precibus_et_meritis_RDB.mei\n", + "Getting 2690_Reminiscere_miserationum_tuarum_RDB.mei\n", + " Added specified static encodingDesc block to 2690_Reminiscere_miserationum_tuarum_RDB.mei\n", + "Getting 2696_Peccantem_me_quotidie_RDB.mei\n", + " Added specified static encodingDesc block to 2696_Peccantem_me_quotidie_RDB.mei\n", + "Getting 2691_Dignare_me_RDB.mei\n", + " Added specified static encodingDesc block to 2691_Dignare_me_RDB.mei\n", + "Getting 2689_Ave_dulcissima_Maria_RDB.mei\n", + " Added specified static encodingDesc block to 2689_Ave_dulcissima_Maria_RDB.mei\n", + "Getting 2704_Illumina_faciem_tuam_RDB.mei\n", + " Added specified static encodingDesc block to 2704_Illumina_faciem_tuam_RDB.mei\n", + "Getting 2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei\n", + " Added specified static encodingDesc block to 2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei\n", + "Getting 2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei\n", + " Added specified static encodingDesc block to 2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei\n", "Getting 2702_Deus_refugium_et_virtus_RDB.mei\n", - "\n", - "Processing file: 2703_Tribulationem_et_dolorem_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2703, 'MEI_Name': '2703_Tribulationem_et_dolorem_RDB.mei', 'Title': 'Tribulationem et dolorem', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2703/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '17', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2702_Deus_refugium_et_virtus_RDB.mei\n", + "Getting 2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei\n", + " Added specified static encodingDesc block to 2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei\n", "Getting 2703_Tribulationem_et_dolorem_RDB.mei\n", - "\n", - "Processing file: 2704_Illumina_faciem_tuam_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2704, 'MEI_Name': '2704_Illumina_faciem_tuam_RDB.mei', 'Title': 'Illumina faciem tuam', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2704/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '18', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2704_Illumina_faciem_tuam_RDB.mei\n", - "\n", - "Processing file: 2705_Maria_Mater_gratiæ_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2705, 'MEI_Name': '2705_Maria_Mater_gratiæ_RDB.mei', 'Title': 'Maria Mater gratiæ', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2705/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#208 Sacrae Cantiones, A Cinque Voci. [libro primo]', 'Source_Position': '19', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2705_Maria_Mater_gratiæ_RDB.mei\n", - "\n", - "Processing file: 2706_Virgo_benedicta_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2706, 'MEI_Name': '2706_Virgo_benedicta_RDB.mei', 'Title': 'Virgo benedicta', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2706/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '1', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Roma', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2706_Virgo_benedicta_RDB.mei\n", - "\n", - "Processing file: 2708_Sana_me_Domine_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2708, 'MEI_Name': '2708_Sana_me_Domine_RDB.mei', 'Title': 'Sana me domine', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2708/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '3', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Napoli', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2703_Tribulationem_et_dolorem_RDB.mei\n", + "Getting 2688_Venit_lumen_tuum_RDB.mei\n", + " Added specified static encodingDesc block to 2688_Venit_lumen_tuum_RDB.mei\n", + "Getting 2701_Tribularer_si_nescirem_RDB.mei\n", + " Added specified static encodingDesc block to 2701_Tribularer_si_nescirem_RDB.mei\n", + "Getting 2716_Veni_sponsa_Christi_RDB.mei\n", + " Added specified static encodingDesc block to 2716_Veni_sponsa_Christi_RDB.mei\n", + "Getting 2725_Illumina_nos_RDB.mei\n", + " Added specified static encodingDesc block to 2725_Illumina_nos_RDB.mei\n", + "Getting 2715_Adoramus_te_RDB.mei\n", + " Added specified static encodingDesc block to 2715_Adoramus_te_RDB.mei\n", + "Getting 2717_Assumpta es Maria_RDB.mei\n", + "Error processing 2717_Assumpta es Maria_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", "Getting 2708_Sana_me_Domine_RDB.mei\n", - "\n", - "Processing file: 2709_Ave_sanctissima_Maria_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2709, 'MEI_Name': '2709_Ave_sanctissima_Maria_RDB.mei', 'Title': 'Ave sanctissima Maria', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2709/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '4', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2709_Ave_sanctissima_Maria_RDB.mei\n", - "\n", - "Processing file: 2710_O_Oriens_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2710, 'MEI_Name': '2710_O_Oriens_RDB.mei', 'Title': 'O Oriens', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2710/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '5', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2708_Sana_me_Domine_RDB.mei\n", "Getting 2710_O_Oriens_RDB.mei\n", - "\n", - "Processing file: 2711_Discedite_a_me_omnes_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2711, 'MEI_Name': '2711_Discedite_a_me_omnes_RDB.mei', 'Title': 'Discedite a me omnes', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2711/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '6', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2710_O_Oriens_RDB.mei\n", + "Getting 2714_O_sacrum_convivium_RDB.mei\n", + " Added specified static encodingDesc block to 2714_O_sacrum_convivium_RDB.mei\n", + "Getting 2713_Veni_Creator_Spiritus_RDB.mei\n", + " Added specified static encodingDesc block to 2713_Veni_Creator_Spiritus_RDB.mei\n", "Getting 2711_Discedite_a_me_omnes_RDB.mei\n", - "\n", - "Processing file: 2712_Gaudeamus_omnes_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2712, 'MEI_Name': '2712_Gaudeamus_omnes_RDB.mei', 'Title': 'Gaudeamus omnes', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2712/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '7', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2711_Discedite_a_me_omnes_RDB.mei\n", + "Getting 2707_Da_pacem_domine_RDB.mei\n", + " Added specified static encodingDesc block to 2707_Da_pacem_domine_RDB.mei\n", "Getting 2712_Gaudeamus_omnes_RDB.mei\n", - "\n", - "Processing file: 2713_Veni_Creator_Spiritus_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2713, 'MEI_Name': '2713_Veni_Creator_Spiritus_RDB.mei', 'Title': 'Veni Creator Spiritus', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2713/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '8', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2713_Veni_Creator_Spiritus_RDB.mei\n", - "\n", - "Processing file: 2714_O_sacrum_convivium_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2714, 'MEI_Name': '2714_O_sacrum_convivium_RDB.mei', 'Title': 'O sacrum convivium', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2714/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '9', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2714_O_sacrum_convivium_RDB.mei\n", - "\n", - "Processing file: 2715_Adoramus_te_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2715, 'MEI_Name': '2715_Adoramus_te_RDB.mei', 'Title': 'Adoramus te Christe', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2715/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '10', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2715_Adoramus_te_RDB.mei\n", - "\n", - "Processing file: 2716_Veni_sponsa_Christi_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2716, 'MEI_Name': '2716_Veni_sponsa_Christi_RDB.mei', 'Title': 'Veni sponsa Christi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2716/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '11', 'Source_Date': 1603.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2716_Veni_sponsa_Christi_RDB.mei\n", - "\n", - "Processing file: 2718_Verba_mea_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2718, 'MEI_Name': '2718_Verba_mea_RDB.mei', 'Title': 'Verba mea', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2718/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '13', 'Source_Date': 1618.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2718_Verba_mea_RDB.mei\n", - "\n", - "Processing file: 2719_Ardens_est_cor_meum_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2719, 'MEI_Name': '2719_Ardens_est_cor_meum_RDB.mei', 'Title': 'Ardens est cor meum', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2719/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '14', 'Source_Date': 1618.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2719_Ardens_est_cor_meum_RDB.mei\n", - "\n", - "Processing file: 2720_Ne_derelinquas_me_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2720, 'MEI_Name': '2720_Ne_derelinquas_me_RDB.mei', 'Title': 'Ne derelinquas me', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2720/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '15', 'Source_Date': 1620.0, 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2720_Ne_derelinquas_me_RDB.mei\n", - "\n", - "Processing file: 2722_Ad_te_levavi_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2722, 'MEI_Name': '2722_Ad_te_levavi_RDB.mei', 'Title': 'Ad te levavi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2722/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '17', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2712_Gaudeamus_omnes_RDB.mei\n", + "Getting 2709_Ave_sanctissima_Maria_RDB.mei\n", + " Added specified static encodingDesc block to 2709_Ave_sanctissima_Maria_RDB.mei\n", + "Getting 2706_Virgo_benedicta_RDB.mei\n", + " Added specified static encodingDesc block to 2706_Virgo_benedicta_RDB.mei\n", "Getting 2722_Ad_te_levavi_RDB.mei\n", - "\n", - "Processing file: 2724_O_anima_sanctissima_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2724, 'MEI_Name': '2724_O_anima_sanctissima_RDB.mei', 'Title': 'O anima sanctissima', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2724/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '19', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2724_O_anima_sanctissima_RDB.mei\n", - "\n", - "Processing file: 2725_Illumina_nos_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2725, 'MEI_Name': '2725_Illumina_nos_RDB.mei', 'Title': 'Illumina nos', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2725/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '20', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2725_Illumina_nos_RDB.mei\n", - "\n", - "Processing file: 2614b_Ecco_moriro_dunque_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2614, 'MEI_Name': '2614b_Ecco_moriro_dunque_RDB.mei', 'Title': 'Ecco, morirò dunque', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2614/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#199 Madrigali, A Cinque Voci. [libro quarto]', 'Source_Position': '12', 'Source_Date': 1614.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2614b_Ecco_moriro_dunque_RDB.mei\n", - "\n", - "Processing file: 2560_Madonna_io_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2560, 'MEI_Name': '2560_Madonna_io_RDB.mei', 'Title': 'Madonna, io ben vorrei che fusse in voi', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2560/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#198 Madrigali, A Cinque Voci. [libro primo], Baldini, 1594', 'Source_Position': '2', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Ferrara', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2560_Madonna_io_RDB.mei\n", - "\n", - "Processing file: 2577b_Se_cosi_dolce_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2577, 'MEI_Name': '2577b_Se_cosi_dolce_RDB.mei', 'Title': 'Se così dolce è il duolo', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2577/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#201 Madrigali, A Cinque Voci. [libro secondo], Baldini, 1594', 'Source_Position': '5', 'Source_Date': 1594.0, 'Source_Country': 'Italy', 'Source_City': 'Venezia', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2577b_Se_cosi_dolce_RDB.mei\n", - "\n", - "Processing file: 2707_Da_pacem_domine_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2707, 'MEI_Name': '2707_Da_pacem_domine_RDB.mei', 'Title': 'Da pacem domine', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2707/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '2', 'Source_Date': 1603.0, 'Source_Country': 'Italy', 'Source_City': 'Roma', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 2707_Da_pacem_domine_RDB.mei\n", - "\n", - "Processing file: 2717_Assumpta es Maria_RDB.mei\n", - "Metadata dictionary for this file: None\n", - "Getting 2717_Assumpta es Maria_RDB.mei\n", - "Error processing 2717_Assumpta es Maria_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", - "\n", - "Processing file: 2721_O_Beata_Mater_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2721, 'MEI_Name': '2721_O_Beata_Mater_RDB.mei', 'Title': 'O Beata Mater', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2721/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '16', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + " Added specified static encodingDesc block to 2722_Ad_te_levavi_RDB.mei\n", + "Getting 2705_Maria_Mater_gratiæ_RDB.mei\n", + " Added specified static encodingDesc block to 2705_Maria_Mater_gratiæ_RDB.mei\n", "Getting 2721_O_Beata_Mater_RDB.mei\n", "Error processing 2721_O_Beata_Mater_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", - "\n", - "Processing file: 2723_Franciscus_humilis_et_pauper_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 2723, 'MEI_Name': '2723_Franciscus_humilis_et_pauper_RDB.mei', 'Title': 'Franciscus humilis et pauper', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/works/2723/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#209 Sacrae Cantiones, A Sei Voci. [libro primo]', 'Source_Position': '18', 'Source_Date': '', 'Source_Country': '', 'Source_City': '', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", + "Getting 2720_Ne_derelinquas_me_RDB.mei\n", + " Added specified static encodingDesc block to 2720_Ne_derelinquas_me_RDB.mei\n", "Getting 2723_Franciscus_humilis_et_pauper_RDB.mei\n", "Error processing 2723_Franciscus_humilis_et_pauper_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", - "\n", - "Processing file: 4780_Duedecimo_tono_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 4780, 'MEI_Name': '4780_Duedecimo_tono_RDB.mei', 'Title': '[Ricercar] Duedecimo Tono', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4780/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque', 'Source_Position': '19', 'Source_Date': 1586.0, 'Source_Country': 'Italy', 'Source_City': 'Roma', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 4780_Duedecimo_tono_RDB.mei\n", - "Error processing 4780_Duedecimo_tono_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", - "\n", - "Processing file: 4779_Settimo_tono_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 4779, 'MEI_Name': '4779_Settimo_tono_RDB.mei', 'Title': '[Ricercar] Settimo Tono', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4779/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque', 'Source_Position': '18', 'Source_Date': 1586.0, 'Source_Country': 'Italy', 'Source_City': 'Roma', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 4779_Settimo_tono_RDB.mei\n", - "Error processing 4779_Settimo_tono_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", - "\n", - "Processing file: 4778_Undecimo_tono_RDB.mei\n", - "Metadata dictionary for this file: {'RDL_ID': 4778, 'MEI_Name': '4778_Undecimo_tono_RDB.mei', 'Title': '[Ricercar] Undecimo Tono', 'Permalink': 'https://ricercardatalab.cesr.univ-tours.fr/en/works/4778/', 'Composer_Name': '#265 Carlo Gesualdo', 'Composer_VIAF': 'https://viaf.org/fr/viaf/305913142', 'Composer_BNF_ID': 'https://data.bnf.fr/fr/ark:/12148/cb13894418z', 'Source_Title': '#207 Ricercate et Canzoni Francese, A Quattro Voci, di Giovanni De Macque', 'Source_Position': '17', 'Source_Date': 1586.0, 'Source_Country': 'Italy', 'Source_City': 'Roma', 'Editor': 'Vincent Besson - Project manager | Augustin Braud - Collaborative work | Hyacinthe Belliot - Data collector | Max Blistain - Student work', 'Editor_ORCID': 'https://orcid.org/0000-0001-5618-8602 | https://orcid.org/0000-0002-2367-7706 | https://orcid.org/0000-0001-9631-8424 | ', 'Publisher': '', 'Genre': '', 'CRIM_ID': '', 'CRIM_Person_ID': '', 'Mass Title': '', 'Piece_Date': '', 'Source_Short_Title': '', 'Source_Title.1': '', 'Source_Publisher_1': '', 'Source_Date.1': '', 'Source_Reference': '', 'Source_Location': '', 'Source_Institution': '', 'Source_Shelfmark': '', 'Editor.1': '', 'Last_Revised': '', 'Rights_Statement': '', 'Copyright_Owner': ''}\n", - "Getting 4778_Undecimo_tono_RDB.mei\n", - "Error processing 4778_Undecimo_tono_RDB.mei: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte\n", - "\n", - "Metadata update process completed.\n" + "Getting 2724_O_anima_sanctissima_RDB.mei\n", + " Added specified static encodingDesc block to 2724_O_anima_sanctissima_RDB.mei\n", + "Getting 2719_Ardens_est_cor_meum_RDB.mei\n", + " Added specified static encodingDesc block to 2719_Ardens_est_cor_meum_RDB.mei\n", + "Getting 2700_O_crux_benedicta_RDB.mei\n", + " Added specified static encodingDesc block to 2700_O_crux_benedicta_RDB.mei\n", + "Getting 1369_Ave_regina_cœlorum_RDB.mei\n", + " Added specified static encodingDesc block to 1369_Ave_regina_cœlorum_RDB.mei\n" + ] + } + ] + }, + { + "cell_type": "code", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "f83a219b", + "outputId": "c16b5a49-af2f-4656-8263-85fe78820626" + }, + "source": [ + "import os\n", + "import glob\n", + "import re\n", + "\n", + "output_folder = \"/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output\" # Define output_folder\n", + "\n", + "# Define the tag to look for\n", + "target_tag = \"<music\" # Looking for the start of the music tag\n", + "\n", + "# Get list of MEI files from the output folder\n", + "mei_files_in_output = glob.glob(os.path.join(output_folder, '*.mei'))\n", + "print(f\"Found {len(mei_files_in_output)} MEI files in {output_folder}\")\n", + "\n", + "# Process each MEI file\n", + "for mei_file_path in mei_files_in_output:\n", + " print(f\"Processing {os.path.basename(mei_file_path)}...\")\n", + " try:\n", + " # Read the file as plain text\n", + " with open(mei_file_path, 'r', encoding='utf-8') as f:\n", + " mei_content = f.read()\n", + "\n", + " # Find the index of the target tag\n", + " tag_index = mei_content.find(target_tag)\n", + "\n", + " if tag_index != -1:\n", + " # Find the index of the character right before the tag\n", + " check_index = tag_index - 1\n", + "\n", + " # Find the start of the potential blank line/whitespace before the tag\n", + " whitespace_start = tag_index\n", + " while whitespace_start > 0 and mei_content[whitespace_start - 1].isspace():\n", + " whitespace_start -= 1\n", + "\n", + " # Extract the whitespace before the tag\n", + " whitespace_before_tag = mei_content[whitespace_start:tag_index]\n", + "\n", + " # Check if the whitespace is not just a single newline (potentially with other whitespace)\n", + " # We want to replace any sequence of whitespace before the tag with a single newline.\n", + " # A more robust way is to find the last newline before the tag_index.\n", + " last_newline_before_tag = mei_content.rfind('\\n', 0, tag_index)\n", + "\n", + " # If the last character before the tag is not a newline, or if there's more than one newline/whitespace block\n", + " # before the tag, we need to normalize.\n", + " # The simplest normalization is to remove all whitespace before the tag and insert one newline.\n", + " if whitespace_before_tag.strip() != \"\": # If there is any non-newline whitespace\n", + " print(f\" Normalizing whitespace before <music in {os.path.basename(mei_file_path)}.\")\n", + " new_content = mei_content[:whitespace_start] + '\\n' + mei_content[tag_index:]\n", + " # Save the modified content back to the file\n", + " with open(mei_file_path, 'w', encoding='utf-8') as f:\n", + " f.write(new_content)\n", + " print(f\" Successfully normalized whitespace in {os.path.basename(mei_file_path)}\")\n", + "\n", + " elif not whitespace_before_tag or '\\n' not in whitespace_before_tag or whitespace_before_tag.count('\\n') > 1 or whitespace_before_tag.strip() != '':\n", + " # If there's no whitespace, or no newline, or more than one newline, or whitespace that's not just newlines\n", + " # Find the position right before the music tag begins.\n", + " insertion_point = tag_index - len(whitespace_before_tag) # Start of the existing whitespace\n", + "\n", + " # Construct new content: content before whitespace + single newline + music tag and after\n", + " new_content = mei_content[:insertion_point] + '\\n' + mei_content[tag_index:]\n", + "\n", + " # Check if a change was actually made\n", + " if new_content != mei_content:\n", + " print(f\" Normalizing line break before <music in {os.path.basename(mei_file_path)} to a single newline.\")\n", + " # Save the modified content back to the file\n", + " with open(mei_file_path, 'w', encoding='utf-8') as f:\n", + " f.write(new_content)\n", + " print(f\" Successfully normalized line break in {os.path.basename(mei_file_path)}\")\n", + " else:\n", + " print(f\" Line break before <music already normalized in {os.path.basename(mei_file_path)}. No change.\")\n", + "\n", + "\n", + " else:\n", + " print(f\" Correct line break found before <music in {os.path.basename(mei_file_path)}. No changes made.\")\n", + "\n", + " else:\n", + " print(f\" <music tag not found in {os.path.basename(mei_file_path)}. No changes made.\")\n", + "\n", + "\n", + " except Exception as e:\n", + " print(f\"Error processing {os.path.basename(mei_file_path)}: {e}\")\n", + "\n", + "print(\"Blank line before music tag normalization process completed.\")" + ], + "execution_count": 12, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Found 194 MEI files in /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output\n", + "Processing 2599_Se_vi_miro_RDB.mei...\n", + " Correct line break found before <music in 2599_Se_vi_miro_RDB.mei. No changes made.\n", + "Processing 2603_Luci_serene_RDB.mei...\n", + " Correct line break found before <music in 2603_Luci_serene_RDB.mei. No changes made.\n", + "Processing 2597_Se_piange_ohime_RDB.mei...\n", + " Correct line break found before <music in 2597_Se_piange_ohime_RDB.mei. No changes made.\n", + "Processing 2601_Dolcissimo_sospiro_RDB.mei...\n", + " Correct line break found before <music in 2601_Dolcissimo_sospiro_RDB.mei. No changes made.\n", + "Processing 2602_Donna_se_m_ancidete_RDB.mei...\n", + " Correct line break found before <music in 2602_Donna_se_m_ancidete_RDB.mei. No changes made.\n", + "Processing 2606_Che_fai_meco_RDB.mei...\n", + " Correct line break found before <music in 2606_Che_fai_meco_RDB.mei. No changes made.\n", + "Processing 2605b_Io_tacero_RDB.mei...\n", + " Correct line break found before <music in 2605b_Io_tacero_RDB.mei. No changes made.\n", + "Processing 2607_Questa_crudele_RDB.mei...\n", + " Correct line break found before <music in 2607_Questa_crudele_RDB.mei. No changes made.\n", + "Processing 2610_Sparge_la_morte_RDB.mei...\n", + " Correct line break found before <music in 2610_Sparge_la_morte_RDB.mei. No changes made.\n", + "Processing 2611b_Moro_e_mentre_sospiro_RDB.mei...\n", + " Correct line break found before <music in 2611b_Moro_e_mentre_sospiro_RDB.mei. No changes made.\n", + "Processing 2612_Mentre_gira_costei_RDB.mei...\n", + " Correct line break found before <music in 2612_Mentre_gira_costei_RDB.mei. No changes made.\n", + "Processing 2623_Qual_fora_donna_RDB.mei...\n", + " Correct line break found before <music in 2623_Qual_fora_donna_RDB.mei. No changes made.\n", + "Processing 2637_T_amo_mia_vita_RDB.mei...\n", + " Correct line break found before <music in 2637_T_amo_mia_vita_RDB.mei. No changes made.\n", + "Processing 2643_Io_parto_RDB.mei...\n", + " Correct line break found before <music in 2643_Io_parto_RDB.mei. No changes made.\n", + "Processing 2641_Resta_di_darmi_noia_RDB.mei...\n", + " Correct line break found before <music in 2641_Resta_di_darmi_noia_RDB.mei. No changes made.\n", + "Processing 2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei...\n", + " Correct line break found before <music in 2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB.mei. No changes made.\n", + "Processing 2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei...\n", + " Correct line break found before <music in 2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB.mei. No changes made.\n", + "Processing 2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei...\n", + " Correct line break found before <music in 2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB.mei. No changes made.\n", + "Processing 2689_Ave_dulcissima_Maria_RDB.mei...\n", + " Correct line break found before <music in 2689_Ave_dulcissima_Maria_RDB.mei. No changes made.\n", + "Processing 2560_Madonna_io_RDB.mei...\n", + " Correct line break found before <music in 2560_Madonna_io_RDB.mei. No changes made.\n", + "Processing 2719_Ardens_est_cor_meum_RDB.mei...\n", + " Correct line break found before <music in 2719_Ardens_est_cor_meum_RDB.mei. No changes made.\n", + "Processing 2709_Ave_sanctissima_Maria_RDB.mei...\n", + " Correct line break found before <music in 2709_Ave_sanctissima_Maria_RDB.mei. No changes made.\n", + "Processing 2729_In_te_Domine_speravi_RDB.mei...\n", + " Correct line break found before <music in 2729_In_te_Domine_speravi_RDB.mei. No changes made.\n", + "Processing 2726_Ne_reminiscaris_1585_02_RDB.mei...\n", + " Correct line break found before <music in 2726_Ne_reminiscaris_1585_02_RDB.mei. No changes made.\n", + "Processing 2730a_Canzon_francese_del_Principe_dim_def_RDB.mei...\n", + " Correct line break found before <music in 2730a_Canzon_francese_del_Principe_dim_def_RDB.mei. No changes made.\n", + "Processing 2580_Sento_che_nel_partire_RDB.mei...\n", + " Correct line break found before <music in 2580_Sento_che_nel_partire_RDB.mei. No changes made.\n", + "Processing 2609a_Cor_mio_deh_non_piangete_RDB.mei...\n", + " Correct line break found before <music in 2609a_Cor_mio_deh_non_piangete_RDB.mei. No changes made.\n", + "Processing 2613_A_voi_mentre_il_mio_core_RDB.mei...\n", + " Correct line break found before <music in 2613_A_voi_mentre_il_mio_core_RDB.mei. No changes made.\n", + "Processing 2727_All_ombra_degli_allori_RDB.mei...\n", + " Correct line break found before <music in 2727_All_ombra_degli_allori_RDB.mei. No changes made.\n", + "Processing 2608a_Or_che_in_gioia_RDB.mei...\n", + " Correct line break found before <music in 2608a_Or_che_in_gioia_RDB.mei. No changes made.\n", + "Processing 2609b_cor_mio_deh_non_piangete_RDB.mei...\n", + " Correct line break found before <music in 2609b_cor_mio_deh_non_piangete_RDB.mei. No changes made.\n", + "Processing 2561_Com_esser_puo_RDB.mei...\n", + " Correct line break found before <music in 2561_Com_esser_puo_RDB.mei. No changes made.\n", + "Processing 2728_Come_vivi_cor_mio_RDB.mei...\n", + " Correct line break found before <music in 2728_Come_vivi_cor_mio_RDB.mei. No changes made.\n", + "Processing 2559a_Baci_soavi_RDB.mei...\n", + " Correct line break found before <music in 2559a_Baci_soavi_RDB.mei. No changes made.\n", + "Processing 2611a_Moro_e_mentre_sospiro_RDB.mei...\n", + " Correct line break found before <music in 2611a_Moro_e_mentre_sospiro_RDB.mei. No changes made.\n", + "Processing 2614a_Ecco_moriro_dunque_RDB.mei...\n", + " Correct line break found before <music in 2614a_Ecco_moriro_dunque_RDB.mei. No changes made.\n", + "Processing 2615_Arde_il_mio_cor_RDB.mei...\n", + " Correct line break found before <music in 2615_Arde_il_mio_cor_RDB.mei. No changes made.\n", + "Processing 2608b_Or_che_in_gioia_RDB.mei...\n", + " Correct line break found before <music in 2608b_Or_che_in_gioia_RDB.mei. No changes made.\n", + "Processing 2617b_Il_sol_RDB.mei...\n", + " Correct line break found before <music in 2617b_Il_sol_RDB.mei. No changes made.\n", + "Processing 2616_Se_chiudete_nel_core_RDB.mei...\n", + " Correct line break found before <music in 2616_Se_chiudete_nel_core_RDB.mei. No changes made.\n", + "Processing 2619_S_io_non_miro_RDB.mei...\n", + " Correct line break found before <music in 2619_S_io_non_miro_RDB.mei. No changes made.\n", + "Processing 2617a_Il_sol_RDB.mei...\n", + " Correct line break found before <music in 2617a_Il_sol_RDB.mei. No changes made.\n", + "Processing 2618_Gioite_voi_RDB.mei...\n", + " Correct line break found before <music in 2618_Gioite_voi_RDB.mei. No changes made.\n", + "Processing 2624_Felicissimo_sonno_RDB.mei...\n", + " Correct line break found before <music in 2624_Felicissimo_sonno_RDB.mei. No changes made.\n", + "Processing 2621_Dolcissima_mia_vita_RDB.mei...\n", + " Correct line break found before <music in 2621_Dolcissima_mia_vita_RDB.mei. No changes made.\n", + "Processing 2622_O_dolorosa_gioia_RDB.mei...\n", + " Correct line break found before <music in 2622_O_dolorosa_gioia_RDB.mei. No changes made.\n", + "Processing 2620_Itene_o_miei_sospiri_RDB.mei...\n", + " Correct line break found before <music in 2620_Itene_o_miei_sospiri_RDB.mei. No changes made.\n", + "Processing 2626_Occhi_del_mio_cor_RDB.mei...\n", + " Correct line break found before <music in 2626_Occhi_del_mio_cor_RDB.mei. No changes made.\n", + "Processing 2625_Se_vi_duol_RDB.mei...\n", + " Correct line break found before <music in 2625_Se_vi_duol_RDB.mei. No changes made.\n", + "Processing 2629_O_voi_RDB.mei...\n", + " Correct line break found before <music in 2629_O_voi_RDB.mei. No changes made.\n", + "Processing 2627_Languisce_al_fin_RDB.mei...\n", + " Correct line break found before <music in 2627_Languisce_al_fin_RDB.mei. No changes made.\n", + "Processing 2630_Correte_amanti_RDB.mei...\n", + " Correct line break found before <music in 2630_Correte_amanti_RDB.mei. No changes made.\n", + "Processing 2628_Merce_grido_RDB.mei...\n", + " Correct line break found before <music in 2628_Merce_grido_RDB.mei. No changes made.\n", + "Processing 2631_Asciugate_RDB.mei...\n", + " Correct line break found before <music in 2631_Asciugate_RDB.mei. No changes made.\n", + "Processing 2633_Deh_coprite_RDB.mei...\n", + " Correct line break found before <music in 2633_Deh_coprite_RDB.mei. No changes made.\n", + "Processing 2632_Tu_m_uccidi_RDB.mei...\n", + " Correct line break found before <music in 2632_Tu_m_uccidi_RDB.mei. No changes made.\n", + "Processing 2634a_Poiche_l_avida_sete_RDB.mei...\n", + " Correct line break found before <music in 2634a_Poiche_l_avida_sete_RDB.mei. No changes made.\n", + "Processing 2634b_Poiche_l_avida_sete_RDB.mei...\n", + " Correct line break found before <music in 2634b_Poiche_l_avida_sete_RDB.mei. No changes made.\n", + "Processing 2635_O_tenebroso_giorno_RDB.mei...\n", + " Correct line break found before <music in 2635_O_tenebroso_giorno_RDB.mei. No changes made.\n", + "Processing 2636_Se_tu_fuggi_RDB.mei...\n", + " Correct line break found before <music in 2636_Se_tu_fuggi_RDB.mei. No changes made.\n", + "Processing 2640_Tu_segui_RDB.mei...\n", + " Correct line break found before <music in 2640_Tu_segui_RDB.mei. No changes made.\n", + "Processing 2642_Chiaro_risplender_RDB.mei...\n", + " Correct line break found before <music in 2642_Chiaro_risplender_RDB.mei. No changes made.\n", + "Processing 2639_Belta_poi_che_RDB.mei...\n", + " Correct line break found before <music in 2639_Belta_poi_che_RDB.mei. No changes made.\n", + "Processing 2538_Se_la_mia_morte_RDB.mei...\n", + " Correct line break found before <music in 2538_Se_la_mia_morte_RDB.mei. No changes made.\n", + "Processing 2644_Mille_volte_RDB.mei...\n", + " Correct line break found before <music in 2644_Mille_volte_RDB.mei. No changes made.\n", + "Processing 2649_Candido_e_verde_fiore_RDB.mei...\n", + " Correct line break found before <music in 2649_Candido_e_verde_fiore_RDB.mei. No changes made.\n", + "Processing 2645_O_dolce_mio_tesoro_RDB.mei...\n", + " Correct line break found before <music in 2645_O_dolce_mio_tesoro_RDB.mei. No changes made.\n", + "Processing 2648_Alme_d_Amor_rubelle_RDB.mei...\n", + " Correct line break found before <music in 2648_Alme_d_Amor_rubelle_RDB.mei. No changes made.\n", + "Processing 2646_Deh_come_invan_RDB.mei...\n", + " Correct line break found before <music in 2646_Deh_come_invan_RDB.mei. No changes made.\n", + "Processing 2651_Ardo_per_te_RDB.mei...\n", + " Correct line break found before <music in 2651_Ardo_per_te_RDB.mei. No changes made.\n", + "Processing 2654_Moro_lasso_RDB.mei...\n", + " Correct line break found before <music in 2654_Moro_lasso_RDB.mei. No changes made.\n", + "Processing 2652_Ancide_sol_RDB.mei...\n", + " Correct line break found before <music in 2652_Ancide_sol_RDB.mei. No changes made.\n", + "Processing 2653_Quel_no_crudel_RDB.mei...\n", + " Correct line break found before <music in 2653_Quel_no_crudel_RDB.mei. No changes made.\n", + "Processing 2650_Ardita_zanzaretta_RDB.mei...\n", + " Correct line break found before <music in 2650_Ardita_zanzaretta_RDB.mei. No changes made.\n", + "Processing 2656_Al_mio_gioir_RDB.mei...\n", + " Correct line break found before <music in 2656_Al_mio_gioir_RDB.mei. No changes made.\n", + "Processing 2655_Volan_quasi_farfalle_RDB.mei...\n", + " Correct line break found before <music in 2655_Volan_quasi_farfalle_RDB.mei. No changes made.\n", + "Processing 2658_Ancor_che_per_amarti_RDB.mei...\n", + " Correct line break found before <music in 2658_Ancor_che_per_amarti_RDB.mei. No changes made.\n", + "Processing 2657_Tu_piangi_o_Fille_RDB.mei...\n", + " Correct line break found before <music in 2657_Tu_piangi_o_Fille_RDB.mei. No changes made.\n", + "Processing 2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei...\n", + " Correct line break found before <music in 2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB.mei. No changes made.\n", + "Processing 2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei...\n", + " Correct line break found before <music in 2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB.mei. No changes made.\n", + "Processing 2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei...\n", + " Correct line break found before <music in 2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB.mei. No changes made.\n", + "Processing 2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei...\n", + " Correct line break found before <music in 2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB.mei. No changes made.\n", + "Processing 2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei...\n", + " Correct line break found before <music in 2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB.mei. No changes made.\n", + "Processing 2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei...\n", + " Correct line break found before <music in 2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB.mei. No changes made.\n", + "Processing 2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei...\n", + " Correct line break found before <music in 2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB.mei. No changes made.\n", + "Processing 2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei...\n", + " Correct line break found before <music in 2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB.mei. No changes made.\n", + "Processing 2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei...\n", + " Correct line break found before <music in 2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB.mei. No changes made.\n", + "Processing 2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei...\n", + " Correct line break found before <music in 2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB.mei. No changes made.\n", + "Processing 2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei...\n", + " Correct line break found before <music in 2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB.mei. No changes made.\n", + "Processing 2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei...\n", + " Correct line break found before <music in 2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei. No changes made.\n", + "Processing 2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei...\n", + " Correct line break found before <music in 2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB.mei. No changes made.\n", + "Processing 2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei...\n", + " Correct line break found before <music in 2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB.mei. No changes made.\n", + "Processing 2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei...\n", + " Correct line break found before <music in 2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB.mei. No changes made.\n", + "Processing 2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei...\n", + " Correct line break found before <music in 2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB.mei. No changes made.\n", + "Processing 2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei...\n", + " Correct line break found before <music in 2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB.mei. No changes made.\n", + "Processing 2585_Non_mi_toglia_RDB.mei...\n", + " Correct line break found before <music in 2585_Non_mi_toglia_RDB.mei. No changes made.\n", + "Processing 2604_Talor_sano_desio_RDB.mei...\n", + " Correct line break found before <music in 2604_Talor_sano_desio_RDB.mei. No changes made.\n", + "Processing 2726_Ne_reminiscaris_RDB.mei...\n", + " Correct line break found before <music in 2726_Ne_reminiscaris_RDB.mei. No changes made.\n", + "Processing 2731_Gagliarda_del_Principe_di_Venosa_RDB.mei...\n", + " Correct line break found before <music in 2731_Gagliarda_del_Principe_di_Venosa_RDB.mei. No changes made.\n", + "Processing 2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei...\n", + " Correct line break found before <music in 2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB.mei. No changes made.\n", + "Processing 2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei...\n", + " Correct line break found before <music in 2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB.mei. No changes made.\n", + "Processing 2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei...\n", + " Correct line break found before <music in 2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB.mei. No changes made.\n", + "Processing 2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei...\n", + " Correct line break found before <music in 2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB.mei. No changes made.\n", + "Processing 2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei...\n", + " Correct line break found before <music in 2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB.mei. No changes made.\n", + "Processing 2691_Dignare_me_RDB.mei...\n", + " Correct line break found before <music in 2691_Dignare_me_RDB.mei. No changes made.\n", + "Processing 2694_Hei_mihi_Domine_RDB.mei...\n", + " Correct line break found before <music in 2694_Hei_mihi_Domine_RDB.mei. No changes made.\n", + "Processing 2693_Domine_ne_despicias_deprecationem_meam_RDB.mei...\n", + " Correct line break found before <music in 2693_Domine_ne_despicias_deprecationem_meam_RDB.mei. No changes made.\n", + "Processing 2695_Laboravi_in_gemitu_meo_RDB.mei...\n", + " Correct line break found before <music in 2695_Laboravi_in_gemitu_meo_RDB.mei. No changes made.\n", + "Processing 2688_Venit_lumen_tuum_RDB.mei...\n", + " Correct line break found before <music in 2688_Venit_lumen_tuum_RDB.mei. No changes made.\n", + "Processing 2690_Reminiscere_miserationum_tuarum_RDB.mei...\n", + " Correct line break found before <music in 2690_Reminiscere_miserationum_tuarum_RDB.mei. No changes made.\n", + "Processing 2696_Peccantem_me_quotidie_RDB.mei...\n", + " Correct line break found before <music in 2696_Peccantem_me_quotidie_RDB.mei. No changes made.\n", + "Processing 2692_Sancti_Spiritus_Domine_RDB.mei...\n", + " Correct line break found before <music in 2692_Sancti_Spiritus_Domine_RDB.mei. No changes made.\n", + "Processing 2698_Exaudi_Deus_deprecationem_meam_RDB.mei...\n", + " Correct line break found before <music in 2698_Exaudi_Deus_deprecationem_meam_RDB.mei. No changes made.\n", + "Processing 2697_O_vos_omnes_qui_transitis_RDB.mei...\n", + " Correct line break found before <music in 2697_O_vos_omnes_qui_transitis_RDB.mei. No changes made.\n", + "Processing 2700_O_crux_benedicta_RDB.mei...\n", + " Correct line break found before <music in 2700_O_crux_benedicta_RDB.mei. No changes made.\n", + "Processing 2702_Deus_refugium_et_virtus_RDB.mei...\n", + " Correct line break found before <music in 2702_Deus_refugium_et_virtus_RDB.mei. No changes made.\n", + "Processing 2699_Precibus_et_meritis_RDB.mei...\n", + " Correct line break found before <music in 2699_Precibus_et_meritis_RDB.mei. No changes made.\n", + "Processing 2705_Maria_Mater_gratiæ_RDB.mei...\n", + " Correct line break found before <music in 2705_Maria_Mater_gratiæ_RDB.mei. No changes made.\n", + "Processing 2701_Tribularer_si_nescirem_RDB.mei...\n", + " Correct line break found before <music in 2701_Tribularer_si_nescirem_RDB.mei. No changes made.\n", + "Processing 2710_O_Oriens_RDB.mei...\n", + " Correct line break found before <music in 2710_O_Oriens_RDB.mei. No changes made.\n", + "Processing 2704_Illumina_faciem_tuam_RDB.mei...\n", + " Correct line break found before <music in 2704_Illumina_faciem_tuam_RDB.mei. No changes made.\n", + "Processing 2703_Tribulationem_et_dolorem_RDB.mei...\n", + " Correct line break found before <music in 2703_Tribulationem_et_dolorem_RDB.mei. No changes made.\n", + "Processing 2706_Virgo_benedicta_RDB.mei...\n", + " Correct line break found before <music in 2706_Virgo_benedicta_RDB.mei. No changes made.\n", + "Processing 2708_Sana_me_Domine_RDB.mei...\n", + " Correct line break found before <music in 2708_Sana_me_Domine_RDB.mei. No changes made.\n", + "Processing 2712_Gaudeamus_omnes_RDB.mei...\n", + " Correct line break found before <music in 2712_Gaudeamus_omnes_RDB.mei. No changes made.\n", + "Processing 2713_Veni_Creator_Spiritus_RDB.mei...\n", + " Correct line break found before <music in 2713_Veni_Creator_Spiritus_RDB.mei. No changes made.\n", + "Processing 2715_Adoramus_te_RDB.mei...\n", + " Correct line break found before <music in 2715_Adoramus_te_RDB.mei. No changes made.\n", + "Processing 2724_O_anima_sanctissima_RDB.mei...\n", + " Correct line break found before <music in 2724_O_anima_sanctissima_RDB.mei. No changes made.\n", + "Processing 2718_Verba_mea_RDB.mei...\n", + " Correct line break found before <music in 2718_Verba_mea_RDB.mei. No changes made.\n", + "Processing 2722_Ad_te_levavi_RDB.mei...\n", + " Correct line break found before <music in 2722_Ad_te_levavi_RDB.mei. No changes made.\n", + "Processing 2725_Illumina_nos_RDB.mei...\n", + " Correct line break found before <music in 2725_Illumina_nos_RDB.mei. No changes made.\n", + "Processing 2714_O_sacrum_convivium_RDB.mei...\n", + " Correct line break found before <music in 2714_O_sacrum_convivium_RDB.mei. No changes made.\n", + "Processing 2720_Ne_derelinquas_me_RDB.mei...\n", + " Correct line break found before <music in 2720_Ne_derelinquas_me_RDB.mei. No changes made.\n", + "Processing 2711_Discedite_a_me_omnes_RDB.mei...\n", + " Correct line break found before <music in 2711_Discedite_a_me_omnes_RDB.mei. No changes made.\n", + "Processing 2716_Veni_sponsa_Christi_RDB.mei...\n", + " Correct line break found before <music in 2716_Veni_sponsa_Christi_RDB.mei. No changes made.\n", + "Processing 2563b_Mentre_Madonna_RDB.mei...\n", + " Correct line break found before <music in 2563b_Mentre_Madonna_RDB.mei. No changes made.\n", + "Processing 2707_Da_pacem_domine_RDB.mei...\n", + " Correct line break found before <music in 2707_Da_pacem_domine_RDB.mei. No changes made.\n", + "Processing 2567b_Tirsi_morir_volea_RDB.mei...\n", + " Correct line break found before <music in 2567b_Tirsi_morir_volea_RDB.mei. No changes made.\n", + "Processing 2614b_Ecco_moriro_dunque_RDB.mei...\n", + " Correct line break found before <music in 2614b_Ecco_moriro_dunque_RDB.mei. No changes made.\n", + "Processing 2565_Si_gioioso_RDB.mei...\n", + " Correct line break found before <music in 2565_Si_gioioso_RDB.mei. No changes made.\n", + "Processing 2577b_Se_cosi_dolce_RDB.mei...\n", + " Correct line break found before <music in 2577b_Se_cosi_dolce_RDB.mei. No changes made.\n", + "Processing 2567a_Tirsi_morir_volea_RDB.mei...\n", + " Correct line break found before <music in 2567a_Tirsi_morir_volea_RDB.mei. No changes made.\n", + "Processing 2568_Mentre_mia_stella_RDB.mei...\n", + " Correct line break found before <music in 2568_Mentre_mia_stella_RDB.mei. No changes made.\n", + "Processing 1021_Son_si_belle_RDB.mei...\n", + " Correct line break found before <music in 1021_Son_si_belle_RDB.mei. No changes made.\n", + "Processing 2572_Bella_angioletta_RDB.mei...\n", + " Correct line break found before <music in 2572_Bella_angioletta_RDB.mei. No changes made.\n", + "Processing 2573a_Caro_amoroso_neo_RDB.mei...\n", + " Correct line break found before <music in 2573a_Caro_amoroso_neo_RDB.mei. No changes made.\n", + "Processing 2564a_Se_da_si_nobil_RDB.mei...\n", + " Correct line break found before <music in 2564a_Se_da_si_nobil_RDB.mei. No changes made.\n", + "Processing 2562_Gel_ha_madonna_RDB.mei...\n", + " Correct line break found before <music in 2562_Gel_ha_madonna_RDB.mei. No changes made.\n", + "Processing 2564b_Se_da_si_nobil_RDB.mei...\n", + " Correct line break found before <music in 2564b_Se_da_si_nobil_RDB.mei. No changes made.\n", + "Processing 2563a_Mentre_Madonna_RDB.mei...\n", + " Correct line break found before <music in 2563a_Mentre_Madonna_RDB.mei. No changes made.\n", + "Processing 2559b_Baci_soavi_RDB.mei...\n", + " Correct line break found before <music in 2559b_Baci_soavi_RDB.mei. No changes made.\n", + "Processing 2571a_Felice_primavera_RDB.mei...\n", + " Correct line break found before <music in 2571a_Felice_primavera_RDB.mei. No changes made.\n", + "Processing 2566_O_dolce_RDB.mei...\n", + " Correct line break found before <music in 2566_O_dolce_RDB.mei. No changes made.\n", + "Processing 2569_Non_mirar_RDB.mei...\n", + " Correct line break found before <music in 2569_Non_mirar_RDB.mei. No changes made.\n", + "Processing 2570_Questi_leggiadri_RDB.mei...\n", + " Correct line break found before <music in 2570_Questi_leggiadri_RDB.mei. No changes made.\n", + "Processing 2575a_Se_per_lieve_RDB.mei...\n", + " Correct line break found before <music in 2575a_Se_per_lieve_RDB.mei. No changes made.\n", + "Processing 2574_Hai_rotto_RDB.mei...\n", + " Correct line break found before <music in 2574_Hai_rotto_RDB.mei. No changes made.\n", + "Processing 2571b_Felice_primavera_RDB.mei...\n", + " Correct line break found before <music in 2571b_Felice_primavera_RDB.mei. No changes made.\n", + "Processing 2573b_Caro_amoroso_neo_RDB.mei...\n", + " Correct line break found before <music in 2573b_Caro_amoroso_neo_RDB.mei. No changes made.\n", + "Processing 2576_In_piu_leggiadro_velo_RDB.mei...\n", + " Correct line break found before <music in 2576_In_piu_leggiadro_velo_RDB.mei. No changes made.\n", + "Processing 2578_Se_taccio_il_duol_RDB.mei...\n", + " Correct line break found before <music in 2578_Se_taccio_il_duol_RDB.mei. No changes made.\n", + "Processing 2577a_Se_cosi_dolce_RDB.mei...\n", + " Correct line break found before <music in 2577a_Se_cosi_dolce_RDB.mei. No changes made.\n", + "Processing 2579a_O_com_e_gran_martire_RDB.mei...\n", + " Correct line break found before <music in 2579a_O_com_e_gran_martire_RDB.mei. No changes made.\n", + "Processing 2581b_Non_e_questa_RDB.mei...\n", + " Correct line break found before <music in 2581b_Non_e_questa_RDB.mei. No changes made.\n", + "Processing 2582_Candida_man_RDB.mei...\n", + " Correct line break found before <music in 2582_Candida_man_RDB.mei. No changes made.\n", + "Processing 2581a_Non_e_questa_RDB.mei...\n", + " Correct line break found before <music in 2581a_Non_e_questa_RDB.mei. No changes made.\n", + "Processing 1018b_Dalle_odorate_spoglie_RDB.mei...\n", + " Correct line break found before <music in 1018b_Dalle_odorate_spoglie_RDB.mei. No changes made.\n", + "Processing 2579b_O_com_e_gran_martire_RDB.mei...\n", + " Correct line break found before <music in 2579b_O_com_e_gran_martire_RDB.mei. No changes made.\n", + "Processing 1018a_Dalle_odorate_spoglie_RDB.mei...\n", + " Correct line break found before <music in 1018a_Dalle_odorate_spoglie_RDB.mei. No changes made.\n", + "Processing 2586a_Voi_volete_RDB.mei...\n", + " Correct line break found before <music in 2586a_Voi_volete_RDB.mei. No changes made.\n", + "Processing 2584_All_apparir_di_quelle_RDB.mei...\n", + " Correct line break found before <music in 2584_All_apparir_di_quelle_RDB.mei. No changes made.\n", + "Processing 2583_Non_mai_non_cangero_RDB.mei...\n", + " Correct line break found before <music in 2583_Non_mai_non_cangero_RDB.mei. No changes made.\n", + "Processing 2586b_Voi_volete_RDB.mei...\n", + " Correct line break found before <music in 2586b_Voi_volete_RDB.mei. No changes made.\n", + "Processing 2587_Ahi_disperata_RDB.mei...\n", + " Correct line break found before <music in 2587_Ahi_disperata_RDB.mei. No changes made.\n", + "Processing 2575b_Se_per_lieve_RDB.mei...\n", + " Correct line break found before <music in 2575b_Se_per_lieve_RDB.mei. No changes made.\n", + "Processing 2589_Del_bel_de_bei_RDB.mei...\n", + " Correct line break found before <music in 2589_Del_bel_de_bei_RDB.mei. No changes made.\n", + "Processing 2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei...\n", + " Correct line break found before <music in 2730b_Canzon_francese_del_Principe_vers_nor_RDB.mei. No changes made.\n", + "Processing 2588_Languisco_e_moro_RDB.mei...\n", + " Correct line break found before <music in 2588_Languisco_e_moro_RDB.mei. No changes made.\n", + "Processing 2591_Dolce_spirto_RDB.mei...\n", + " Correct line break found before <music in 2591_Dolce_spirto_RDB.mei. No changes made.\n", + "Processing 2590_Ahi_dispietata_RDB.mei...\n", + " Correct line break found before <music in 2590_Ahi_dispietata_RDB.mei. No changes made.\n", + "Processing 2592a_Sospirava_il_mio_core_RDB.mei...\n", + " Correct line break found before <music in 2592a_Sospirava_il_mio_core_RDB.mei. No changes made.\n", + "Processing 2592b_Sospirava_il_mio_core_RDB.mei...\n", + " Correct line break found before <music in 2592b_Sospirava_il_mio_core_RDB.mei. No changes made.\n", + "Processing 2593_Veggio_si_dal_mio_sole_RDB.mei...\n", + " Correct line break found before <music in 2593_Veggio_si_dal_mio_sole_RDB.mei. No changes made.\n", + "Processing 2594_Non_t_amo_RDB.mei...\n", + " Correct line break found before <music in 2594_Non_t_amo_RDB.mei. No changes made.\n", + "Processing 2595b_Meraviglia_d_Amore_RDB.mei...\n", + " Correct line break found before <music in 2595b_Meraviglia_d_Amore_RDB.mei. No changes made.\n", + "Processing 2595a_Meraviglia_d_Amore_RDB.mei...\n", + " Correct line break found before <music in 2595a_Meraviglia_d_Amore_RDB.mei. No changes made.\n", + "Processing 2596_Crudelissima_doglia_RDB.mei...\n", + " Correct line break found before <music in 2596_Crudelissima_doglia_RDB.mei. No changes made.\n", + "Processing 2598_Ancidetemi_pur_RDB.mei...\n", + " Correct line break found before <music in 2598_Ancidetemi_pur_RDB.mei. No changes made.\n", + "Processing 2600_Deh_se_gia_fu_crudel_RDB.mei...\n", + " Correct line break found before <music in 2600_Deh_se_gia_fu_crudel_RDB.mei. No changes made.\n", + "Processing 2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei...\n", + " Correct line break found before <music in 2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei. No changes made.\n", + "Processing 2686_Benedictus_RDB.mei...\n", + " Correct line break found before <music in 2686_Benedictus_RDB.mei. No changes made.\n", + "Processing 2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei...\n", + " Correct line break found before <music in 2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB.mei. No changes made.\n", + "Processing 1369_Ave_regina_cœlorum_RDB.mei...\n", + " Correct line break found before <music in 1369_Ave_regina_cœlorum_RDB.mei. No changes made.\n", + "Processing 2687_Miserere_RDB.mei...\n", + " Correct line break found before <music in 2687_Miserere_RDB.mei. No changes made.\n", + "Blank line before music tag normalization process completed.\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "music_feature_processor = MEI_Music_Feature_Processor()" + ], + "metadata": { + "id": "BrNfs5P8TUdv" + }, + "execution_count": 13, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "mei_paths = glob.glob('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/*')\n", + "output_folder = \"/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output_Music_Feature_Correction\"" + ], + "metadata": { + "id": "BK4bFrxCmlgx" + }, + "execution_count": 14, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "dir(music_feature_processor)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "R_i7XNjOTbbU", + "outputId": "4b476fdc-cef7-47d1-ae41-172db46e1059" + }, + "execution_count": 15, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "['__class__',\n", + " '__delattr__',\n", + " '__dict__',\n", + " '__dir__',\n", + " '__doc__',\n", + " '__eq__',\n", + " '__format__',\n", + " '__ge__',\n", + " '__getattribute__',\n", + " '__getstate__',\n", + " '__gt__',\n", + " '__hash__',\n", + " '__init__',\n", + " '__init_subclass__',\n", + " '__le__',\n", + " '__lt__',\n", + " '__module__',\n", + " '__ne__',\n", + " '__new__',\n", + " '__reduce__',\n", + " '__reduce_ex__',\n", + " '__repr__',\n", + " '__setattr__',\n", + " '__sizeof__',\n", + " '__str__',\n", + " '__subclasshook__',\n", + " '__weakref__',\n", + " 'process_music_features']" + ] + }, + "metadata": {}, + "execution_count": 15 + } + ] + }, + { + "cell_type": "code", + "source": [ + "mei_paths = glob.glob('/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/*')\n", + "output_folder = \"/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output_Music_Feature_Correction\"" + ], + "metadata": { + "id": "uCBcYc6MTeCK" + }, + "execution_count": 16, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "for mei_path in mei_paths:\n", + " music_feature_processor.process_music_features(mei_path,\n", + " output_folder,\n", + " remove_incipit=True,\n", + " remove_pb=True,\n", + " remove_sb=True,\n", + " remove_annotation=True,\n", + " remove_ligature_bracket=True,\n", + " remove_dir=True,\n", + " remove_variants=True,\n", + " remove_anchored_text=True,\n", + " remove_timestamp=True,\n", + " remove_chord=True,\n", + " check_for_chords=True,\n", + " remove_senfl_bracket=False,\n", + " remove_empty_verse=False,\n", + " remove_lyrics=False,\n", + " fix_elisions=True,\n", + " slur_to_tie=True,\n", + " collapse_layers=False,\n", + " correct_ficta=True,\n", + " voice_labels=True,\n", + " correct_cmme_time_signatures=False,\n", + " correct_jrp_time_signatures=False,\n", + " correct_mrests=True)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "ZhIBUBQEToCK", + "outputId": "da04219e-8d29-4ecf-87cf-5f30352ab47a" + }, + "execution_count": 17, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Getting 2599_Se_vi_miro_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2599_Se_vi_miro_RDB.mei: ID m-5 already defined, line 114, column 31 (2599_Se_vi_miro_RDB.mei, line 114)\n", + "Getting 2603_Luci_serene_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2603_Luci_serene_RDB.mei: ID m-5 already defined, line 228, column 31 (2603_Luci_serene_RDB.mei, line 228)\n", + "Getting 2597_Se_piange_ohime_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2597_Se_piange_ohime_RDB.mei: ID m-5 already defined, line 173, column 31 (2597_Se_piange_ohime_RDB.mei, line 173)\n", + "Getting 2601_Dolcissimo_sospiro_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2601_Dolcissimo_sospiro_RDB.mei: ID m-5 already defined, line 118, column 31 (2601_Dolcissimo_sospiro_RDB.mei, line 118)\n", + "Getting 2602_Donna_se_m_ancidete_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2602_Donna_se_m_ancidete_RDB.mei: ID m-5 already defined, line 138, column 31 (2602_Donna_se_m_ancidete_RDB.mei, line 138)\n", + "Getting 2606_Che_fai_meco_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2606_Che_fai_meco_RDB.mei: ID m-5 already defined, line 126, column 31 (2606_Che_fai_meco_RDB.mei, line 126)\n", + "Getting 2605b_Io_tacero_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2605b_Io_tacero_RDB.mei: ID m-5 already defined, line 152, column 31 (2605b_Io_tacero_RDB.mei, line 152)\n", + "Getting 2607_Questa_crudele_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2607_Questa_crudele_RDB.mei: ID m-5 already defined, line 175, column 31 (2607_Questa_crudele_RDB.mei, line 175)\n", + "Getting 2610_Sparge_la_morte_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2610_Sparge_la_morte_RDB.mei: ID m-5 already defined, line 267, column 31 (2610_Sparge_la_morte_RDB.mei, line 267)\n", + "Getting 2611b_Moro_e_mentre_sospiro_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2611b_Moro_e_mentre_sospiro_RDB.mei: ID m-5 already defined, line 145, column 31 (2611b_Moro_e_mentre_sospiro_RDB.mei, line 145)\n", + "Getting 2612_Mentre_gira_costei_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2612_Mentre_gira_costei_RDB.mei: ID m-5 already defined, line 172, column 31 (2612_Mentre_gira_costei_RDB.mei, line 172)\n", + "Getting 2623_Qual_fora_donna_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2623_Qual_fora_donna_RDB.mei: ID m-5 already defined, line 127, column 31 (2623_Qual_fora_donna_RDB.mei, line 127)\n", + "Getting 2637_T_amo_mia_vita_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2637_T_amo_mia_vita_RDB.mei: ID m-5 already defined, line 180, column 31 (2637_T_amo_mia_vita_RDB.mei, line 180)\n", + "Getting 2643_Io_parto_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2643_Io_parto_RDB.mei: ID m-5 already defined, line 198, column 31 (2643_Io_parto_RDB.mei, line 198)\n", + "Getting 2641_Resta_di_darmi_noia_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2641_Resta_di_darmi_noia_RDB.mei: ID m-5 already defined, line 122, column 31 (2641_Resta_di_darmi_noia_RDB.mei, line 122)\n", + "Getting 2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 11 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 9 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB_rev.mei\n", + "Getting 2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB\n", + "Found 3 page breaks to remove.\n", + "Found 9 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 4 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 2 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB_rev.mei\n", + "Getting 2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 10 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 8 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB_rev.mei\n", + "Getting 2689_Ave_dulcissima_Maria_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 14 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 2 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 2 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2689_Ave_dulcissima_Maria_RDB_rev.mei\n", + "Getting 2560_Madonna_io_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2560_Madonna_io_RDB.mei: ID m-5 already defined, line 138, column 31 (2560_Madonna_io_RDB.mei, line 138)\n", + "Getting 2719_Ardens_est_cor_meum_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 9 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 9 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2719_Ardens_est_cor_meum_RDB_rev.mei\n", + "Getting 2709_Ave_sanctissima_Maria_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 15 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 3 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 1 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2709_Ave_sanctissima_Maria_RDB_rev.mei\n", + "Getting 2729_In_te_Domine_speravi_RDB\n", + "Found 3 page breaks to remove.\n", + "Found 8 section breaks to remove.\n", + "Found 2 annotations to remove.\n", + "Found 10 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 10 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2729_In_te_Domine_speravi_RDB_rev.mei\n", + "Getting 2726_Ne_reminiscaris_1585_02_RDB\n", + "Found 3 page breaks to remove.\n", + "Found 9 section breaks to remove.\n", + "Found 2 annotations to remove.\n", + "Found 5 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 4 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2726_Ne_reminiscaris_1585_02_RDB_rev.mei\n", + "Getting 2730a_Canzon_francese_del_Principe_dim_def_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2730a_Canzon_francese_del_Principe_dim_def_RDB.mei: ID m-2389 already defined, line 3267, column 42 (2730a_Canzon_francese_del_Principe_dim_def_RDB.mei, line 3267)\n", + "Getting 2580_Sento_che_nel_partire_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 2 annotations to remove.\n", + "Found 5 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 4 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2580_Sento_che_nel_partire_RDB_rev.mei\n", + "Getting 2609a_Cor_mio_deh_non_piangete_RDB\n", + "Found 2 page breaks to remove.\n", + "Found 5 section breaks to remove.\n", + "Found 2 annotations to remove.\n", + "Found 5 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 5 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2609a_Cor_mio_deh_non_piangete_RDB_rev.mei\n", + "Getting 2613_A_voi_mentre_il_mio_core_RDB\n", + "Found 3 page breaks to remove.\n", + "Found 9 section breaks to remove.\n", + "Found 2 annotations to remove.\n", + "Found 1 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 1 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2613_A_voi_mentre_il_mio_core_RDB_rev.mei\n", + "Getting 2727_All_ombra_degli_allori_RDB\n", + "Found 3 page breaks to remove.\n", + "Found 9 section breaks to remove.\n", + "Found 4 annotations to remove.\n", + "Found 5 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 4 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2727_All_ombra_degli_allori_RDB_rev.mei\n", + "Getting 2608a_Or_che_in_gioia_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2608a_Or_che_in_gioia_RDB.mei: ID m-5 already defined, line 119, column 31 (2608a_Or_che_in_gioia_RDB.mei, line 119)\n", + "Getting 2609b_cor_mio_deh_non_piangete_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2609b_cor_mio_deh_non_piangete_RDB.mei: ID m-5 already defined, line 124, column 31 (2609b_cor_mio_deh_non_piangete_RDB.mei, line 124)\n", + "Getting 2561_Com_esser_puo_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2561_Com_esser_puo_RDB.mei: ID m-5 already defined, line 169, column 31 (2561_Com_esser_puo_RDB.mei, line 169)\n", + "Getting 2728_Come_vivi_cor_mio_RDB\n", + "Found 2 page breaks to remove.\n", + "Found 3 section breaks to remove.\n", + "Found 4 annotations to remove.\n", + "Found 0 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 0 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2728_Come_vivi_cor_mio_RDB_rev.mei\n", + "Getting 2559a_Baci_soavi_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2559a_Baci_soavi_RDB.mei: ID m-5 already defined, line 159, column 31 (2559a_Baci_soavi_RDB.mei, line 159)\n", + "Getting 2611a_Moro_e_mentre_sospiro_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2611a_Moro_e_mentre_sospiro_RDB.mei: ID m-5 already defined, line 120, column 31 (2611a_Moro_e_mentre_sospiro_RDB.mei, line 120)\n", + "Getting 2614a_Ecco_moriro_dunque_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2614a_Ecco_moriro_dunque_RDB.mei: ID m-5 already defined, line 137, column 31 (2614a_Ecco_moriro_dunque_RDB.mei, line 137)\n", + "Getting 2615_Arde_il_mio_cor_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2615_Arde_il_mio_cor_RDB.mei: ID m-5 already defined, line 165, column 31 (2615_Arde_il_mio_cor_RDB.mei, line 165)\n", + "Getting 2608b_Or_che_in_gioia_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2608b_Or_che_in_gioia_RDB.mei: ID m-5 already defined, line 196, column 31 (2608b_Or_che_in_gioia_RDB.mei, line 196)\n", + "Getting 2617b_Il_sol_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2617b_Il_sol_RDB.mei: ID m-5 already defined, line 115, column 31 (2617b_Il_sol_RDB.mei, line 115)\n", + "Getting 2616_Se_chiudete_nel_core_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2616_Se_chiudete_nel_core_RDB.mei: ID m-5 already defined, line 137, column 31 (2616_Se_chiudete_nel_core_RDB.mei, line 137)\n", + "Getting 2619_S_io_non_miro_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2619_S_io_non_miro_RDB.mei: ID m-5 already defined, line 166, column 31 (2619_S_io_non_miro_RDB.mei, line 166)\n", + "Getting 2617a_Il_sol_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2617a_Il_sol_RDB.mei: ID m-5 already defined, line 129, column 31 (2617a_Il_sol_RDB.mei, line 129)\n", + "Getting 2618_Gioite_voi_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2618_Gioite_voi_RDB.mei: ID m-5 already defined, line 138, column 31 (2618_Gioite_voi_RDB.mei, line 138)\n", + "Getting 2624_Felicissimo_sonno_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2624_Felicissimo_sonno_RDB.mei: ID m-5 already defined, line 190, column 31 (2624_Felicissimo_sonno_RDB.mei, line 190)\n", + "Getting 2621_Dolcissima_mia_vita_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2621_Dolcissima_mia_vita_RDB.mei: ID m-5 already defined, line 229, column 31 (2621_Dolcissima_mia_vita_RDB.mei, line 229)\n", + "Getting 2622_O_dolorosa_gioia_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2622_O_dolorosa_gioia_RDB.mei: ID m-5 already defined, line 158, column 31 (2622_O_dolorosa_gioia_RDB.mei, line 158)\n", + "Getting 2620_Itene_o_miei_sospiri_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2620_Itene_o_miei_sospiri_RDB.mei: ID m-5 already defined, line 211, column 31 (2620_Itene_o_miei_sospiri_RDB.mei, line 211)\n", + "Getting 2626_Occhi_del_mio_cor_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2626_Occhi_del_mio_cor_RDB.mei: ID m-5 already defined, line 137, column 31 (2626_Occhi_del_mio_cor_RDB.mei, line 137)\n", + "Getting 2625_Se_vi_duol_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2625_Se_vi_duol_RDB.mei: ID m-5 already defined, line 151, column 31 (2625_Se_vi_duol_RDB.mei, line 151)\n", + "Getting 2629_O_voi_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2629_O_voi_RDB.mei: ID m-5 already defined, line 124, column 31 (2629_O_voi_RDB.mei, line 124)\n", + "Getting 2627_Languisce_al_fin_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2627_Languisce_al_fin_RDB.mei: ID m-5 already defined, line 131, column 31 (2627_Languisce_al_fin_RDB.mei, line 131)\n", + "Getting 2630_Correte_amanti_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2630_Correte_amanti_RDB.mei: ID m-5 already defined, line 152, column 31 (2630_Correte_amanti_RDB.mei, line 152)\n", + "Getting 2628_Merce_grido_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2628_Merce_grido_RDB.mei: ID m-5 already defined, line 131, column 31 (2628_Merce_grido_RDB.mei, line 131)\n", + "Getting 2631_Asciugate_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2631_Asciugate_RDB.mei: ID m-5 already defined, line 193, column 31 (2631_Asciugate_RDB.mei, line 193)\n", + "Getting 2633_Deh_coprite_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2633_Deh_coprite_RDB.mei: ID m-5 already defined, line 127, column 31 (2633_Deh_coprite_RDB.mei, line 127)\n", + "Getting 2632_Tu_m_uccidi_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2632_Tu_m_uccidi_RDB.mei: ID m-5 already defined, line 138, column 31 (2632_Tu_m_uccidi_RDB.mei, line 138)\n", + "Getting 2634a_Poiche_l_avida_sete_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2634a_Poiche_l_avida_sete_RDB.mei: ID m-5 already defined, line 127, column 31 (2634a_Poiche_l_avida_sete_RDB.mei, line 127)\n", + "Getting 2634b_Poiche_l_avida_sete_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2634b_Poiche_l_avida_sete_RDB.mei: ID m-5 already defined, line 132, column 31 (2634b_Poiche_l_avida_sete_RDB.mei, line 132)\n", + "Getting 2635_O_tenebroso_giorno_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2635_O_tenebroso_giorno_RDB.mei: ID m-5 already defined, line 162, column 31 (2635_O_tenebroso_giorno_RDB.mei, line 162)\n", + "Getting 2636_Se_tu_fuggi_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2636_Se_tu_fuggi_RDB.mei: ID m-5 already defined, line 187, column 31 (2636_Se_tu_fuggi_RDB.mei, line 187)\n", + "Getting 2640_Tu_segui_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2640_Tu_segui_RDB.mei: ID m-5 already defined, line 101, column 31 (2640_Tu_segui_RDB.mei, line 101)\n", + "Getting 2642_Chiaro_risplender_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2642_Chiaro_risplender_RDB.mei: ID m-5 already defined, line 122, column 31 (2642_Chiaro_risplender_RDB.mei, line 122)\n", + "Getting 2639_Belta_poi_che_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2639_Belta_poi_che_RDB.mei: ID m-5 already defined, line 178, column 31 (2639_Belta_poi_che_RDB.mei, line 178)\n", + "Getting 2538_Se_la_mia_morte_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2538_Se_la_mia_morte_RDB.mei: ID m-5 already defined, line 199, column 31 (2538_Se_la_mia_morte_RDB.mei, line 199)\n", + "Getting 2644_Mille_volte_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2644_Mille_volte_RDB.mei: ID m-5 already defined, line 128, column 31 (2644_Mille_volte_RDB.mei, line 128)\n", + "Getting 2649_Candido_e_verde_fiore_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2649_Candido_e_verde_fiore_RDB.mei: ID m-5 already defined, line 122, column 31 (2649_Candido_e_verde_fiore_RDB.mei, line 122)\n", + "Getting 2645_O_dolce_mio_tesoro_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2645_O_dolce_mio_tesoro_RDB.mei: ID m-5 already defined, line 129, column 31 (2645_O_dolce_mio_tesoro_RDB.mei, line 129)\n", + "Getting 2648_Alme_d_Amor_rubelle_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2648_Alme_d_Amor_rubelle_RDB.mei: ID m-5 already defined, line 101, column 31 (2648_Alme_d_Amor_rubelle_RDB.mei, line 101)\n", + "Getting 2646_Deh_come_invan_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2646_Deh_come_invan_RDB.mei: ID m-5 already defined, line 108, column 31 (2646_Deh_come_invan_RDB.mei, line 108)\n", + "Getting 2651_Ardo_per_te_RDB\n", + "Found 6 page breaks to remove.\n", + "Found 13 section breaks to remove.\n", + "Found 4 annotations to remove.\n", + "Found 8 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 4 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2651_Ardo_per_te_RDB_rev.mei\n", + "Getting 2654_Moro_lasso_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 4 annotations to remove.\n", + "Found 1 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 0 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2654_Moro_lasso_RDB_rev.mei\n", + "Getting 2652_Ancide_sol_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 10 section breaks to remove.\n", + "Found 4 annotations to remove.\n", + "Found 2 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 0 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2652_Ancide_sol_RDB_rev.mei\n", + "Getting 2653_Quel_no_crudel_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 10 section breaks to remove.\n", + "Found 4 annotations to remove.\n", + "Found 6 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 1 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2653_Quel_no_crudel_RDB_rev.mei\n", + "Getting 2650_Ardita_zanzaretta_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 4 annotations to remove.\n", + "Found 10 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2650_Ardita_zanzaretta_RDB_rev.mei\n", + "Getting 2656_Al_mio_gioir_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 13 section breaks to remove.\n", + "Found 4 annotations to remove.\n", + "Found 1 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 0 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2656_Al_mio_gioir_RDB_rev.mei\n", + "Getting 2655_Volan_quasi_farfalle_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 15 section breaks to remove.\n", + "Found 4 annotations to remove.\n", + "Found 5 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 1 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2655_Volan_quasi_farfalle_RDB_rev.mei\n", + "Getting 2658_Ancor_che_per_amarti_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 13 section breaks to remove.\n", + "Found 4 annotations to remove.\n", + "Found 10 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 0 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2658_Ancor_che_per_amarti_RDB_rev.mei\n", + "Getting 2657_Tu_piangi_o_Fille_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 15 section breaks to remove.\n", + "Found 4 annotations to remove.\n", + "Found 4 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 4 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2657_Tu_piangi_o_Fille_RDB_rev.mei\n", + "Getting 2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 8 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 1 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 0 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB_rev.mei\n", + "Getting 2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB\n", + "Found 6 page breaks to remove.\n", + "Found 17 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 11 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 7 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB_rev.mei\n", + "Getting 2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB\n", + "Found 2 page breaks to remove.\n", + "Found 6 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 8 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 1 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB_rev.mei\n", + "Getting 2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 5 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB_rev.mei\n", + "Getting 2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 7 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 4 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB_rev.mei\n", + "Getting 2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 8 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB_rev.mei\n", + "Getting 2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB\n", + "Found 6 page breaks to remove.\n", + "Found 14 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 14 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 12 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB_rev.mei\n", + "Getting 2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB\n", + "Found 3 page breaks to remove.\n", + "Found 9 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 12 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 11 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB_rev.mei\n", + "Getting 2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 13 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 31 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found scoreDef with meter.count=3 and meter.unit=1\n", + "Found 1 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 26 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB_rev.mei\n", + "Getting 2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB\n", + "Found 6 page breaks to remove.\n", + "Found 16 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 23 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 14 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB_rev.mei\n", + "Getting 2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB\n", + "Found 3 page breaks to remove.\n", + "Found 9 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 7 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB_rev.mei\n", + "Getting 2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei: ID m-5 already defined, line 70, column 31 (2675_Feria_VI_In_Parasceve_In_iij_Noct_Resp_8_RDB.mei, line 70)\n", + "Getting 2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 7 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 5 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB_rev.mei\n", + "Getting 2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 8 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 2 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB_rev.mei\n", + "Getting 2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 13 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 11 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 9 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB_rev.mei\n", + "Getting 2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 10 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 4 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB_rev.mei\n", + "Getting 2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 15 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 34 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 30 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB_rev.mei\n", + "Getting 2585_Non_mi_toglia_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2585_Non_mi_toglia_RDB.mei: ID m-5 already defined, line 111, column 31 (2585_Non_mi_toglia_RDB.mei, line 111)\n", + "Getting 2604_Talor_sano_desio_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2604_Talor_sano_desio_RDB.mei: ID m-5 already defined, line 214, column 31 (2604_Talor_sano_desio_RDB.mei, line 214)\n", + "Getting 2726_Ne_reminiscaris_RDB\n", + "Found 3 page breaks to remove.\n", + "Found 9 section breaks to remove.\n", + "Found 4 annotations to remove.\n", + "Found 5 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 4 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2726_Ne_reminiscaris_RDB_rev.mei\n", + "Getting 2731_Gagliarda_del_Principe_di_Venosa_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2731_Gagliarda_del_Principe_di_Venosa_RDB.mei: ID m-5 already defined, line 68, column 31 (2731_Gagliarda_del_Principe_di_Venosa_RDB.mei, line 68)\n", + "Getting 2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 8 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 2 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB_rev.mei\n", + "Getting 2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 11 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB_rev.mei\n", + "Getting 2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 10 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 14 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 13 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB_rev.mei\n", + "Getting 2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 8 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 5 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB_rev.mei\n", + "Getting 2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 8 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 7 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 0 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB_rev.mei\n", + "Getting 2691_Dignare_me_RDB\n", + "Found 3 page breaks to remove.\n", + "Found 9 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 5 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 4 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2691_Dignare_me_RDB_rev.mei\n", + "Getting 2694_Hei_mihi_Domine_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 1 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 1 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2694_Hei_mihi_Domine_RDB_rev.mei\n", + "Getting 2693_Domine_ne_despicias_deprecationem_meam_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 10 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 3 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2693_Domine_ne_despicias_deprecationem_meam_RDB_rev.mei\n", + "Getting 2695_Laboravi_in_gemitu_meo_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 13 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 1 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 1 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2695_Laboravi_in_gemitu_meo_RDB_rev.mei\n", + "Getting 2688_Venit_lumen_tuum_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 2 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 1 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2688_Venit_lumen_tuum_RDB_rev.mei\n", + "Getting 2690_Reminiscere_miserationum_tuarum_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 13 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 5 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 5 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2690_Reminiscere_miserationum_tuarum_RDB_rev.mei\n", + "Getting 2696_Peccantem_me_quotidie_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 15 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 6 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 6 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2696_Peccantem_me_quotidie_RDB_rev.mei\n", + "Getting 2692_Sancti_Spiritus_Domine_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 9 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 6 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2692_Sancti_Spiritus_Domine_RDB_rev.mei\n", + "Getting 2698_Exaudi_Deus_deprecationem_meam_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 2 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 2 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2698_Exaudi_Deus_deprecationem_meam_RDB_rev.mei\n", + "Getting 2697_O_vos_omnes_qui_transitis_RDB\n", + "Found 3 page breaks to remove.\n", + "Found 9 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 16 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 16 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2697_O_vos_omnes_qui_transitis_RDB_rev.mei\n", + "Getting 2700_O_crux_benedicta_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 3 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2700_O_crux_benedicta_RDB_rev.mei\n", + "Getting 2702_Deus_refugium_et_virtus_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 5 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 5 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2702_Deus_refugium_et_virtus_RDB_rev.mei\n", + "Getting 2699_Precibus_et_meritis_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 0 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 0 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2699_Precibus_et_meritis_RDB_rev.mei\n", + "Getting 2705_Maria_Mater_gratiæ_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 13 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 4 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 2 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2705_Maria_Mater_gratiæ_RDB_rev.mei\n", + "Getting 2701_Tribularer_si_nescirem_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 13 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 3 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2701_Tribularer_si_nescirem_RDB_rev.mei\n", + "Getting 2710_O_Oriens_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 3 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2710_O_Oriens_RDB_rev.mei\n", + "Getting 2704_Illumina_faciem_tuam_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 13 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 8 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 8 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2704_Illumina_faciem_tuam_RDB_rev.mei\n", + "Getting 2703_Tribulationem_et_dolorem_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 14 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 9 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 9 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 2703_Tribulationem_et_dolorem_RDB_rev.mei\n", + "Getting 2706_Virgo_benedicta_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 2 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 2 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2706_Virgo_benedicta_RDB_rev.mei\n", + "Getting 2708_Sana_me_Domine_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 10 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 10 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2708_Sana_me_Domine_RDB_rev.mei\n", + "Getting 2712_Gaudeamus_omnes_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 1 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 1 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2712_Gaudeamus_omnes_RDB_rev.mei\n", + "Getting 2713_Veni_Creator_Spiritus_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 1 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 1 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2713_Veni_Creator_Spiritus_RDB_rev.mei\n", + "Getting 2715_Adoramus_te_RDB\n", + "Found 3 page breaks to remove.\n", + "Found 9 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 1 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 1 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2715_Adoramus_te_RDB_rev.mei\n", + "Getting 2724_O_anima_sanctissima_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 3 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2724_O_anima_sanctissima_RDB_rev.mei\n", + "Getting 2718_Verba_mea_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 2 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 2 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2718_Verba_mea_RDB_rev.mei\n", + "Getting 2722_Ad_te_levavi_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 2 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 2 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2722_Ad_te_levavi_RDB_rev.mei\n", + "Getting 2725_Illumina_nos_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 15 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 0 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 0 total color notes to correct as supplied.\n", + "Found 7 staff labels to correct.\n", + "Saved updated 2725_Illumina_nos_RDB_rev.mei\n", + "Getting 2714_O_sacrum_convivium_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 3 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2714_O_sacrum_convivium_RDB_rev.mei\n", + "Getting 2720_Ne_derelinquas_me_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 4 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 4 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2720_Ne_derelinquas_me_RDB_rev.mei\n", + "Getting 2711_Discedite_a_me_omnes_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 2 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 2 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2711_Discedite_a_me_omnes_RDB_rev.mei\n", + "Getting 2716_Veni_sponsa_Christi_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 12 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 2 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 2 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2716_Veni_sponsa_Christi_RDB_rev.mei\n", + "Getting 2563b_Mentre_Madonna_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2563b_Mentre_Madonna_RDB.mei: ID m-5 already defined, line 117, column 31 (2563b_Mentre_Madonna_RDB.mei, line 117)\n", + "Getting 2707_Da_pacem_domine_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 1 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 1 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 1 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2707_Da_pacem_domine_RDB_rev.mei\n", + "Getting 2567b_Tirsi_morir_volea_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2567b_Tirsi_morir_volea_RDB.mei: ID m-5 already defined, line 114, column 31 (2567b_Tirsi_morir_volea_RDB.mei, line 114)\n", + "Getting 2614b_Ecco_moriro_dunque_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2614b_Ecco_moriro_dunque_RDB.mei: ID m-5 already defined, line 106, column 31 (2614b_Ecco_moriro_dunque_RDB.mei, line 106)\n", + "Getting 2565_Si_gioioso_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2565_Si_gioioso_RDB.mei: ID m-5 already defined, line 127, column 31 (2565_Si_gioioso_RDB.mei, line 127)\n", + "Getting 2577b_Se_cosi_dolce_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2577b_Se_cosi_dolce_RDB.mei: ID m-5 already defined, line 105, column 31 (2577b_Se_cosi_dolce_RDB.mei, line 105)\n", + "Getting 2567a_Tirsi_morir_volea_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2567a_Tirsi_morir_volea_RDB.mei: ID m-5 already defined, line 138, column 31 (2567a_Tirsi_morir_volea_RDB.mei, line 138)\n", + "Getting 2568_Mentre_mia_stella_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2568_Mentre_mia_stella_RDB.mei: ID m-5 already defined, line 165, column 31 (2568_Mentre_mia_stella_RDB.mei, line 165)\n", + "Getting 1021_Son_si_belle_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/1021_Son_si_belle_RDB.mei: ID m-5 already defined, line 128, column 31 (1021_Son_si_belle_RDB.mei, line 128)\n", + "Getting 2572_Bella_angioletta_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2572_Bella_angioletta_RDB.mei: ID m-5 already defined, line 161, column 31 (2572_Bella_angioletta_RDB.mei, line 161)\n", + "Getting 2573a_Caro_amoroso_neo_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2573a_Caro_amoroso_neo_RDB.mei: ID m-5 already defined, line 142, column 31 (2573a_Caro_amoroso_neo_RDB.mei, line 142)\n", + "Getting 2564a_Se_da_si_nobil_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2564a_Se_da_si_nobil_RDB.mei: ID m-5 already defined, line 186, column 31 (2564a_Se_da_si_nobil_RDB.mei, line 186)\n", + "Getting 2562_Gel_ha_madonna_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2562_Gel_ha_madonna_RDB.mei: ID m-5 already defined, line 169, column 31 (2562_Gel_ha_madonna_RDB.mei, line 169)\n", + "Getting 2564b_Se_da_si_nobil_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2564b_Se_da_si_nobil_RDB.mei: ID m-5 already defined, line 131, column 31 (2564b_Se_da_si_nobil_RDB.mei, line 131)\n", + "Getting 2563a_Mentre_Madonna_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2563a_Mentre_Madonna_RDB.mei: ID m-5 already defined, line 176, column 31 (2563a_Mentre_Madonna_RDB.mei, line 176)\n", + "Getting 2559b_Baci_soavi_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2559b_Baci_soavi_RDB.mei: ID m-5 already defined, line 135, column 31 (2559b_Baci_soavi_RDB.mei, line 135)\n", + "Getting 2571a_Felice_primavera_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2571a_Felice_primavera_RDB.mei: ID m-5 already defined, line 155, column 31 (2571a_Felice_primavera_RDB.mei, line 155)\n", + "Getting 2566_O_dolce_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2566_O_dolce_RDB.mei: ID m-5 already defined, line 208, column 31 (2566_O_dolce_RDB.mei, line 208)\n", + "Getting 2569_Non_mirar_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2569_Non_mirar_RDB.mei: ID m-5 already defined, line 155, column 31 (2569_Non_mirar_RDB.mei, line 155)\n", + "Getting 2570_Questi_leggiadri_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2570_Questi_leggiadri_RDB.mei: ID m-5 already defined, line 255, column 31 (2570_Questi_leggiadri_RDB.mei, line 255)\n", + "Getting 2575a_Se_per_lieve_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2575a_Se_per_lieve_RDB.mei: ID m-5 already defined, line 142, column 31 (2575a_Se_per_lieve_RDB.mei, line 142)\n", + "Getting 2574_Hai_rotto_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2574_Hai_rotto_RDB.mei: xml:id : attribute value #CG is not an NCName, line 7, column 99 (2574_Hai_rotto_RDB.mei, line 7)\n", + "Getting 2571b_Felice_primavera_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2571b_Felice_primavera_RDB.mei: ID m-5 already defined, line 93, column 31 (2571b_Felice_primavera_RDB.mei, line 93)\n", + "Getting 2573b_Caro_amoroso_neo_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2573b_Caro_amoroso_neo_RDB.mei: ID m-5 already defined, line 98, column 31 (2573b_Caro_amoroso_neo_RDB.mei, line 98)\n", + "Getting 2576_In_piu_leggiadro_velo_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2576_In_piu_leggiadro_velo_RDB.mei: ID m-5 already defined, line 174, column 31 (2576_In_piu_leggiadro_velo_RDB.mei, line 174)\n", + "Getting 2578_Se_taccio_il_duol_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2578_Se_taccio_il_duol_RDB.mei: ID m-5 already defined, line 132, column 31 (2578_Se_taccio_il_duol_RDB.mei, line 132)\n", + "Getting 2577a_Se_cosi_dolce_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2577a_Se_cosi_dolce_RDB.mei: ID m-5 already defined, line 146, column 31 (2577a_Se_cosi_dolce_RDB.mei, line 146)\n", + "Getting 2579a_O_com_e_gran_martire_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2579a_O_com_e_gran_martire_RDB.mei: ID m-5 already defined, line 120, column 31 (2579a_O_com_e_gran_martire_RDB.mei, line 120)\n", + "Getting 2581b_Non_e_questa_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2581b_Non_e_questa_RDB.mei: ID m-5 already defined, line 122, column 31 (2581b_Non_e_questa_RDB.mei, line 122)\n", + "Getting 2582_Candida_man_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2582_Candida_man_RDB.mei: ID m-5 already defined, line 213, column 31 (2582_Candida_man_RDB.mei, line 213)\n", + "Getting 2581a_Non_e_questa_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2581a_Non_e_questa_RDB.mei: ID m-5 already defined, line 172, column 31 (2581a_Non_e_questa_RDB.mei, line 172)\n", + "Getting 1018b_Dalle_odorate_spoglie_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/1018b_Dalle_odorate_spoglie_RDB.mei: ID m-5 already defined, line 130, column 31 (1018b_Dalle_odorate_spoglie_RDB.mei, line 130)\n", + "Getting 2579b_O_com_e_gran_martire_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2579b_O_com_e_gran_martire_RDB.mei: ID m-5 already defined, line 146, column 31 (2579b_O_com_e_gran_martire_RDB.mei, line 146)\n", + "Getting 1018a_Dalle_odorate_spoglie_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/1018a_Dalle_odorate_spoglie_RDB.mei: ID m-5 already defined, line 112, column 31 (1018a_Dalle_odorate_spoglie_RDB.mei, line 112)\n", + "Getting 2586a_Voi_volete_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2586a_Voi_volete_RDB.mei: ID m-5 already defined, line 96, column 31 (2586a_Voi_volete_RDB.mei, line 96)\n", + "Getting 2584_All_apparir_di_quelle_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2584_All_apparir_di_quelle_RDB.mei: ID m-5 already defined, line 146, column 31 (2584_All_apparir_di_quelle_RDB.mei, line 146)\n", + "Getting 2583_Non_mai_non_cangero_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2583_Non_mai_non_cangero_RDB.mei: ID m-5 already defined, line 139, column 31 (2583_Non_mai_non_cangero_RDB.mei, line 139)\n", + "Getting 2586b_Voi_volete_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2586b_Voi_volete_RDB.mei: ID m-5 already defined, line 128, column 31 (2586b_Voi_volete_RDB.mei, line 128)\n", + "Getting 2587_Ahi_disperata_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2587_Ahi_disperata_RDB.mei: ID m-5 already defined, line 107, column 31 (2587_Ahi_disperata_RDB.mei, line 107)\n", + "Getting 2575b_Se_per_lieve_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2575b_Se_per_lieve_RDB.mei: ID m-5 already defined, line 139, column 31 (2575b_Se_per_lieve_RDB.mei, line 139)\n", + "Getting 2589_Del_bel_de_bei_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2589_Del_bel_de_bei_RDB.mei: ID m-5 already defined, line 113, column 31 (2589_Del_bel_de_bei_RDB.mei, line 113)\n", + "Getting 2730b_Canzon_francese_del_Principe_vers_nor_RDB\n", + "Found 3 page breaks to remove.\n", + "Found 10 section breaks to remove.\n", + "Found 2 annotations to remove.\n", + "Found 1 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 1 total color notes to correct as supplied.\n", + "Found 4 staff labels to correct.\n", + "Saved updated 2730b_Canzon_francese_del_Principe_vers_nor_RDB_rev.mei\n", + "Getting 2588_Languisco_e_moro_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2588_Languisco_e_moro_RDB.mei: ID m-5 already defined, line 124, column 31 (2588_Languisco_e_moro_RDB.mei, line 124)\n", + "Getting 2591_Dolce_spirto_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2591_Dolce_spirto_RDB.mei: ID m-5 already defined, line 131, column 31 (2591_Dolce_spirto_RDB.mei, line 131)\n", + "Getting 2590_Ahi_dispietata_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2590_Ahi_dispietata_RDB.mei: ID m-5 already defined, line 138, column 31 (2590_Ahi_dispietata_RDB.mei, line 138)\n", + "Getting 2592a_Sospirava_il_mio_core_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2592a_Sospirava_il_mio_core_RDB.mei: ID m-5 already defined, line 131, column 31 (2592a_Sospirava_il_mio_core_RDB.mei, line 131)\n", + "Getting 2592b_Sospirava_il_mio_core_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2592b_Sospirava_il_mio_core_RDB.mei: ID m-5 already defined, line 128, column 31 (2592b_Sospirava_il_mio_core_RDB.mei, line 128)\n", + "Getting 2593_Veggio_si_dal_mio_sole_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2593_Veggio_si_dal_mio_sole_RDB.mei: ID m-5 already defined, line 128, column 31 (2593_Veggio_si_dal_mio_sole_RDB.mei, line 128)\n", + "Getting 2594_Non_t_amo_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2594_Non_t_amo_RDB.mei: ID m-5 already defined, line 107, column 31 (2594_Non_t_amo_RDB.mei, line 107)\n", + "Getting 2595b_Meraviglia_d_Amore_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2595b_Meraviglia_d_Amore_RDB.mei: ID m-5 already defined, line 156, column 31 (2595b_Meraviglia_d_Amore_RDB.mei, line 156)\n", + "Getting 2595a_Meraviglia_d_Amore_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2595a_Meraviglia_d_Amore_RDB.mei: ID m-5 already defined, line 107, column 31 (2595a_Meraviglia_d_Amore_RDB.mei, line 107)\n", + "Getting 2596_Crudelissima_doglia_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2596_Crudelissima_doglia_RDB.mei: ID m-5 already defined, line 120, column 31 (2596_Crudelissima_doglia_RDB.mei, line 120)\n", + "Getting 2598_Ancidetemi_pur_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2598_Ancidetemi_pur_RDB.mei: ID m-5 already defined, line 145, column 31 (2598_Ancidetemi_pur_RDB.mei, line 145)\n", + "Getting 2600_Deh_se_gia_fu_crudel_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2600_Deh_se_gia_fu_crudel_RDB.mei: ID m-5 already defined, line 163, column 31 (2600_Deh_se_gia_fu_crudel_RDB.mei, line 163)\n", + "Getting 2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB\n", + "Error parsing /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output/2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei: ID m-5 already defined, line 70, column 31 (2681_Sabbati_Sancti_In_ij_Noct_Resp_5_RDB.mei, line 70)\n", + "Getting 2686_Benedictus_RDB\n", + "Found 5 page breaks to remove.\n", + "Found 14 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 3 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 3 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2686_Benedictus_RDB_rev.mei\n", + "Getting 2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB\n", + "Found 4 page breaks to remove.\n", + "Found 11 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 3 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 0 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB_rev.mei\n", + "Getting 1369_Ave_regina_cœlorum_RDB\n", + "Found 6 page breaks to remove.\n", + "Found 13 section breaks to remove.\n", + "Found 5 annotations to remove.\n", + "Found 2 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 2 total color notes to correct as supplied.\n", + "Found 5 staff labels to correct.\n", + "Saved updated 1369_Ave_regina_cœlorum_RDB_rev.mei\n", + "Getting 2687_Miserere_RDB\n", + "Found 7 page breaks to remove.\n", + "Found 20 section breaks to remove.\n", + "Found 3 annotations to remove.\n", + "Found 0 direction elements to remove.\n", + "Found 0 ligatures to remove.\n", + "Found 0 variants to correct.\n", + "Anchored text removed successfully!\n", + "Anchored text removed successfully!\n", + "Checking and Removing timestamp.\n", + "Found 0 3/1 measures check for mRests.\n", + "Corrected 0 mRests\n", + "Found 0 chord elements to remove.\n", + "Found 0 slurs to correct as ties.\n", + "Found 0 dir tags to remove\n", + "Found 0 total color notes to correct as supplied.\n", + "Found 6 staff labels to correct.\n", + "Saved updated 2687_Miserere_RDB_rev.mei\n" + ] + } + ] + }, + { + "cell_type": "code", + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "5ef1dd15", + "outputId": "cf1f7b31-b026-4d3c-e47e-a8d990255b6c" + }, + "source": [ + "import os\n", + "import glob\n", + "from lxml import etree\n", + "\n", + "output_folder = \"/content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output_Music_Feature_Correction\" # Define output_folder\n", + "\n", + "# Get list of MEI files from the output folder\n", + "mei_files_in_output = glob.glob(os.path.join(output_folder, '*.mei'))\n", + "print(f\"Found {len(mei_files_in_output)} MEI files in {output_folder}\")\n", + "\n", + "ns = {'mei': 'http://www.music-encoding.org/ns/mei/5'}\n", + "xml_ns = '{http://www.w3.org/XML/1998/namespace}' # Namespace for xml:id\n", + "\n", + "# Process each MEI file\n", + "for mei_file_path in mei_files_in_output:\n", + " print(f\"Processing {os.path.basename(mei_file_path)}...\")\n", + " try:\n", + " # Parse MEI\n", + " parser = etree.XMLParser(remove_blank_text=True)\n", + " tree = etree.parse(mei_file_path, parser=parser)\n", + " root = tree.getroot()\n", + "\n", + " # Counter for generating new xml:ids\n", + " new_id_counter = 1\n", + "\n", + " # Find all elements with an xml:id attribute\n", + " # Using xpath to find all elements with an attribute in the xml namespace named 'id'\n", + " elements_with_xml_id = root.xpath('//*[@xml:id]', namespaces={'xml': xml_ns[1:-1]})\n", + "\n", + " print(f\" Found {len(elements_with_xml_id)} elements with xml:id.\")\n", + "\n", + " # Iterate through the elements and renumber non-editor xml:ids\n", + " for element in elements_with_xml_id:\n", + " current_xml_id = element.get(xml_ns + 'id')\n", + "\n", + " # Check if the element is an editor <persName> within a <respStmt>\n", + " is_editor_persname = False\n", + " if element.tag == '{http://www.music-encoding.org/ns/mei/5}persName':\n", + " # Check if its parent is respStmt and that respStmt is for editors\n", + " parent = element.getparent()\n", + " if parent is not None and parent.tag == '{http://www.music-encoding.org/ns/mei/5}respStmt':\n", + " # Check if there's a <resp>editor</resp> within this respStmt\n", + " resp_element = parent.find('./mei:resp', namespaces=ns)\n", + " if resp_element is not None and resp_element.text == 'editor':\n", + " is_editor_persname = True\n", + "\n", + " # If it's not an editor persName, renumber the xml:id\n", + " if not is_editor_persname:\n", + " new_xml_id = f\"m-{new_id_counter}\"\n", + " element.set(xml_ns + 'id', new_xml_id)\n", + " # print(f\" Renumbered xml:id '{current_xml_id}' to '{new_xml_id}' for element {element.tag}.\")\n", + " new_id_counter += 1\n", + " # else:\n", + " # print(f\" Keeping xml:id '{current_xml_id}' for editor element {element.tag}.\")\n", + "\n", + "\n", + " print(f\" Renumbering complete. Total new standard IDs assigned: {new_id_counter - 1}.\")\n", + "\n", + "\n", + " # Save the modified MEI file\n", + " # Overwrite the original file in the output folder\n", + " tree.write(mei_file_path, pretty_print=True, encoding='utf-8', xml_declaration=True)\n", + " print(f\" Successfully updated {os.path.basename(mei_file_path)}\")\n", + "\n", + "\n", + " except Exception as e:\n", + " print(f\"Error processing {os.path.basename(mei_file_path)}: {e}\")\n", + "\n", + "print(\"XML ID renumbering process completed.\")" + ], + "execution_count": 18, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "Found 81 MEI files in /content/drive/MyDrive/Métadonnées_Gesualdo/Fichiers_MEI_output_Music_Feature_Correction\n", + "Processing 2729_In_te_Domine_speravi_RDB_rev.mei...\n", + " Found 2035 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2035.\n", + " Successfully updated 2729_In_te_Domine_speravi_RDB_rev.mei\n", + "Processing 2726_Ne_reminiscaris_1585_02_RDB_rev.mei...\n", + " Found 2112 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2112.\n", + " Successfully updated 2726_Ne_reminiscaris_1585_02_RDB_rev.mei\n", + "Processing 2580_Sento_che_nel_partire_RDB_rev.mei...\n", + " Found 3256 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3256.\n", + " Successfully updated 2580_Sento_che_nel_partire_RDB_rev.mei\n", + "Processing 2609a_Cor_mio_deh_non_piangete_RDB_rev.mei...\n", + " Found 1283 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 1283.\n", + " Successfully updated 2609a_Cor_mio_deh_non_piangete_RDB_rev.mei\n", + "Processing 2613_A_voi_mentre_il_mio_core_RDB_rev.mei...\n", + " Found 2438 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2438.\n", + " Successfully updated 2613_A_voi_mentre_il_mio_core_RDB_rev.mei\n", + "Processing 2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB_rev.mei...\n", + " Found 2768 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2768.\n", + " Successfully updated 2685_Sabbati_Sancti_In_iij_Noct_Resp_9_RDB_rev.mei\n", + "Processing 2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB_rev.mei...\n", + " Found 2651 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2651.\n", + " Successfully updated 2680_Sabbati_Sancti_In_ij_Noct_Resp_4_RDB_rev.mei\n", + "Processing 2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB_rev.mei...\n", + " Found 2244 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2244.\n", + " Successfully updated 2684_Sabbati_Sancti_In_iij_Noct_Resp_8_RDB_rev.mei\n", + "Processing 2691_Dignare_me_RDB_rev.mei...\n", + " Found 2005 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2005.\n", + " Successfully updated 2691_Dignare_me_RDB_rev.mei\n", + "Processing 2687_Miserere_RDB_rev.mei...\n", + " Found 7167 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 7167.\n", + " Successfully updated 2687_Miserere_RDB_rev.mei\n", + "Processing 2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB_rev.mei...\n", + " Found 3042 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3042.\n", + " Successfully updated 2682_Sabbati_Sancti_In_ij_Noct_Resp_6_RDB_rev.mei\n", + "Processing 2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB_rev.mei...\n", + " Found 2054 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2054.\n", + " Successfully updated 2683_Sabbati_Sancti_In_iij_Noct_Resp_7_RDB_rev.mei\n", + "Processing 1369_Ave_regina_cœlorum_RDB_rev.mei...\n", + " Found 2719 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2719.\n", + " Successfully updated 1369_Ave_regina_cœlorum_RDB_rev.mei\n", + "Processing 2686_Benedictus_RDB_rev.mei...\n", + " Found 5111 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 5111.\n", + " Successfully updated 2686_Benedictus_RDB_rev.mei\n", + "Processing 2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB_rev.mei...\n", + " Found 2537 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2537.\n", + " Successfully updated 2664_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_6_RDB_rev.mei\n", + "Processing 2690_Reminiscere_miserationum_tuarum_RDB_rev.mei...\n", + " Found 2974 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2974.\n", + " Successfully updated 2690_Reminiscere_miserationum_tuarum_RDB_rev.mei\n", + "Processing 2692_Sancti_Spiritus_Domine_RDB_rev.mei...\n", + " Found 1940 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 1940.\n", + " Successfully updated 2692_Sancti_Spiritus_Domine_RDB_rev.mei\n", + "Processing 2688_Venit_lumen_tuum_RDB_rev.mei...\n", + " Found 2295 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2295.\n", + " Successfully updated 2688_Venit_lumen_tuum_RDB_rev.mei\n", + "Processing 2695_Laboravi_in_gemitu_meo_RDB_rev.mei...\n", + " Found 2667 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2667.\n", + " Successfully updated 2695_Laboravi_in_gemitu_meo_RDB_rev.mei\n", + "Processing 2697_O_vos_omnes_qui_transitis_RDB_rev.mei...\n", + " Found 2100 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2100.\n", + " Successfully updated 2697_O_vos_omnes_qui_transitis_RDB_rev.mei\n", + "Processing 2694_Hei_mihi_Domine_RDB_rev.mei...\n", + " Found 2724 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2724.\n", + " Successfully updated 2694_Hei_mihi_Domine_RDB_rev.mei\n", + "Processing 2700_O_crux_benedicta_RDB_rev.mei...\n", + " Found 2539 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2539.\n", + " Successfully updated 2700_O_crux_benedicta_RDB_rev.mei\n", + "Processing 2696_Peccantem_me_quotidie_RDB_rev.mei...\n", + " Found 3460 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3460.\n", + " Successfully updated 2696_Peccantem_me_quotidie_RDB_rev.mei\n", + "Processing 2693_Domine_ne_despicias_deprecationem_meam_RDB_rev.mei...\n", + " Found 2245 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2245.\n", + " Successfully updated 2693_Domine_ne_despicias_deprecationem_meam_RDB_rev.mei\n", + "Processing 2698_Exaudi_Deus_deprecationem_meam_RDB_rev.mei...\n", + " Found 2600 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2600.\n", + " Successfully updated 2698_Exaudi_Deus_deprecationem_meam_RDB_rev.mei\n", + "Processing 2702_Deus_refugium_et_virtus_RDB_rev.mei...\n", + " Found 2832 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2832.\n", + " Successfully updated 2702_Deus_refugium_et_virtus_RDB_rev.mei\n", + "Processing 2701_Tribularer_si_nescirem_RDB_rev.mei...\n", + " Found 2753 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2753.\n", + " Successfully updated 2701_Tribularer_si_nescirem_RDB_rev.mei\n", + "Processing 2703_Tribulationem_et_dolorem_RDB_rev.mei...\n", + " Found 2893 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2893.\n", + " Successfully updated 2703_Tribulationem_et_dolorem_RDB_rev.mei\n", + "Processing 2699_Precibus_et_meritis_RDB_rev.mei...\n", + " Found 2694 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2694.\n", + " Successfully updated 2699_Precibus_et_meritis_RDB_rev.mei\n", + "Processing 2705_Maria_Mater_gratiæ_RDB_rev.mei...\n", + " Found 3049 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3049.\n", + " Successfully updated 2705_Maria_Mater_gratiæ_RDB_rev.mei\n", + "Processing 2704_Illumina_faciem_tuam_RDB_rev.mei...\n", + " Found 2976 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2976.\n", + " Successfully updated 2704_Illumina_faciem_tuam_RDB_rev.mei\n", + "Processing 2710_O_Oriens_RDB_rev.mei...\n", + " Found 2669 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2669.\n", + " Successfully updated 2710_O_Oriens_RDB_rev.mei\n", + "Processing 2708_Sana_me_Domine_RDB_rev.mei...\n", + " Found 2515 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2515.\n", + " Successfully updated 2708_Sana_me_Domine_RDB_rev.mei\n", + "Processing 2706_Virgo_benedicta_RDB_rev.mei...\n", + " Found 2427 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2427.\n", + " Successfully updated 2706_Virgo_benedicta_RDB_rev.mei\n", + "Processing 2712_Gaudeamus_omnes_RDB_rev.mei...\n", + " Found 2642 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2642.\n", + " Successfully updated 2712_Gaudeamus_omnes_RDB_rev.mei\n", + "Processing 2716_Veni_sponsa_Christi_RDB_rev.mei...\n", + " Found 2587 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2587.\n", + " Successfully updated 2716_Veni_sponsa_Christi_RDB_rev.mei\n", + "Processing 2720_Ne_derelinquas_me_RDB_rev.mei...\n", + " Found 2750 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2750.\n", + " Successfully updated 2720_Ne_derelinquas_me_RDB_rev.mei\n", + "Processing 2714_O_sacrum_convivium_RDB_rev.mei...\n", + " Found 2675 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2675.\n", + " Successfully updated 2714_O_sacrum_convivium_RDB_rev.mei\n", + "Processing 2724_O_anima_sanctissima_RDB_rev.mei...\n", + " Found 3037 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3037.\n", + " Successfully updated 2724_O_anima_sanctissima_RDB_rev.mei\n", + "Processing 2718_Verba_mea_RDB_rev.mei...\n", + " Found 2604 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2604.\n", + " Successfully updated 2718_Verba_mea_RDB_rev.mei\n", + "Processing 2711_Discedite_a_me_omnes_RDB_rev.mei...\n", + " Found 2460 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2460.\n", + " Successfully updated 2711_Discedite_a_me_omnes_RDB_rev.mei\n", + "Processing 2715_Adoramus_te_RDB_rev.mei...\n", + " Found 1954 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 1954.\n", + " Successfully updated 2715_Adoramus_te_RDB_rev.mei\n", + "Processing 2725_Illumina_nos_RDB_rev.mei...\n", + " Found 3820 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3820.\n", + " Successfully updated 2725_Illumina_nos_RDB_rev.mei\n", + "Processing 2722_Ad_te_levavi_RDB_rev.mei...\n", + " Found 2433 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2433.\n", + " Successfully updated 2722_Ad_te_levavi_RDB_rev.mei\n", + "Processing 2713_Veni_Creator_Spiritus_RDB_rev.mei...\n", + " Found 2659 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2659.\n", + " Successfully updated 2713_Veni_Creator_Spiritus_RDB_rev.mei\n", + "Processing 2707_Da_pacem_domine_RDB_rev.mei...\n", + " Found 2271 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2271.\n", + " Successfully updated 2707_Da_pacem_domine_RDB_rev.mei\n", + "Processing 2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB_rev.mei...\n", + " Found 2260 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2260.\n", + " Successfully updated 2667_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_9_RDB_rev.mei\n", + "Processing 2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB_rev.mei...\n", + " Found 3077 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3077.\n", + " Successfully updated 2662_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_4_RDB_rev.mei\n", + "Processing 2730b_Canzon_francese_del_Principe_vers_nor_RDB_rev.mei...\n", + " Found 1827 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 1827.\n", + " Successfully updated 2730b_Canzon_francese_del_Principe_vers_nor_RDB_rev.mei\n", + "Processing 2719_Ardens_est_cor_meum_RDB_rev.mei...\n", + " Found 2620 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2620.\n", + " Successfully updated 2719_Ardens_est_cor_meum_RDB_rev.mei\n", + "Processing 2728_Come_vivi_cor_mio_RDB_rev.mei...\n", + " Found 2257 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2257.\n", + " Successfully updated 2728_Come_vivi_cor_mio_RDB_rev.mei\n", + "Processing 2709_Ave_sanctissima_Maria_RDB_rev.mei...\n", + " Found 3352 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3352.\n", + " Successfully updated 2709_Ave_sanctissima_Maria_RDB_rev.mei\n", + "Processing 2689_Ave_dulcissima_Maria_RDB_rev.mei...\n", + " Found 3323 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3323.\n", + " Successfully updated 2689_Ave_dulcissima_Maria_RDB_rev.mei\n", + "Processing 2727_All_ombra_degli_allori_RDB_rev.mei...\n", + " Found 2138 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2138.\n", + " Successfully updated 2727_All_ombra_degli_allori_RDB_rev.mei\n", + "Processing 2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB_rev.mei...\n", + " Found 3003 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3003.\n", + " Successfully updated 2669_Feria_VI_In_Parasceve_In_j_Noct_Resp_2_RDB_rev.mei\n", + "Processing 2651_Ardo_per_te_RDB_rev.mei...\n", + " Found 3409 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3409.\n", + " Successfully updated 2651_Ardo_per_te_RDB_rev.mei\n", + "Processing 2650_Ardita_zanzaretta_RDB_rev.mei...\n", + " Found 3021 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3021.\n", + " Successfully updated 2650_Ardita_zanzaretta_RDB_rev.mei\n", + "Processing 2657_Tu_piangi_o_Fille_RDB_rev.mei...\n", + " Found 3998 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3998.\n", + " Successfully updated 2657_Tu_piangi_o_Fille_RDB_rev.mei\n", + "Processing 2652_Ancide_sol_RDB_rev.mei...\n", + " Found 2781 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2781.\n", + " Successfully updated 2652_Ancide_sol_RDB_rev.mei\n", + "Processing 2654_Moro_lasso_RDB_rev.mei...\n", + " Found 3017 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3017.\n", + " Successfully updated 2654_Moro_lasso_RDB_rev.mei\n", + "Processing 2653_Quel_no_crudel_RDB_rev.mei...\n", + " Found 2916 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2916.\n", + " Successfully updated 2653_Quel_no_crudel_RDB_rev.mei\n", + "Processing 2658_Ancor_che_per_amarti_RDB_rev.mei...\n", + " Found 3488 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3488.\n", + " Successfully updated 2658_Ancor_che_per_amarti_RDB_rev.mei\n", + "Processing 2655_Volan_quasi_farfalle_RDB_rev.mei...\n", + " Found 4119 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 4119.\n", + " Successfully updated 2655_Volan_quasi_farfalle_RDB_rev.mei\n", + "Processing 2656_Al_mio_gioir_RDB_rev.mei...\n", + " Found 3483 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3483.\n", + " Successfully updated 2656_Al_mio_gioir_RDB_rev.mei\n", + "Processing 2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB_rev.mei...\n", + " Found 3161 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3161.\n", + " Successfully updated 2659_Feria_V_In_Coena_Domini_In_j_Noct_Resp_1_RDB_rev.mei\n", + "Processing 2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB_rev.mei...\n", + " Found 3751 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3751.\n", + " Successfully updated 2668_Feria_VI_In_Parasceve_In_j_Noct_Resp_1_RDB_rev.mei\n", + "Processing 2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB_rev.mei...\n", + " Found 3337 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3337.\n", + " Successfully updated 2660_Feria_V_In_Coena_Domini_In_j_Noct_Resp_2_RDB_rev.mei\n", + "Processing 2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB_rev.mei...\n", + " Found 3401 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3401.\n", + " Successfully updated 2661_Feria_V_In_Coena_Domini_In_j_Noct_Resp_3_RDB_rev.mei\n", + "Processing 2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB_rev.mei...\n", + " Found 4392 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 4392.\n", + " Successfully updated 2665_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_7_RDB_rev.mei\n", + "Processing 2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB_rev.mei...\n", + " Found 1935 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 1935.\n", + " Successfully updated 2663_Feria_V_In_Coena_Domini_In_ij_Noct_Resp_5_RDB_rev.mei\n", + "Processing 2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB_rev.mei...\n", + " Found 3715 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3715.\n", + " Successfully updated 2672_Feria_VI_In_Parasceve_In_ij_Noct_Resp_5_RDB_rev.mei\n", + "Processing 2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB_rev.mei...\n", + " Found 2316 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2316.\n", + " Successfully updated 2670_Feria_VI_In_Parasceve_In_j_Noct_Resp_3_RDB_rev.mei\n", + "Processing 2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB_rev.mei...\n", + " Found 3030 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3030.\n", + " Successfully updated 2666_Feria_V_In_Coena_Domini_In_iij_Noct_Resp_8_RDB_rev.mei\n", + "Processing 2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB_rev.mei...\n", + " Found 2234 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2234.\n", + " Successfully updated 2671_Feria_VI_In_Parasceve_In_ij_Noct_Resp_4_RDB_rev.mei\n", + "Processing 2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB_rev.mei...\n", + " Found 4322 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 4322.\n", + " Successfully updated 2673_Feria_VI_In_Parasceve_In_ij_Noct_Resp_6_RDB_rev.mei\n", + "Processing 2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB_rev.mei...\n", + " Found 2776 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2776.\n", + " Successfully updated 2674_Feria_VI_In_Parasceve_In_iij_Noct_Resp_7_RDB_rev.mei\n", + "Processing 2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB_rev.mei...\n", + " Found 3172 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 3172.\n", + " Successfully updated 2677_Sabbati_Sancti_In_j_Noct_Resp_1_RDB_rev.mei\n", + "Processing 2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB_rev.mei...\n", + " Found 2497 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2497.\n", + " Successfully updated 2679_Sabbati_Sancti_In_j_Noct_Resp_3_RDB_rev.mei\n", + "Processing 2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB_rev.mei...\n", + " Found 4093 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 4093.\n", + " Successfully updated 2676_Feria_VI_In_Parasceve_In_iij_Noct_Resp_9_RDB_rev.mei\n", + "Processing 2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB_rev.mei...\n", + " Found 2914 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2914.\n", + " Successfully updated 2678_Sabbati_Sancti_In_j_Noct_Resp_2_RDB_rev.mei\n", + "Processing 2726_Ne_reminiscaris_RDB_rev.mei...\n", + " Found 2138 elements with xml:id.\n", + " Renumbering complete. Total new standard IDs assigned: 2138.\n", + " Successfully updated 2726_Ne_reminiscaris_RDB_rev.mei\n", + "XML ID renumbering process completed.\n" ] } ]