X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchanging-midi-output-to-one-channel-per-voice.ly;h=aa46bd80aa61308328a86975bf8819801f323e5a;hb=a229fafa17dfdc0638326fab4368fffcfbf38d2a;hp=07156528ad09a3cdcc7ce23bf6c49a770bd6f47f;hpb=d65a3a9777a9e96029f6aa408d86d13a88f6619d;p=lilypond.git diff --git a/Documentation/snippets/changing-midi-output-to-one-channel-per-voice.ly b/Documentation/snippets/changing-midi-output-to-one-channel-per-voice.ly index 07156528ad..aa46bd80aa 100644 --- a/Documentation/snippets/changing-midi-output-to-one-channel-per-voice.ly +++ b/Documentation/snippets/changing-midi-output-to-one-channel-per-voice.ly @@ -1,34 +1,20 @@ -%% Do not edit this file; it is automatically +%% DO NOT EDIT this file manually; it is automatically %% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% %% This file is in the public domain. -\version "2.13.31" +\version "2.15.40" \header { - lsrtags = "contexts-and-engravers, midi" - -%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b - texidoces = " -Al producir una salida MIDI, el comportamiento predeterminado es -que cada pentagrama representa un canal MIDI, con todas las voces -de dicho pentagrama mezcladas. Esto reduce al mínimo el riesgo de -que se agote el número de canales MIDI disponibles, pues existe un -máximo de 16 canales por pista. - -Sin embargo, cuando se traslada el interpretador -@code{Staff_performer} al contexto @code{Voice}, cada voz de un -pentagrama puede tener su propio canal MIDI, como se muestra en el -siguiente ejemplo: a pesar de estar sobre el mismo pentagrama, se -crean dos canales MIDI, cada uno con un @code{midiInstrument} -distinto. - -" - doctitlees = "Modificar la salida MIDI para que tenga un canal por cada voz" + lsrtags = "contexts-and-engravers, midi, real-music" texidoc = " When outputting MIDI, the default behavior is for each staff to represent one MIDI channel, with all the voices on a staff amalgamated. This minimizes the risk of running out of MIDI channels, since there -are only 16 available per track. +are only 16 available per MIDI port, and most devices support only one +port. However, by moving the @code{Staff_performer} to the @code{Voice} context, each voice on a staff can have its own MIDI channel, as is @@ -40,6 +26,7 @@ two MIDI channels are created, each with a different doctitle = "Changing MIDI output to one channel per voice" } % begin verbatim + \score { \new Staff << \new Voice \relative c''' { @@ -71,10 +58,6 @@ two MIDI channels are created, each with a different \Voice \consists "Staff_performer" } - \context { - \Score - tempoWholesPerMinute = #(ly:make-moment 72 2) - } + \tempo 2 = 72 } } -