2021-10-10 21:44:10 +07:00
|
|
|
# timidity
|
|
|
|
|
2024-04-25 19:58:21 -03:00
|
|
|
> Play and convert MIDI files.
|
2024-10-12 10:02:00 +02:00
|
|
|
> More information: <https://timidity.sourceforge.net>.
|
2021-10-10 21:44:10 +07:00
|
|
|
|
|
|
|
- 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}}`
|