Re: Adjust midi volume mix between chord progression and melody

2023-07-05 Thread Jean Abou Samra
Hi, This question seems to have found an answer here: https://music.stackexchange.com/questions/130684/lilypond-midi-volume-mix-between-chord-progression-and-melody (On any forum, it's usually considered polite to link cross-posts so that people can notice your question has already

Adjust midi volume separately for chord progression

2023-07-04 Thread Carey Bunks
Hi! I'm writing python code to automatically annotate jazz solo transcriptions (with their corresponding chord progressions) and to produce midi output using Lilypond. I'd like to instruct Lilypond to lower the volume of the chord progression with respect to the melody, but haven't been able to

Adjust midi volume mix between chord progression and melody

2023-07-04 Thread Carey Bunks
Apologies for the SPAM, but it would seem that the server has removed the code snippet from my first post, so sending again. Hi! I'm writing python code to automatically annotate jazz solo transcriptions (with their corresponding chord progressions) and to produce midi output using Lilypond. I'd

Re: Midi volume?

2021-03-27 Thread David Kastrup
Aaron Hill writes: > On 2021-03-27 1:13 pm, David Kastrup wrote: >> When I do >> the result of >> lilymidi --pretty /tmp/test.midi >> [...] >> No volume change. What am I missing? > > That's odd. When I compiled your file, I got a MIDI that does have > velocities ranging from 86 to 101. > >

Re: Midi volume?

2021-03-27 Thread Aaron Hill
On 2021-03-27 1:13 pm, David Kastrup wrote: When I do the result of lilymidi --pretty /tmp/test.midi [...] No volume change. What am I missing? That's odd. When I compiled your file, I got a MIDI that does have velocities ranging from 86 to 101. For reference, I am using 2.22.0 to comp

Midi volume?

2021-03-27 Thread David Kastrup
When I do \score { \drums { sn4\mf\< 4 4 4\ff } \midi { } } the result of lilymidi --pretty /tmp/test.midi is Filename: /tmp/test.midi MIDI format: 1 (one or more simultaneous tracks) Divisions:1536 per whole note #Tracks: 2 Track 1: Time 0: Track na

Re: midi volume single note

2017-11-14 Thread Caagr98
You could also generate it dynamically at runtime, with something like this (please note that I haven't tested it): gradual = #(define-music-function (f mus) (procedure? ly:music?) (make-simulaneous-music (list mus (make-sequential-music (let ((len (lambda (l) (ly:music-leng

Re: midi volume single note

2017-11-14 Thread Gianmaria Lari
On 14 November 2017 at 11:30, David Kastrup wrote: > Gianmaria Lari writes: > > > On 13 November 2017 at 13:31, Caagr98 wrote: > > > >> I was thinking of something like this: > >> > >> << > >> { c'1 } > >> { s8 \set Voice.midiExpression=#0.5 s2.. Voice.midiExpression=#1 } > >> >> c'1 > >> >

Re: midi volume single note

2017-11-14 Thread David Kastrup
Gianmaria Lari writes: > On 13 November 2017 at 13:31, Caagr98 wrote: > >> I was thinking of something like this: >> >> << >> { c'1 } >> { s8 \set Voice.midiExpression=#0.5 s2.. Voice.midiExpression=#1 } >> >> c'1 >> >> That is, simultaneously: a) play a note, b) wait a short while, reduce >

Re: midi volume single note

2017-11-14 Thread Gianmaria Lari
On 13 November 2017 at 13:31, Caagr98 wrote: > I was thinking of something like this: > > << > { c'1 } > { s8 \set Voice.midiExpression=#0.5 s2.. Voice.midiExpression=#1 } > >> c'1 > > That is, simultaneously: a) play a note, b) wait a short while, reduce > volume, wait until rest of the note

Re: Fw: midi volume single note

2017-11-13 Thread Martin Tarenskeen
Note-off velocity you may forget, this is rarely used or supported in the MIDI world. Well, it is used and supported on my Roland FR-1b Midi accordion. The faster you let go of a button, the more of a "plop" it will produce. Actually, I think it is fairly important for getting a reali

Re: Fw: midi volume single note

2017-11-13 Thread David Kastrup
"m.tarensk...@zonnet.nl" writes: > Verzonden vanaf mijn Huawei mobiele telefoon > > Oorspronkelijk bericht ---- > Onderwerp: Re: midi volume single note > Van: m.tarensk...@zonnet.nl > Aan: Caagr98 > Cc: > > In MIDI "volume"

Fw: midi volume single note

2017-11-13 Thread m.tarensk...@zonnet.nl
<<< text/html; charset=utf-8: Unrecognized >>> ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: midi volume single note

2017-11-13 Thread Caagr98
I was thinking of something like this: << { c'1 } { s8 \set Voice.midiExpression=#0.5 s2.. Voice.midiExpression=#1 } >> c'1 That is, simultaneously: a) play a note, b) wait a short while, reduce volume, wait until rest of the note is finished (2.. is 7/8 of a measure), then reset to normal.

Re: midi volume single note

2017-11-13 Thread Gianmaria Lari
On 13 November 2017 at 11:21, Caagr98 wrote: > You can change `Voice.midiExpression` (0≤x≤1) in the middle of a note, > which changes dynamics/volume. I don't know whether you can do that to one > specific note without affecting other simultaneous ones, but you can just > create a new voice for t

Re: midi volume single note

2017-11-13 Thread Caagr98
wrote: > > > On 13 November 2017 at 10:57, bb <mailto:bb-543...@telecolumbus.net>> wrote: > > Changes in the MIDI volume take place only on starting a note, so > crescendi and decrescendi cannot affect the volume of a single note. > > http://lilypond.org/doc

Re: midi volume single note

2017-11-13 Thread Gianmaria Lari
On 13 November 2017 at 10:57, bb wrote: > Changes in the MIDI volume take place only on starting a note, so > crescendi and decrescendi cannot affect the volume of a single note. > http://lilypond.org/doc/v2.18/Documentation/notation/ > creating-midi-files.html > > That's

Re: midi volume single note

2017-11-13 Thread bb
Changes in the MIDI volume take place only on starting a note, so crescendi and decrescendi cannot affect the volume of a single note. http://lilypond.org/doc/v2.18/Documentation/notation/creating-midi-files.html Regards Am 13.11.2017 um 08:38 schrieb Gianmaria Lari: > > \version &q

midi volume single note

2017-11-12 Thread Gianmaria Lari
I have a long note that I would like it starts playing \ and it ends \ (in the midi). I tried this but without success: \version "2.19.80" right = \relative c'' { c1 ~ c1 } dynamics = { s4\f\> s4 s4 s4 s4 s4 s4 s4\! \p } \score { \new Staff \with { midiInstrument =

Re: midi volume: default, crescendo, dynamic context, multiple staff

2016-11-03 Thread Gianmaria Lari
> > If I do this... > > \version "2.19.48" > { c' } > \midi { } > > ...and open the resulting MIDI file in SpeedyMidi ( > http://speedymidi.sourceforge.net/ ) it looks like LilyPond set the > volume to 100. (MIDI allows 0 - 128, right?) I tried to do the same with speedmidi and some other midi vi

Re: midi volume: default, crescendo, dynamic context, multiple staff

2016-11-02 Thread Karlin High
On 11/1/2016 5:24 PM, Gianmaria Lari wrote: > > What's the default midi volume in case I don't specify an absolute > dynamic mark (like \p \f etc)? Is there any way to change this default > value? > If I do this... \version "2.19.48" { c' } \midi { }

midi volume: default, crescendo, dynamic context, multiple staff

2016-11-01 Thread Gianmaria Lari
What's the default midi volume in case I don't specify an absolute dynamic mark (like \p \f etc)? Is there any way to change this default value? A crescendo mark that's not ending with an absolute dynamic mark how much does increase or decrease the midi volume? In case I separa

Re: MIDI "volume"

2016-03-08 Thread Gilberto Agostinho
I just tested it and it works like a charm with REAPER. Thanks a lot for the patch! Cheers! Gilberto -- View this message in context: http://lilypond.1069038.n5.nabble.com/MIDI-volume-tp182079p188305.html Sent from the User mailing list arc

Re: MIDI "volume"

2016-03-08 Thread Heikki Tauriainen
Dynamic_performer, but these CC#7 changes seem to always just set > > the > > MIDI volume to 100 (in the range from 0 to 127).  To me this looks > > like > > a possible bug (and could be just a remnant of the implementation > > prior > > to 2.14), but this is only my

Re: MIDI "volume"

2016-03-08 Thread Gilberto Agostinho
Hi all, Heikki Tauriainen wrote > I've observed that LilyPond actually emits CC#7 events to a generated > MIDI file on dynamic (MIDI velocity) changes created by the > Dynamic_performer, but these CC#7 changes seem to always just set the > MIDI volume to 100 (in the range from

Re: MIDI "volume"

2015-10-06 Thread Heikki Tauriainen
#x27;ve learned to interpret this term in the documentation in this way). > or are there also some LilyPond features that set the true MIDI > volume (control change 7)? I don't think that it's currently possible to control CC#7 using any input file level features. I've

MIDI "volume"

2015-10-05 Thread mskala
me" really mean velocity, or are there also some LilyPond features that set the true MIDI volume (control change 7)? -- Matthew Skala msk...@ansuz.sooke.bc.ca People before principles. http://ansuz.sooke.bc.ca/ ___ lilypond-user mailin

midi volume/ s1*0 trick in Frescobaldi Score Wizard (was Re: Off-topic: Automatically create rehearsal files from SATB midi file)

2014-01-22 Thread Wilbert Berendsen
Op Mon, 20 Jan 2014 09:41:06 +0100 Johan Vromans schreef: > BTW: Whoever maintains the new score wizard: the "s1*0\f" trick to get > the midi volume right is no longer necessary for LilyPond 2.18. I changed it in the following way: diff --git a/frescobaldi_app/scorewiz/p

Re: Set midi volume per voice?

2013-05-11 Thread ghe
Thank you, Nathan! Use midiMinimumVolume and midiMaximumVolume to set the volume ranges of each staff or voice. They don't seem to have any effect if you don't place any dynamics. This is exactly the information I was missing. \score {   <<     \new Staff \with {       midiMinimumVolu

Re: Set midi volume per voice?

2013-05-11 Thread Nathan
On Fri, May 10, 2013 at 4:20 PM, wrote: > > Hi list, > > Is it possible to set the volume of the midi tracks for each different > track? > (Sorry, I had this message in Drafts and I forgot to send it.) Use midiMinimumVolume and midiMaximumVolume to set the volume ranges of each staff or voice.

Re: Set midi volume per voice?

2013-05-11 Thread ghe
Is it possible to set the volume of the midi tracks for each different track? Till now I have: one = { a b c d } two = { d e f g } global = { \key b \minor } \score { \new Staff << \new Voice = vone { \voiceOne << \global \one >> } \new Voice = vtwo { \voiceTwo << \global \two >> } >>

Set midi volume per voice?

2013-05-10 Thread ghe
Hi list, Is it possible to set the volume of the midi tracks for each different track? Till now I have: one = { a b c d } two = { d e f g } global = { \key b \minor } \score { \new Staff << \new Voice = vone { \voiceOne << \global \one >> } \new Voice = vtwo { \voiceTwo << \global

MIDI output: min/max MIDI volume levels, dynamics of polyphonic passages within a single Voice

2011-09-11 Thread g034737
LilyPond's text-based input language. Having also tried the MIDI conversion on parts of some orchestral scores (and for learning how to express various things in layout), I have, however, observed strange behavior related to controlling MIDI volume levels for instrument equalization (as documented i

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-16 Thread MING TSANG
Thank you very much for the terminal tips. It helps. From: Helge Hafting To: MING TSANG Cc: lilypond-user@gnu.org Sent: Thu, June 16, 2011 4:58:18 AM Subject: Re: V2.14.0 - midi volume & midi arpeggio On 10. juni 2011 13:55, MING TSANG wrote: > Th

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-16 Thread Helge Hafting
On 10. juni 2011 13:55, MING TSANG wrote: Thank you Helge Hafting, Janek Warchol, Federico Bruni for helping me to use terminal commands in ubuntu. I downloaded the right file - dir shows it. Now I copied the error - see below: It goes wrong because the filenames are still different: $ dir

RE: V2.14.0 - midi volume & midi arpeggio

2011-06-15 Thread James Lowe
Ming, From: MING TSANG [mailto:tsan...@rogers.com] Sent: 15 June 2011 02:49 To: David Santamauro; James Lowe; Federico Bruni Cc: lilypond-user@gnu.org Subject: Re: V2.14.0 - midi volume & midi arpeggio david, James & Federico :Thank you all for the tips. It cut down my learning curve.

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-14 Thread MING TSANG
untu. From: David Santamauro To: MING TSANG Cc: Federico Bruni ; lilypond-user@gnu.org Sent: Tue, June 14, 2011 4:56:21 PM Subject: Re: V2.14.0 - midi volume & midi arpeggio On Tue, 14 Jun 2011 13:00:17 -0700 (PDT) MING TSANG wrote: > of using linux ubuntu.

RE: V2.14.0 - midi volume & midi arpeggio

2011-06-14 Thread James Lowe
Ming From: lilypond-user-bounces+james.lowe=datacore@gnu.org [lilypond-user-bounces+james.lowe=datacore@gnu.org] on behalf of MING TSANG [tsan...@rogers.com] Sent: 14 June 2011 21:00 To: Federico Bruni Cc: lilypond-user@gnu.org Subject: Re: V2.14.0 - midi

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-14 Thread David Santamauro
On Tue, 14 Jun 2011 13:00:17 -0700 (PDT) MING TSANG wrote: > of using linux ubuntu. What is the difference between sh and sudo sh? think of sudo as the equivalent of "Run As Administrator". It turns you into administrator ('root') and executes that command. To understand it, type the following

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-14 Thread Federico Bruni
Il giorno mar, 14/06/2011 alle 13.00 -0700, MING TSANG ha scritto: > Thank you very much for your help. Now I have configure frescobaldi to > run v2.12.3 and v2.14.1. Now I can go back to code lilypond scores. > I will soon start to play the development v2.15.1 when I have spare > time. I had be

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-14 Thread MING TSANG
: Federico Bruni To: MING TSANG Cc: Colin Campbell ; lilypond-user@gnu.org Sent: Tue, June 14, 2011 3:11:11 PM Subject: Re: V2.14.0 - midi volume & midi arpeggio > Questions: > How can I locate the full path for lilypond 2.12.3 if it still there? > Type in a terminal: whic

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-14 Thread Federico Bruni
> Questions: > How can I locate the full path for lilypond 2.12.3 if it still there? > Type in a terminal: which -a lilypond You'll see all the lilypond binaries **that are installed in your path**. In order to see which directories are included in the path variable, type in a terminal: ec

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-14 Thread MING TSANG
lilypond v2.15.1? Will the install of v2.15.1 override v2.14.1? From: Federico Bruni To: MING TSANG Cc: Colin Campbell ; lilypond-user@gnu.org Sent: Tue, June 14, 2011 10:45:41 AM Subject: Re: V2.14.0 - midi volume & midi arpeggio 2011/6/14 MING T

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-14 Thread Federico Bruni
2011/6/14 MING TSANG > under ubuntu software centre, I remove and install fresbaldi. The > frescobaldi still show 1.0.2 > > How can I get ubuntu sfotware centre upgrade so that it will install > frescobaldi 1.2.0? > -- > > Frescobaldi 1.20 is in Ubuntu Natty. Ubuntu Ma

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-14 Thread MING TSANG
, June 14, 2011 9:08:13 AM Subject: Re: V2.14.0 - midi volume & midi arpeggio On 11-06-14 06:56 AM, MING TSANG wrote: Colin: > >Thank you or the png. My Frescobaldi does show lilypond preference >button (icon), So I conclude that your version is not the same as

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-14 Thread MING TSANG
3UA-ABL:~$ From: MING TSANG To: Colin Campbell Cc: lilypond-user@gnu.org Sent: Tue, June 14, 2011 8:56:47 AM Subject: Re: V2.14.0 - midi volume & midi arpeggio Colin: Thank you or the png. My Frescobaldi does show lilypond preference button (icon),

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-14 Thread Colin Campbell
On 11-06-14 06:56 AM, MING TSANG wrote: Colin: Thank you or the png. My Frescobaldi does show lilypond preference button (icon), So I conclude that your version is not the same as mime. my is v1.0.2. I used ubuntu software centre to install frescobaldi. I guess your is v1.2.0. So I downlo

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-14 Thread MING TSANG
nt: Tue, June 14, 2011 12:34:28 AM >Subject: Re: V2.14.0 - midi volume & midi arpeggio >On 11-06-13 09:46 AM, MING TSANG wrote: Thank you. > > >I discovered that once I change configue-frescobali/pathboth icon >use the same version v

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-13 Thread MING TSANG
11:05:58 AM Subject: Re: V2.14.0 - midi volume & midi arpeggio On 11-06-11 05:39 AM, MING TSANG wrote: Colin : Thank you very much. Now I have two icon for frescobaldi - one for each version (2.12.3 & 2.14.0). > >Federico; David; janek; Helge : Thank you a

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-12 Thread Janek Warchoł
2011/6/9 MING TSANG : > QUESTIONS: > 2.  I produce a midi output for each voice + piano.  I want to produce the > voice sound track is louder than the piano.  I use the following >     \include "articulate.ly" >     and >     \new voice { >         \set Staff.midiMinimumVolume = #0.2 >         \set

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-11 Thread Colin Campbell
On 11-06-11 05:39 AM, MING TSANG wrote: Colin : Thank you very much. Now I have two icon for frescobaldi - one for each version (2.12.3 & 2.14.0). Federico; David; janek; Helge : Thank you all for helping / (showing pointers to) me on frescobaldi/lilypond setup/install the past few days. It

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-11 Thread MING TSANG
much appreciated. I am very new to linux world. Date: Fri, 10 Jun 2011 18:36:50 -0600 From: Colin Campbell To: lilypond-user@gnu.org Subject: Re: V2.14.0 - midi volume & midi arpeggio Message-ID: <4df2b8a2.9070...@shaw.ca> Content-Type: text/plain; chars

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread Colin Campbell
On 11-06-10 03:23 PM, MING TSANG wrote: After several attempt, I successfully install lilypond v2.14.0_1 in /home/tsang/bin/lilypond (v2.14.0_1) lilypond v2.12.3 was still in /bin/lilypond Now I have two version in ubuntu. Right now frescobaldi is using the /bin/lilypond (version 2.12.3) Q

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread MING TSANG
/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games From: Federico Bruni To: MING TSANG Cc: David Santamauro ; lilypond-user@gnu.org Sent: Fri, June 10, 2011 11:09:51 AM Subject: Re: V2.14.0 - midi volume & midi arpeggio ~/bin is not in your

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread Federico Bruni
> Command 'lrun' from package 'lustre-utils' (universe) > Command 'rn' from package 'trn' (multiverse) > Command 'rn' from package 'trn4' (multiverse) > Command 'rup' from package 'rstat-client' (univers

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread Xavier Scheuer
On 10 June 2011 16:16, Christopher R. Maden wrote: > > The filename is still wrong: > > ls: lilypond-2.14.0-1.linux-x86.sh > sh: lilypond-2.14.0-1.linux.x86.sh > > Not the same! > > Tab completion is your friend.  Since you said you are new to Linux: > type “sh lilypond-” then hit tab.  If there i

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread MING TSANG
rn' from package 'trn4' (multiverse) Command 'rup' from package 'rstat-client' (universe) Command 'srun' from package 'slurm-llnl' (universe) run: command not found tsang@tsang-HP-Pavilion-dv2000-EZ723UA-ABL:~/bin$ uninstall-lilypond uninstall-li

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread Christopher R. Maden
On 06/10/2011 08:41 AM, MING TSANG wrote: > I post a ls realizing missing -1. in the file name. I try whold things again > and here is the message. Should I download the file and try again? > > <><><><><>message begins<> > tsang@tsang-HP-Pavilion-dv2000-EZ723UA-ABL:~/Downloads$ ls > lilypond-2

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread Federico Bruni
> *To:* MING TSANG > *Cc:* Helge Hafting ; Janek Warchoł < > lemniskata.bernoull...@gmail.com>; lilypond-user@gnu.org; > lilypond-user-requ...@gnu.org > *Sent:* Fri, June 10, 2011 8:12:44 AM > > *Subject:* Re: V2.14.0 - midi volume & midi arpeggio > > I think tha

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread David Santamauro
Hi, On Fri, 10 Jun 2011 14:12:44 +0200 Federico Bruni wrote: > In the Permissions tab (or something like that) you must check > Execution. Close and clic normally on the file. He is using sh so even if it weren't executable, sh would execute it. > > tsang@tsang-HP-Pavilion-dv2000-EZ723UA-ABL

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread MING TSANG
Helge Hafting ; Janek Warchoł ; lilypond-user@gnu.org; lilypond-user-requ...@gnu.org Sent: Fri, June 10, 2011 8:12:44 AM Subject: Re: V2.14.0 - midi volume & midi arpeggio I think that v2.12.3 is the package in the ubuntu repository. If so, you don't need to uninstall it, because it'

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread Federico Bruni
I think that v2.12.3 is the package in the ubuntu repository. If so, you don't need to uninstall it, because it's installed in /usr/bin, while the packages provided by lilypond.org are installed either in your home or in /usr/local (if you install it as root). There will be no conflict. However, i

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread MING TSANG
to uninstall v2.12.3 lilypond? How can I do it? Janek: arpeggio midi sound is not produced on v2.12.3 either. From: Helge Hafting To: lilypond-user@gnu.org; tsan...@rogers.com Sent: Fri, June 10, 2011 6:01:52 AM Subject: Re: V2.14.0 - midi volume & midi arp

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread Helge Hafting
On 10. juni 2011 04:04, MING TSANG wrote: Thank you for your reply. I follow your suggestion steps, I got the following error. I am new to linux world (approx. one month). I have a hard time copying out terminal message. That should be easy - if you write your email message on the same machine:

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-10 Thread Janek Warchoł
2011/6/10 MING TSANG : > Thank you for your reply. > I follow your suggestion steps, I got the following error. I am new to linux > world (approx. one month).  I have a hard time copying out terminal message. > > sh: can't open lilypond-2.14.0-1.linux-x86.sh there is one thing that should be check

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-09 Thread Federico Bruni
Il giorno gio, 09/06/2011 alle 19.04 -0700, MING TSANG ha scritto: > Thank you for your reply. > I follow your suggestion steps, I got the following error. I am new to > linux world (approx. one month). I have a hard time copying out > terminal message. > > sh: can't open lilypond-2.14.0-1.linux-

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-09 Thread MING TSANG
ither. From: Janek Warchoł To: Federico Bruni Cc: MING TSANG ; lilypond-user-requ...@gnu.org; lilypond-user@gnu.org Sent: Thu, June 9, 2011 4:03:30 PM Subject: Re: V2.14.0 - midi volume & midi arpeggio 2011/6/9 Federico Bruni : > Il giorno gio, 09/06/2011 alle

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-09 Thread Janek Warchoł
2011/6/9 Federico Bruni : > Il giorno gio, 09/06/2011 alle 11.40 -0700, MING TSANG ha scritto: >> 3.  How can I install lilypond 2.14.0 for Ubuntu 10.10 so that >> frescobaldi will use 2.14.0 instead of now using 2.12.3? I download >> v2.14.0 for linux and it is a .sh file. How can I use it for ins

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-09 Thread Federico Bruni
Il giorno gio, 09/06/2011 alle 11.40 -0700, MING TSANG ha scritto: > 3. How can I install lilypond 2.14.0 for Ubuntu 10.10 so that > frescobaldi will use 2.14.0 instead of now using 2.12.3? I download > v2.14.0 for linux and it is a .sh file. How can I use it for install? In Frescobaldi clic on S

Re: V2.14.0 - midi volume & midi arpeggio

2011-06-09 Thread Janek Warchoł
Hi Ming, 2011/6/9 MING TSANG : > Thank you for the release of 2.14.0.  I install this version on to my window > 7 pc and I am running jedit with lilypondtool. > > I coded a song with S A T B (seperately) with piano (right + left hands).The > songs has 96 bars (measures).  At bar 96 (last cord is a

V2.14.0 - midi volume & midi arpeggio

2011-06-09 Thread MING TSANG
Thank you for the release of 2.14.0. I install this version on to my window 7 pc and I am running jedit with lilypondtool. I coded a song with S A T B (seperately) with piano (right + left hands).The songs has 96 bars (measures). At bar 96 (last cord is an cross staff arpeggio. QUESTIONS: 1.

Re: Possible to adjust relative midi volume of a single voice?

2010-03-25 Thread Dmytro O. Redchuk
У ср, 2010-03-24 у 23:23 +0100, Carl Youngblood пише: > I am writing a six-part male choir arrangement and would like to > generate midi for each part that plays the part louder than the rest. > Although I can use a sequencing program to adjust the volume of a > given track, it would be nice to be

Possible to adjust relative midi volume of a single voice?

2010-03-24 Thread Carl Youngblood
I am writing a six-part male choir arrangement and would like to generate midi for each part that plays the part louder than the rest. Although I can use a sequencing program to adjust the volume of a given track, it would be nice to be able to generate voices with a specific volume or relative vol

midi volume range with Hairpin

2009-02-23 Thread 今井雄治
Hi, users. I want to set volume range of midi, so use midiMinimumVolume and midiMaximumVolume. But I could not resolve some problems. 1st work so good. 2nd midi volume over the value of midiMaximumVolume. 3rd set \f with transparent, midi volume is good, but Hairpin too short. 4th midi volume

Re: MIDI Volume

2005-02-23 Thread Mats Bengtsson
The documentation of the *_performers (corresponding to *_engravers but for MIDI output instead of paper output) is fairly primitive for the moment. The only documentation of these properties I could find for the moment is at http://lilypond.org/doc/v2.4/Documentation/user/out-www/lilypond-internal

MIDI Volume

2005-02-23 Thread Gilles
Hello. [P. Kroger's LilyPond-snapshot-2.4.2 for Debian] In "6.1 Creating MIDI files", the doc mentions parameters for altering the MIDI output: dynamicAbsoluteVolumeFunction instrumentEqualizer and refers to the "Voice" page in "lilypond-internals". But that page does not contain explanati