Skip to content
Jonatã Bolzan Loss edited this page Nov 1, 2017 · 2 revisions

Table of Contents

Welcome to the composer wiki!

Composer is a song editor for creating (and converting) notes for music games in various formats. It attempts to make the process easy by automating as much as possible while providing a simple and attractive interface to do the remaining manual work. See the webpage for full introduction.

Download

You can access binaries through the downloads page.

Building and installing from source

Dependencies

  • CMake (build tool)
  • Qt 5 or higher (QtCore, QtGui, QtXml, Phonon) Qt5 multimedia lib
  • FFmpeg libs (AVFormat)
  sudo apt install cmake pkgconf libavutil-dev libavcodec-dev libavformat-dev libswscale-dev libavresample-dev qtdeclarative5-dev qtmultimedia5-dev

Obtaining source code

 git clone git://github.com/performous/composer.git

Building

Use the regular CMake workflow:

  mkdir composer/build
  cd composer/build
  cmake ../
  make
  ./composer

Usage

You can find help by pressing F1-key inside the application or by accessing its Help-menu.

Troubleshooting

  • I get a crash on Mac OSX.
    • We are working on it. Feel free to help though.
  • Synthesizer sounds distorted / doesn't work.
    • The audio library used (Phonon) is not well suited for this and the implementation is rather hacky. This will be fixed by dropping Phonon. In the meantime, make sure you are not using some broken phonon-backend, i.e. vlc seems to be horrible, whereas xine adequete and gstreamer the best.

other articles

[Importing](importText)