audiveris-py
Thin Python wrapper around the Audiveris command line, for converting PDF or image
scores to MusicXML. It does not reimplement any recognition: it runs
audiveris -batch -export and returns the files that run produced.
Requirements
- An installed Audiveris. It is found via
--audiveris/theaudiveris=argument, theAUDIVERIS_BINenvironment variable,audiverisorAudiverisonPATH, or the installer's default location (/opt/audiveris/bin/Audiveris,C:\Program Files\Audiveris\Audiveris.exe,/Applications/Audiveris.app/Contents/MacOS/Audiveris). - Python 3.9+. No third-party runtime dependencies.
Install
pip install audiveris-py
Or the latest development version:
pip install git+https://github.com/leonarduk/audiveris-py.git
Check your setup
audiveris-py doctor
[ OK ] Audiveris executable: /opt/audiveris/bin/Audiveris
[ OK ] Audiveris starts: version 5.7.1
[WARN] OCR language data: no *.traineddata in ~/.config/AudiverisLtd/audiveris/tessdata; lyrics and other text will not be recognised
-> Download e.g. eng.traineddata from https://github.com/tesseract-ocr/tessdata into ~/.config/AudiverisLtd/audiveris/tessdata.
It exits non-zero if Audiveris can't be found or won't start. Missing OCR language files are only a warning: notes are still recognised, text isn't.
doctor is reserved as the first argument; to convert a file literally named
doctor, pass it as ./doctor.
Command line
audiveris-py score.pdf -o out/
audiveris-py score.pdf -o out/ --sheets 1 2 --uncompressed --timeout 900
Each input name.pdf is exported as out/name/name.mxl, or out/name/name.mvtN.mxl
when the book holds several movements. --uncompressed also writes a plain
.musicxml next to each .mxl.
Library
from audiveris_py import AudiverisError, convert, read_musicxml
try:
mxl_files = convert("scores/sonata.pdf", "out/", timeout=900)
except AudiverisError as ex:
print(f"Audiveris failed (exit {ex.returncode}): {ex}")
print(ex.output) # full Audiveris console log
raise SystemExit(1)
for mxl in mxl_files:
target = mxl.with_suffix(".musicxml")
target.write_text(read_musicxml(mxl), encoding="utf-8")
print(f"{mxl} -> {target}")
convertreturns a list: one.mxlper movement (out/sonata/sonata.mxl, orsonata.mvtN.mxlwhen Audiveris splits the score). Only files written by this run are returned, so reusing an output folder is safe..mxlis standard compressed MusicXML, so MuseScore, Finale, Sibelius andmusic21open it directly.read_musicxmlis only needed for the plain XML text.- Options:
sheets=[1, 2]to process specific pages,audiveris="/path/to/Audiveris"to skip the lookup,timeout=in seconds. convertraisesAudiverisErrorwhen Audiveris exits non-zero (status 1 = failure, 2 = timeout, 3 = both) or exports nothing. The error carriesreturncodeand the full consoleoutput. A missing input raisesFileNotFoundError.
For a runnable script that handles a single PDF or a whole folder, see
examples/pdf_to_musicxml.py.
Tests
pip install -e '.[test]'
pytest
The unit tests use a fake Audiveris executable. To also run against a real install:
AUDIVERIS_BIN=/path/to/Audiveris pytest
tests/data/chula.png is a sample score from the Audiveris project (AGPL-3.0).
Releasing
Publishing uses PyPI trusted publishing, so no API token is stored in GitHub.
The package version comes from the git tag via setuptools-scm; there is no
version to bump in the code.
- Merge what you want released to
main. - Create a GitHub release with a new tag
v<version>(e.g.v0.1.2) onmain. - The
Publish to PyPIworkflow builds from that tag, checks the built files carry that version, and uploads.
Builds from untagged commits get a development version such as 0.1.2.dev3+g1a2b3c4.
Release files for audiveris-py 0.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| audiveris_py-0.1.1.tar.gz | 108.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| audiveris_py-0.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 130.2 kB
Release files / audiveris_py-0.1.1.tar.gz
| Download URL | audiveris_py-0.1.1.tar.gz |
|---|---|
| Size | 108.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
623c8e2f3092d8e3261467026b268acf991911d606f75d3f76d039631394a35c
|
|
BLAKE2b-256 checksum How to use checksums |
7a4bd0fc8db9d60e3b8d026a83b3f3fb108ce5be2e00f4ab09faab7d0eb3fca9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / audiveris_py-0.1.1-py3-none-any.whl
| Download URL | audiveris_py-0.1.1-py3-none-any.whl |
|---|---|
| Size | 21.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
7d223413c631920ff685afe2f26656ec6dad90adcc0219b0142f3d6a2683b4ca
|
|
BLAKE2b-256 checksum How to use checksums |
8c5f28c354636b3e9f59a12f938f38108a627f40573ba97668deaf91ee8ebba3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency log