Skip to content

wachin/dmidiplayer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Drumstick Multiplatform MIDI File Player

This application is a multiplatform MIDI file player for Linux, Windows and macOS. It reads .MID (Standard MIDI Files), .KAR (Karaoke), and .WRK (Cakewalk) file formats, and outputs MIDI events to hardware MIDI ports and also software synths.

Drumstick is a set of GPLv3 licensed C++/Qt libraries for MIDI applications. The project includes several tools as examples, and among them is the drumstick-guiplayer utility that leverages the Drumstick::ALSA library, so it is available only for Linux (because the ALSA sequencer is a linux only technology). Some people have requested a program with the same functionalities on Windows and macOS, and here it is. But this program is much more than that, and also works on Linux ...

Screenshot

Screencast at YouTube

Some key features:

  • MIDI Output to hardware MIDI ports, or any other Drumstick backend like soft synths
  • Transpose song tonality between -12 and +12 semitones
  • Change MIDI volume level (using MIDI CC7)
  • Scale song speed between half and double tempo
  • Lyrics, Piano Player and MIDI Channels views
  • Supports MID/KAR/RMI (Standard MIDI Files) and WRK (Cakewalk) file formats

New in v1.7.0:

  • Persistent song configuration. Stored song settings like volume, pitch, tempo, text encoding and channel settings into song configuration files, either automatically or when requested explicitly.
  • MIDI Mixer: channel volumes can be adjusted individually.
  • New MIDI file online search link in the Help menu.
  • Other minor features: octave subscript designation, new in Drumstick v2.7.0.

New in v1.6.0:

  • Release dedicated to the Galician Literature Day.
  • New Galician translation and help page.
  • New sample song: Negra Sombra.
  • New Splash screen during May for Galician language users.
  • CSD tool windows (channels, player piano, lyrics, help).

New in v1.5.3:

  • After drumstick ticket #37: WRK format markers are supported.
  • Replaced deprecated signals from drumstick-file when building with Qt6.

New in v1.5.2:

  • New build option USE_QT to choose among Qt major versions (5 or 6). By default (if not set) it uses whatever is found.
  • Fix for crash in Linux when using the MIDI connections dialog, and there are not suitable MIDI ports available.

New in v1.5.1:

  • GH ticket #6: The dependency target "update_helpfiles" of target "dmidiplayer" does not exist
  • Error checking for DwmGetWindowAttribute() call. This caused a problem in Windows 7 running the "Windows Classic" theme
  • Support for RIFF MIDI files, provided by Drumstick 2.4.0

New in v1.5.0:

  • Ticket #3: Song loop between bars
  • Ticket #7: Help window and user documentation
  • Ticket #10: Splash screen
  • Ticket #11: Fixed Winsnap enable/disable
  • Allow more than one file from the command line, or dragged from a file manager
  • Some rough edges softened
  • Czech translation updated, thanks to Pavel Fric
  • Italian help page translated, thanks to Giovanni Mariani

New in v1.4.0:

  • ticket #1: Playback positioning
    • Replaced the progress bar by a slider, so the user can change the play position
    • Added forward/backward actions to advance or go back one bar
    • Added a Jump action to move the play position to some arbitrary bar
  • ticket #2: Playlist repetition options: Nothing, Last Song, Whole Playlist
  • ticket #8: (Lyrics text) Copy to clipboard, Save to File, Print
  • ticket #9: (after Drumstick ticket #31) Fallback output drivers
  • Playlist function shuffle
  • Toolbar buttons customizing dialog
  • preliminary support for building with Qt6 (experimental)
  • Czech translation updated, thanks to Pavel Fric
  • New CMake option EMBED_TRANSLATIONS

New in v1.3.1:

  • Fix for ticket#4: crash if user tries to close the program's main window while playing
  • Fix for ticket#6: man page added (pandoc markdown source)
  • Warn the user when the playlist has changed but not saved
  • New setting for playlist auto advance

New in v1.3.0:

  • Playlist editor dialog
    • Previous/next song navigation
    • Autogenerated initial playlist
  • Samples: several free MIDI/Karaoke classic pieces
  • Preferences dialog
    • Auto play/Auto advance
    • Optional dark mode
    • Optional internal icons theme (defaults to desktop environment icon theme)
    • Choice of Qt widgets style
    • Lyrics and Piano Player specific options
  • Full screen option on Lyrics and Piano Player windows
  • Updated CMake buildsystem
    • Minimum required cmake version 3.14
    • MacOS target: Sierra (10.12)
    • Uninstall target
  • Better support for WRK files with lyrics and other metadata
  • MIDI texts/lyrics encoding defaults to Latin1
  • KeySignature MIDI meta-event processed

New in v1.2.0:

  • Lyrics view (karaoke window)
  • Character encoding detection
  • File Info (metadata) dialog

New in v1.1.0:

  • Piano Player, Channels and Rhythm views
  • Sticky Window Snapping (Windows OS only)
  • Russian translation (Thanks to Sergey Basalaev)
  • Spanish translation updated
  • Recent files menu options
  • Language choice menu options
  • Command line options: --portable and --file (for portable configuration)

This multiplatform version offers equivalent functionality replacing Drumstick::ALSA by Drumstick::RT. The MIDI events scheduling/timing is performed inside the program with the only help of the C++ standard library (threads and chrono). The MIDI output still has access to each operating system's MIDI infrastructure, but also to additional backends like ipMidi and soft synths.

Alright, these are the build requirements:

Build and deployment commands (for Linux)

$ tar -xvzf dmidiplayer-x.y.z.tar.gz
$ cd dmidiplayer-x.y.z
$ mkdir build
$ cd build
$ cmake .. -DCMAKE_PREFIX_PATH="$HOME/Qt5;$HOME/drumstick2;$HOME/uchardet"
$ make
$ make install

You probably don't need to use the CMake variable CMAKE_PREFIX_PATH at all, if your dependencies are installed on some standard prefix like "/usr" on Linux. Otherwise, you need to replace the contents of the parameter CMAKE_PREFIX_PATH with the actual paths in your system (in the example, each dependency was installed on a subdirectory under the $HOME directory). If you don't want to compile the program yourself, there are x86_64 precompiled packages for Linux, Windows and macOS at Sourceforge.

Download Drumstick Multiplatform MIDI File Player

In addition to the released AppImage for Linux, you may find a Flatpak at FlatHub

Download on Flathub

And binary packages for several Linux distributions:

Packaging status

Enjoy!