1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/timidity.md
Lena 0fddee2272
pages/*: reword descriptions to comply with the style guide (#11507)
* pages/*: reword descriptions to comply with the style guide

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-15 09:55:25 +05:30

664 B

timidity

A MIDI file player and converter. More information: http://timidity.sourceforge.net.

  • Play a MIDI file:

timidity {{path/to/file.mid}}

  • Play a MIDI file in a loop:

timidity --loop {{path/to/file.mid}}

  • Play a MIDI file in a specific key (0 = C major/A minor, -1 = F major/D minor, +1 = G major/E minor, etc.):

timidity --force-keysig={{-flats|+sharps}} {{path/to/file.mid}}

  • Convert a MIDI file to PCM (WAV) audio:

timidity --output-mode={{w}} --output-file={{path/to/file.wav}} {{path/to/file.mid}}

  • Convert a MIDI file to FLAC audio:

timidity --output-mode={{F}} --output-file={{path/to/file.flac}} {{path/to/file.mid}}