Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

29
timidity Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`