File: glossary.rst

package info (click to toggle)
python-mido 1.3.3-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 920 kB
  • sloc: python: 4,006; makefile: 127; sh: 4
file content (94 lines) | stat: -rw-r--r-- 2,252 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
.. SPDX-FileCopyrightText: 2023 Raphaƫl Doursenaud <rdoursenaud@gmail.com>
..
.. SPDX-License-Identifier: CC-BY-4.0


Glossary
========

.. glossary::

    ascii
        American Standard Code for Information Interchange.
        The most popular character encoding standard.

    backend
    backends
    backend(s)
        A Mido backend is the interface between the library and the operating
        system level MIDI stack.
        See :doc:`backends/index` for more informations.

    callback
        A function called by the :term:`backend` when message(s) are ready to
        process.

    cli
        Command Line Interface.

    file
    files
    midi file
    standard midi file
    SMF
        A standard MIDI file.
        As defined by the MIDI Association's specification.

    message
    messages
        A MIDI message.

    midi
        The Musical Instrument Digital Interface. The specification is
        maintained by the `MIDI Association <https://midi.org>`_.

    nibble
        Half a byte (usually 4 bits).
        An 8-bit byte has 2 nibbles: an upper and a lower nibble.

    pip
        The `Python Package Installer <https://pypi.org/project/pip/>`_.

    port
    ports
        A MIDI port.

    pypi
        The `Python Package Index <https://pypi.org>`_.

    python
        The `Python programming language <https://www.python.org>`_.

    rtd
    read the docs
        `Read the Docs <https://www.readthedocs.org>`_ or RTD for short
        is a popular service to build, manage versions and host documentation
        generated from Sphinx (and now MkDocs) in the Python ecosystem.

    rtpmidi
        A standard protocol to send MIDI over a TCP/IP link.

        .. seealso::

            * :rfc:`4695`

            * :rfc:`4696`

    tcp
        Transmission Control Protocol.

        .. seealso:: :rfc:`9293`

    tick
    ticks
        The :term:`MIDI File` unit of time.

    sysex
    system exclusive
        Special :term:`MIDI` messages that are intended for consumption by a
        specific device. Details about the structure and meaning of these
        messages are often found in the device's manual.


.. todo:: Fill this glossary and add the ``:term:`` directive where
          appropriate.