# score **Repository Path**: mirrors_opencollective/score ## Basic Information - **Project Name**: score - **Description**: ossia score, an interactive sequencer for the intermedia arts. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![join the chat at https://gitter.im/OSSIA/score](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/OSSIA/score?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Downloads](https://img.shields.io/github/downloads/OSSIA/score/total.svg)](https://github.com/OSSIA/score/releases) [![Version](https://img.shields.io/github/release/OSSIA/score.svg)](https://github.com/OSSIA/score/releases) [**ossia score**](http://ossia.io) is a ***sequencer*** for audio-visual artists, designed to create ***interactive*** shows. Sequence **OSC, MIDI, DMX, sound files** and more, between multiple software and hardware, create ***interactive*** and ***intermedia*** scores and ***script*** in JavaScript to customize your score. Free, open source and runs on desktop, mobile and embedded. Read more on http://ossia.io, come ask questions on the [forum](http://forum.ossia.io/c/score) or hang out in a [chat](https://gitter.im/OSSIA/score) with us, we will be happy to help you ! ### Download the [latest release here](https://github.com/OSSIA/score/releases/) and read the Releases section in this README. ![ossia score screenshot](/docs/score.png?raw=true) ## Releases Releases are available for [Windows, Linux (via AppImage) and Mac OS X](https://github.com/OSSIA/score/releases/latest). * Windows: install and run. * OS X: extract and run ossia score.app. * Linux: make executable (right click -> permissions or `chmod +x`) and run the AppImage. ## Build status * Linux, OS X: [![Travis Status](https://travis-ci.org/OSSIA/score.svg?branch=master)](https://travis-ci.org/OSSIA/score) * Windows: [![Appveyor Status](https://ci.appveyor.com/api/projects/status/github/OSSIA/score?branch=master&svg=true)](https://ci.appveyor.com/project/JeanMichalCelerier/score) * [![OpenHub](https://www.openhub.net/p/score/widgets/project_thin_badge?format=gif)](https://www.openhub.net/p/score) * ossia score uses [CppDepend](https://www.cppdepend.com/) to ensure consistent code quality improvements ; please check it out ! In order to build score, follow the [instructions](https://github.com/OSSIA/score/wiki/Build-and-install). Current builds tested on Mac OS X, Ubuntu 14.04, ArchLinux, Windows 8.1. ## Contributing When updating the score repository through the command line, don't forget to update the submodules, they change often. cd score git pull git submodule update --init --recursive Some useful and easy potential contributions are listed [on the website](http://ossia.io/contributing/). There are also many fixable areas in the code : sequencer * [**TODO**](https://github.com/OSSIA/score/search?q=TODO) : for general problems. Some are [five-minute fixes](https://github.com/OSSIA/score/blob/2e393a1786154c11d766e6c6476cc2bd5faa95d0/base/plugins/iscore-lib-process/Process/Style/ScenarioStyle.cpp#L3), other are [a multiple-day quest](https://github.com/OSSIA/score/blob/2e393a1786154c11d766e6c6476cc2bd5faa95d0/base/lib/core/plugin/PluginDependencyGraph.hpp#L67) * [**FIXME**](https://github.com/OSSIA/score/search?q=FIXME) : for critical bugs / problems. * [**MOVEME**](https://github.com/OSSIA/score/search?q=REMOVEME) : when something is not where it should be. * [**REMOVEME**](https://github.com/OSSIA/score/search?q=REMOVEME) : when something is redundant. * [**RENAMEME**](https://github.com/OSSIA/score/search?q=RENAMEME) : when the class does not match with the file it's in. * [**OPTIMIZEME**](https://github.com/OSSIA/score/search?q=OPTIMIZEME) : when an easy-to-write-but-suboptimal algorithm is used. Finally, one can write its own score plug-ins to add custom features to the software. An example plug-in with the most common classes reimplemented is provided [here](https://github.com/OSSIA/iscore-addon-tutorial).