Latest generation of Audiveris OMR engine https://audiveris.github.io/audiveris
Find a file
2026-03-06 16:12:53 +01:00
.github Adding workflow to build scoop manifest 2026-03-06 16:12:53 +01:00
app New processing options SWAPPED_SHEETS and PARALLEL_SYSTEMS, handbook update for 5.9 2025-12-10 18:38:14 +01:00
data/examples Better search for fingering and plucking links 2023-06-27 16:25:22 +02:00
dev Use of Flatpak resources to populate flathub 2024-06-17 09:56:28 +02:00
docs New processing options SWAPPED_SHEETS and PARALLEL_SYSTEMS, handbook update for 5.9 2025-12-10 18:38:14 +01:00
flatpak flatpak/flathub: update to 5.9.0 2025-12-14 22:49:33 +01:00
gradle/wrapper Upgraded to Gradle 9.1.0 to support Java 25 2025-10-14 12:44:54 +02:00
packaging Debugging Gradle task input for macOS 2025-09-06 11:05:52 +02:00
schemas Update of the README files 2025-09-06 12:29:05 +02:00
.gitignore publish-winget: ready to update on published release 2025-12-04 11:10:39 +01:00
.gitmodules TEMPORARY: Set submodule flatpak/flathub branch to "flatpak-gradle-generator" 2025-02-05 18:10:35 +01:00
build.gradle Minor updates for Flatpak 2025-10-13 12:23:36 +02:00
gradle.properties Upgrade to Java 25 2025-10-13 12:22:29 +02:00
gradlew Upgraded to Gradle 9.1.0 to support Java 25 2025-10-14 12:44:54 +02:00
gradlew.bat Upgraded to Gradle 9.1.0 to support Java 25 2025-10-14 12:44:54 +02:00
LICENSE Update licensing information. 2017-03-02 15:04:04 +01:00
project-structure.md Update of the README files 2025-09-06 12:29:05 +02:00
README.md Add warning about fraudulent audiveris.com site 2026-01-19 18:32:37 +01:00
settings.gradle Project documentation based on sub-projects README.md files 2025-05-27 17:31:35 +02:00

WARNING

Beware of site audiveris.com!

- The site https://audiveris.com  (note the `.com` extension)
-  has nothing to do with Audiveris and seems to be a fraudulent site.

- The site is aesthetically pleasing
-  and looks like an advertisement for Audiveris software.
- However, users report that links redirect to pages
-  dedicated to cryptocurrencies, sports betting, etc.
- It has all the hallmarks of a phishing site…

Logo crafted by Katka

Audiveris - Open-source Optical Music Recognition

The goal of an OMR application is to allow the end-user to transcribe a score image into its symbolic counterpart. This opens the door to its further use by many kinds of digital processing such as playback, music edition, searching, republishing, etc.

The Audiveris application is built around the tight integration of two main components: an OMR engine and an OMR editor.

  • The OMR engine combines many techniques, depending on the type of entities to be recognized -- ad-hoc methods for lines, image morphological closing for beams, external OCR for texts, template matching for heads, neural network for all other fixed-size shapes.
    Significant progresses have been made, especially regarding poor-quality scores, but experience tells us that a 100% recognition ratio is simply out of reach in many cases.
  • The OMR editor thus comes into play to overcome engine weaknesses in convenient ways. The user can preselect processing switches to adapt the OMR engine before launching the transcription of the current score. Then the remaining mistakes can generally be quickly fixed via the manual editing of a few music symbols.

Key characteristics

  • Good recognition efficiency on real-world quality scores (as those seen on the IMSLP site)
  • Effective support for large scores (with up to hundreds of pages)
  • Convenient user-oriented interface to detect and correct most OMR errors
  • Available on Windows, Linux and macOS
  • Open source

The core of engine music information (OMR data) is fully documented and made publicly available, either directly via XML-based .omr project files or via the Java API of this software.
Audiveris comes with an integrated exporter to write (a subset of) this OMR data into MusicXML 4.0 format. In the future, other exporters are expected to build upon OMR data to support other target formats.

Stable releases

On a rather regular basis, typically every 6 to 12 months, a new release is made available on the dedicated Audiveris Releases page.

The goal of a release is to provide significant improvements, well tested and integrated, resulting in a software as easy as possible to install and use.

Since the release 5.5, an installer is provided for each of the main OSes (Windows, Linux and macOS) and comes with a pre-installed Java Runtime Environment (JRE). You can download any installer file from the Assets section, at the end of the chosen release:

OS name Installer file extension
Windows .msi
Linux .deb
macOS .dmg

Additionally for Linux, a flatpak package, also with a suitable JRE included, can be installed from the Flathub site.

See installers details in the handbook installation section.

Development versions

The Audiveris project is developed on GitHub, the site you are reading.
Any one can clone, build and run this software. The needed tools are git, gradle and a Java Development Kit (jdk), as described in the handbook sources section.

There are two main branches in the Audiveris project:

  • the master branch is the GitHub default branch; we use it for releases, and only for them.
  • the development branch is the one where all developments continuously take place; Periodically, when a release is to be made, we merge the development branch into the master branch.

See details in the Wiki article dedicated to the chosen development workflow.

Further Information