Plugin "batch_convert" nicht für mich arbeiten. Hier ist etwas für Linux, das schnell und schmutzig ist, aber es funktioniert ..... Achtung !!! Dateien, die das Zielfileextension haben, werden überschrieben !!!
Ändern Sie das Verzeichnis und Erweiterungen Ihren Vorlieben und speichern Sie es dann in das Verzeichnis, in dem Sie Ihre Dateien sind. Dateiname "batchconvert.py", dateieigenschaften ausführbar. Doppelklicken Sie darauf und wählen Sie "Run in Terminal".
#! /usr/bin/python3 # MuseScore batch file conversion # GNU GENERAL PUBLIC LICENSE GPLv3
# !! Will overwrite any existing files with the target extension!!!
import os
mydir = os.getenv('HOME') + '/Desktop/capella' # <<<<< Change 'Desktop/capella' to the directory your files are in fromext = '.mscz' # <<<<< Change '.mscz' to the extension for format you want to convert from intoext = '.xml' # <<<<< Change '.xml' to the extension for format you want to convert to