Re: Qsynth/Fluidsynt output on MacBook/Kubuntu

2014-09-01 Thread Ivan Kuznetsov
This is a question for the Linux-audio-user mailing list.

Go here:

  http://lists.linuxaudio.org/listinfo/linux-audio-user

and subscribe.



On Sun, Aug 31, 2014 at 11:01 PM, Guy Stalnaker  wrote:
> Dear friends,
>
> I know this is not true "lilypond" topic, but I also know that many of you
> have extensive experience using lilypond with various operating systems,
> etc.
>
> I have an old MacBook that I have repurposed into a Kubunty laptop. The only
> serious issue I'm having is with audio ouput via Qsynth/Fluidsynt. Audio
> works fine. I can test the audio successfully. I can play digital streaming
> audio with Clementine. I can play lilypond midi output files via timidity
> from the command line. All these work find.
>
> But ... if I load Fluidsynth via Qsyth (which is how I use Fluidsynth on two
> other Linux system) and then run Frescobaldi and play midi output files, the
> sound is filled with so much noise it's hardly recognizable as music.
> Sometimes the music will suddenly come through clearly, but most often it
> does not. I've played with using both Alsa and Pulseaudio and both result in
> noise. I have not, because I really loathe using it, used Jack Audio.
>
> So, two questions -- has anyone had a similar Linux experience where system
> audio is fine, but Fluidsynth output is not? Second question is whether one
> can use Timidity (in its server mode ) with Frescobaldi for midi output?
>
> Thanks.
>
> Guy Stalnaker
> jimmyg...@gmail.com
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Wrong type argument

2014-09-01 Thread MING TSANG
James:
Thank you for answering.
Now I reduce the file and copy & paste the two includes inline. The .ly file 
compiles with error.
The same file run ok in v2.19.12
Emmanuel,
Ming

Starting lilypond-windows.exe 2.19.13 [joyful-test.ly]...
Processing `C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-test.ly'
Parsing...
Interpreting music...
Interpreting music...
Interpreting 
music...C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-test.ly:37:28: In 
procedure ly:pitch-notename in expression (ly:pitch-notename tonic-pitch):
C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-test.ly:37:28: Wrong type 
argument in position 1 (expecting Pitch): ()
Exited with return code 1.

Starting lilypond-windows.exe 2.19.12 [joyful-test.ly]...
Processing `C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-test.ly'
Parsing...
Interpreting music...
Interpreting music...
Interpreting music...
Preprocessing graphical objects...
Interpreting music...
MIDI output to `joyful-test.mid'...
Finding the ideal number of pages...
Fitting music on 1 page...
Drawing systems...
Layout output to `joyful-test.ps'...
Converting to `./joyful-test.pdf'...
Success: compilation successfully completed
Completed successfully in 4.4".


On Monday, September 1, 2014 12:14:41 PM, James  wrote:
 


On 01/09/14 15:20, Phil Holmes wrote:

With your file I get
 
joyful-joyful-we-adore-thee.ly:23:10: error: cannot find file: 
`include_solfege-engraver.ly'
joyful-joyful-we-adore-thee.ly:107:10: error: cannot find file: 
`include_extract-music.ly'
error: unknown escaped string: `\ePU'
 
This is running 2.19.11
 
Might I suggest that following the advice in 
http://lilypond.org/website/tiny-examples.html might enable you to find your 
own problem, and would certainly help someone else.

--
Phil Holmes
 
 
- Original Message - 
>From: MING TSANG 
>To: lilypond-user mailinglist 
>Sent: Monday, September 01, 2014 2:58 PM
>Subject: Wrong type argument
>
>
>I uninstall v2.19.12 and install v19.13 and run a lily file and I got the 
>following error.  I then run convert-ly; re-run and got the same error.
>The .ly file run without error in v2.19.12.
>Emmanuel,
>Ming.
>
>
>Starting lilypond-windows.exe 2.19.13 [joyful-joyful-we-adore-thee.ly]...
>Processing
`C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly'
>Parsing...
>Interpreting music...
>Interpreting music...
>Interpreting music...
>Interpreting music...
>Interpreting
music...C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly:37:28:
 In procedure ly:pitch-notename in expression (ly:pitch-notename tonic-pitch):
>C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly:37:28:
> Wrong type argument in position 1 (expecting Pitch): ()
>Exited with return code 1.
>
> ___
>lilypond-user mailing list
>lilypond-user@gnu.org
>https://lists.gnu.org/mailman/listinfo/lilypond-user
>


___
lilypond-user mailing list lilypond-user@gnu.org 
https://lists.gnu.org/mailman/listinfo/lilypond-user 

Ming,

Even if you remove the 'includes' lines you still have some
variables referenced that are not in the email.

Doing some very basic troubleshooting I also get

test.ly:36:28: In procedure ly:pitch-notename in expression
(ly:pitch-notename tonic-pitch):
test.ly:36:28: Wrong type argument in position 1 (expecting Pitch):
()

and this 'test.ly:36:28' refers to a line in my test.ly file with
your code cut and paste. and this line is included in the
solfege-engraver function.

#(define (solfege-engraver lst dir)
   (make-engraver 
 (acknowledgers
  ((note-head-interface engraver grob source)
   (let* (
  (context (ly:translator-context engraver))
  (tonic-pitch (ly:context-property context 'tonic))
  (tonic-index (ly:pitch-notename tonic-pitch)) 
<--- HERE IS THE LINE BEING REFERENCED!!!
  (event (ly:grob-property grob 'cause))
  (event-copy (ly:event-deep-copy event))
  (grob-pitch (ly:event-property event 'pitch))
  (grob-index (ly:pitch-notename grob-pitch))
  (delta (modulo (- grob-index tonic-index) 7))
  (name (list-ref lst delta))
  (newgrob (ly:engraver-make-grob engraver 'TextScript
event-copy)))

 ;; clear 'tweaks for newgrob
   ;;  (ly:event-set-property! event-copy 'tweaks '()) 
 (if (string= name "Hb")  (set! name "B"))
 ;; Give newgrob 'outside-staff-priority depending on 
 ;; grob 'staff-position
 (set! (ly:grob-property newgrob 'outside-staff-priority)
   (+ (ly:grob-property newgrob 'outside-staff-priority)
  (* dir (ly:grob-property grob 'staff-position
 (set! (ly:grob-property newgrob 'text) name)
 (set! (ly:grob-property newgrob 'direction) dir) )


but unless you ca

Re: partcombine/divisi framework - let the fun begin!

2014-09-01 Thread Keith OHara

The development version 2.19.13 with the expanded remove-staves capability is 
now available.

On Sat, 30 Aug 2014 04:41:15 -0700, Janek Warchoł  
wrote:

2014-08-29 8:53 GMT+02:00 Keith OHara :


But if someone uses these definitions with music that uses tags for
some other purpose, the tagged music will be left out.


Hmm.  That's a problem, but i don't see a good solution yet.


Simon's suggestion to use the more-selective \removeWithTag is a good solution.
Just in case anyone uses the \divisibleStaff with his own tags, and might not 
think to include 'together in \keepWithTag score \divisibleStaff ... , I added 
a function to clean up the divI/divII/together tags when we are done with them. 
 These two changes are attached.

I see now that the clean-up function I had to add was already available among several 
useful tag filters from  

Users of these definitions, with music that uses \tag#'part for example, need 
to adapt their \keepWithTag if they want to separate out the 'divI part, and 
also keep whatever they have tagged with 'part: \keepWithTag divI.part 
\music\version "2.19.13"

\include "definitions.ily"

\layout {
  short-indent = 2\cm
  indent = 2\cm
  line-width = 10\cm
}

music = {
  \together
  c'4 d' e' f'
  <<
\tag#'score { s_\markup\italic "balance with winds" }
\sharedStems
  { a'4 f' a' g' }
  { f' d' f' e' }
  >>
  \voiceDivisi {
g' b' d' b'
d'' b' g' b'-\tag#'part \upbow
  }
  {
g'4 e' g' e'
b' g' b' g'-\tag#'part \upbow
  }
  <<
\tag#'editorial {s4\< s s s\f }
\tag#'score { s_\markup\italic "balance " }
\staffDivisi
  {  g' q b' }
  { a'  a' q }
  >>
  \together
  c' d' e' f'
  \soloI { g' b' d' b' }
  \together
 
  f' e' d' c'
}

\markup \bold { Violin I part: }
\new Staff \with {
  instrumentName = "Violin I"
  shortInstrumentName = "V I"
} \keepWithTag divI.editorial.part \music

\markup \bold { Violin II part: }
\new Staff \with {
  instrumentName = "Violin II"
  shortInstrumentName = "V II"
} \keepWithTag divII.editorial.part \music

\markup \bold { Combined: }
\keepWithTag editorial.score \divisibleStaff "Violin" \music


definitions.ily
Description: Binary data
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Wrong type argument

2014-09-01 Thread James

On 01/09/14 15:20, Phil Holmes wrote:

With your file I get
joyful-joyful-we-adore-thee.ly:23:10: error: cannot find file: 
`include_solfege-engraver.ly'
joyful-joyful-we-adore-thee.ly:107:10: error: cannot find file: 
`include_extract-music.ly'

error: unknown escaped string: `\ePU'
This is running 2.19.11
Might I suggest that following the advice in 
http://lilypond.org/website/tiny-examples.html might enable you to 
find your own problem, and would certainly help someone else.


--
Phil Holmes

- Original Message -
*From:* MING TSANG 
*To:* lilypond-user mailinglist 
*Sent:* Monday, September 01, 2014 2:58 PM
*Subject:* Wrong type argument

I uninstall v2.19.12 and install v19.13 and run a lily file and I
got the following error.  I then run convert-ly; re-run and got
the same error.
The .ly file run without error in v2.19.12.
Emmanuel,
Ming.

Starting lilypond-windows.exe 2.19.13
[joyful-joyful-we-adore-thee.ly]...
Processing
`C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly'
Parsing...
Interpreting music...
Interpreting music...
Interpreting music...
Interpreting music...
Interpreting

music...C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly:37:28
: In procedure
ly:pitch-notename in expression (ly:pitch-notename tonic-pitch):

C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly:37:28
: Wrong type argument in
position 1 (expecting Pitch): ()
Exited with return code 1.


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Ming,

Even if you remove the 'includes' lines you still have some variables 
referenced that are not in the email.


Doing some very basic troubleshooting I also get

test.ly:36:28: In procedure ly:pitch-notename in expression 
(ly:pitch-notename tonic-pitch):

test.ly:36:28: Wrong type argument in position 1 (expecting Pitch): ()

and this 'test.ly:36:28' refers to a line in my test.ly file with your 
code cut and paste. and this line is included in the solfege-engraver 
function.


#(define (solfege-engraver lst dir)
   (make-engraver
 (acknowledgers
  ((note-head-interface engraver grob source)
   (let* (
  (context (ly:translator-context engraver))
  (tonic-pitch (ly:context-property context 'tonic))
  (tonic-index (ly:pitch-notename tonic-pitch)) <--- 
HERE IS THE LINE BEING REFERENCED!!!

  (event (ly:grob-property grob 'cause))
  (event-copy (ly:event-deep-copy event))
  (grob-pitch (ly:event-property event 'pitch))
  (grob-index (ly:pitch-notename grob-pitch))
  (delta (modulo (- grob-index tonic-index) 7))
  (name (list-ref lst delta))
  (newgrob (ly:engraver-make-grob engraver 'TextScript 
event-copy)))


 ;; clear 'tweaks for newgrob
   ;;  (ly:event-set-property! event-copy 'tweaks '())
 (if (string= name "Hb")  (set! name "B"))
 ;; Give newgrob 'outside-staff-priority depending on
 ;; grob 'staff-position
 (set! (ly:grob-property newgrob 'outside-staff-priority)
   (+ (ly:grob-property newgrob 'outside-staff-priority)
  (* dir (ly:grob-property grob 'staff-position
 (set! (ly:grob-property newgrob 'text) name)
 (set! (ly:grob-property newgrob 'direction) dir) )


but unless you can simplify this example, I am not sure if anyone can 
help (they might be able to guess).


Now I also rememeber a change to this solfege engraver being discussed 
in June


http://lists.gnu.org/archive/html/lilypond-user/2014-06/msg00640.html

But I don't use this so I don't know if this is the same as the one you 
are using or if you have some other issue.


Simplifying your example would help.

James
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: problems with proportional spaced bar alignment

2014-09-01 Thread Abraham Lee
On Sun, Aug 31, 2014 at 6:48 PM, Adam Spiers 
 wrote:
Please could someone tell me why the bar lines aren't aligned 
correctly in this?


  https://gist.github.com/aspiers/3a9fa8fc4422742cab82

I've tried all the obvious stuff from:

  
http://lilypond.org/doc/v2.18/Documentation/notation/proportional-notation


Thanks!
Adam

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Adam,

That looks very interesting! Nice coding, too! 

When I printed the score out, I can see (when the paper is on-edge) 
what you are saying about things not being _precisely_ aligned, but you 
have to admit they're pretty close when you look at it normally. So, 
with the way you have made each line sequential, I'm not sure what the 
solution is. I think you are doing everything correctly.


Now, if you were to try grouping them _in parallel_, you may find a 
more satisfactory alignment since all the staves would be considered 
simultaneously rather than a line-by-line basis.


HTH,
Abraham
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Wrong type argument

2014-09-01 Thread James

On 01/09/14 14:58, MING TSANG wrote:
I uninstall v2.19.12 and install v19.13 and run a lily file and I got 
the following error.  I then run convert-ly; re-run and got the same 
error.

The .ly file run without error in v2.19.12.
Emmanuel,
Ming.

Starting lilypond-windows.exe 2.19.13 [joyful-joyful-we-adore-thee.ly]...
Processing 
`C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly'

Parsing...
Interpreting music...
Interpreting music...
Interpreting music...
Interpreting music...
Interpreting 
music...C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly:37:28 
: In procedure ly:pitch-notename 
in expression (ly:pitch-notename tonic-pitch):
C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly:37:28 
: Wrong type argument in position 
1 (expecting Pitch): ()

Exited with return code 1.


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

This doesn't compile for me.

error: cannot find file: `include_solfege-engraver.ly'

James
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Wrong type argument

2014-09-01 Thread Phil Holmes
With your file I get

joyful-joyful-we-adore-thee.ly:23:10: error: cannot find file: 
`include_solfege-engraver.ly'
joyful-joyful-we-adore-thee.ly:107:10: error: cannot find file: 
`include_extract-music.ly'
error: unknown escaped string: `\ePU'

This is running 2.19.11

Might I suggest that following the advice in 
http://lilypond.org/website/tiny-examples.html might enable you to find your 
own problem, and would certainly help someone else.

--
Phil Holmes


  - Original Message - 
  From: MING TSANG 
  To: lilypond-user mailinglist 
  Sent: Monday, September 01, 2014 2:58 PM
  Subject: Wrong type argument


  I uninstall v2.19.12 and install v19.13 and run a lily file and I got the 
following error.  I then run convert-ly; re-run and got the same error.
  The .ly file run without error in v2.19.12.
  Emmanuel,
  Ming.


  Starting lilypond-windows.exe 2.19.13 [joyful-joyful-we-adore-thee.ly]...
  Processing 
`C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly'
  Parsing...
  Interpreting music...
  Interpreting music...
  Interpreting music...
  Interpreting music...
  Interpreting 
music...C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly:37:28:
 In procedure ly:pitch-notename in expression (ly:pitch-notename tonic-pitch):
  
C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly:37:28: 
Wrong type argument in position 1 (expecting Pitch): ()
  Exited with return code 1.


--


  ___
  lilypond-user mailing list
  lilypond-user@gnu.org
  https://lists.gnu.org/mailman/listinfo/lilypond-user
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Wrong type argument

2014-09-01 Thread MING TSANG
I uninstall v2.19.12 and install v19.13 and run a lily file and I got the 
following error.  I then run convert-ly; re-run and got the same error.
The .ly file run without error in v2.19.12.
Emmanuel,
Ming.

Starting lilypond-windows.exe 2.19.13 [joyful-joyful-we-adore-thee.ly]...
Processing 
`C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly'
Parsing...
Interpreting music...
Interpreting music...
Interpreting music...
Interpreting music...
Interpreting 
music...C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly:37:28:
 In procedure ly:pitch-notename in expression (ly:pitch-notename tonic-pitch):
C:/Users/Tsang/Dropbox/Lyndon/HYMN/CP_002/joyful-joyful-we-adore-thee.ly:37:28: 
Wrong type argument in position 1 (expecting Pitch): ()
Exited with return code 1.\version "2.19.11"
\language "english"


\header {
  title = "快樂頌"
  subtitle = "Joyful, Joyful, We Adore Three"
  % Remove default LilyPond tagline
  tagline = ##f
}

\paper {
  #(set-paper-size "letter")
}
#(set-global-staff-size 22)
global = {
  \key g \major
  \time 4/4
  \tempo 4=120
}

%\include "include_lyndon-specific.ly"
\include "include_solfege-engraver.ly"
#(define syllables '("do" "re" "mi" "fa" "so" "la" "ti"))
#(define sylsⓓ '("ⓓ" "ⓡ" "ⓜ" "ⓕ" "ⓢ" "ⓛ" "ⓣ"))
#(define numR➀ '("➀" "➁" "➂" "➃" "➄" "➅" "➆"))
#(define number '("1" "2" "3" "4" "5" "6" "7"))
#(define numR➑ '("➊" "➋" "➌" "➍" "➎" "➏" "➐"))

#(define (solfege-engraver lst dir)
   (make-engraver 
 (acknowledgers
  ((note-head-interface engraver grob source)
   (let* (
  (context (ly:translator-context engraver))
  (tonic-pitch (ly:context-property context 'tonic))
  (tonic-index (ly:pitch-notename tonic-pitch))
  (event (ly:grob-property grob 'cause))
  (event-copy (ly:event-deep-copy event))
  (grob-pitch (ly:event-property event 'pitch))
  (grob-index (ly:pitch-notename grob-pitch))
  (delta (modulo (- grob-index tonic-index) 7))
  (name (list-ref lst delta))
  (newgrob (ly:engraver-make-grob engraver 'TextScript event-copy)))

 ;; clear 'tweaks for newgrob
   ;;  (ly:event-set-property! event-copy 'tweaks '()) 
 (if (string= name "Hb")  (set! name "B"))
 ;; Give newgrob 'outside-staff-priority depending on 
 ;; grob 'staff-position
 (set! (ly:grob-property newgrob 'outside-staff-priority)
   (+ (ly:grob-property newgrob 'outside-staff-priority)
  (* dir (ly:grob-property grob 'staff-position
 (set! (ly:grob-property newgrob 'text) name)
 (set! (ly:grob-property newgrob 'direction) dir) )


xup = \with { \consists #(solfege-engraver syllables UP) }
xdown = \with { \consists #(solfege-engraver syllables DOWN) }

zup= \with { \consists #(solfege-engraver sylsⓓ UP) }
zdown= \with { \consists #(solfege-engraver sylsⓓ DOWN) }

nup= \with { \consists #(solfege-engraver number  UP) }
ndown= \with { \consists #(solfege-engraver number  DOWN) }

rup= \with { \consists #(solfege-engraver numR➀ UP) }
rdown= \with { \consists #(solfege-engraver numR➀ DOWN) }

sup= \with { \consists #(solfege-engraver numR➑ UP) }
sdown= \with { \consists #(solfege-engraver numR➑ DOWN) }

chordNames = \chordmode {
  \global
  % Chords follow here.
  
}

melody =  {
  \global
  r2 r4 d''4~ |%m01
  d''4 4 2 |%m02 
  d''2 r4 d''4~ |%m03
  d''8 8 4 8 r8 8. 16 |%m04
  d''2 g'4 f''4~ |%m05
  f''4 e''4 d''4 c''4 |%m06
  r8 b'8 g'4 d''4 4 |%m07
  c''4. b'8 2 |%m08
  r2 r4 d'4~ |%m09
  d'4 4 4.( e'8) |%m10
  fs'2 r8 g'8 a'4 |%m11
  b'4( a'4) 8 r8 d''4~ |%m12
  d''4 4 e''4 f''4 |%m13
  f''4 e''4 d''4 c''4 |%m14
  b'4 4 c''4 d''8 e''8 |%m15
  fs''4. g''8 2 |%m16
}

verse = \lyricmode {
  哈 利 路 亞! 哈
  利 路 亞! 哈 利 路 亞! 喜 樂 源 頭,
  賜 人 安 息 最 佳 美. 哈
  哈 利 路 亞! 哈 利 路 亞! 求
  教 我 們, 相 愛 相 親, 同 享 屬 神 大 歡 欣.
}

\include "include_extract-music.ly"

SA = {
  \global 
  4 4 4 4 |%m01
  4 <<{c''4}\\{e'8 fs'8}>> 4 4 |%m02
  4 4 4 4 |\break %m03
  4. 8 2 |%m04
  4 4 4 4 |%m05
  4 4 4 4 |\break %06
  4 4 4 4 |%m07
  4. g'8 2 |%m08
  4 4 4 g'4 |\break %m09
  4 8( 8) 4 g'4 |%m10
  4 <<{b'8( c''8)}\\{fs'4}>> 4 4 |%m11
  <<{g'4}\\{e'8 d'8}>> 4 d'2 |\break %m12
  4 4 4 4 |%m13
  4 4 4 4 |%m14
  4 4 4 4 |%m15
  4. g'8 2 |%m16
  \bar"|."
  \label #'lastPage
}

soprano =  { \ePU \SA }
alto =  { \ePL \SA }

TB = {
  \global
  g4 4 4 4 |%m01
  4 4 4 4 |%m02
  4 4 4 4 |%m03
  4. 8 2 |%m04
  4 4 4 4 |%m05
  4 4 4 4 |%m06
  4 4 4 4 |%m07
  4. 8 2 |%m08
  4 4 4 4 |%m09
  4 <<{b8 a8}\\{d4}>> 4 4 |%m10
  4 <<{b8 a8}\\{d4}>> 4 4 |%m11
  4 <<{a8 g8}\\{a,4}>> 2 |%m12
  g4 4 4 4 |%m13
  4 4 4 4 |%m14
  4 4 4 4 |%m15
  4. 8 2 |%m16
}
tenor =  { \ePU \TB }
bass =  { \ePL \TB }

verseOne = \lyricmode { \set fontSize = #3.0
  \set st

Re: Qsynth/Fluidsynt output on MacBook/Kubuntu

2014-09-01 Thread Martin Tarenskeen



On Sun, 31 Aug 2014, SoundsFromSound wrote:


Have you tried using Rumor with Frescobaldi (MIDI)? That works pretty sweet
from my experience, MIDI, etc. --> (at first I had major headaches using
Ubuntu, but once I distro-hopped, all was well)


Rumor is not used anymore in recent Frescobaldi versions.
And the question was not about MIDI input but about playing MIDI files.

I am using QSynth/Fluidsynth with Frescobaldi without problems on Linux 
Fedora.


You could try tweaking the several options Qsynth offers when clicking on 
Setup->Audio. (increase Buffer size, Buffer count, decrease Polyphony? 
Sample format and rate?)


--

MT

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Qsynth/Fluidsynt output on MacBook/Kubuntu

2014-09-01 Thread Federico Bruni
Il 01/set/2014 06:02 "Guy Stalnaker"  ha scritto:
>

> But ... if I load Fluidsynth via Qsyth (which is how I use Fluidsynth on
two other Linux system) and then run Frescobaldi and play midi output
files, the sound is filled with so much noise it's hardly recognizable as
music. Sometimes the music will suddenly come through clearly, but most
often it does not. I've played with using both Alsa and Pulseaudio and both
result in noise. I have not, because I really loathe using it, used Jack
Audio.
>

Did you specify the soundfont in Qsynt settings? Which one?
Alternatively, try launching this command in the command line and then
start Frescobaldi:
fluidsynth -a alsa /path/to/soundfont

> So, two questions -- has anyone had a similar Linux experience where
system audio is fine, but Fluidsynth output is not? Second question is
whether one can use Timidity (in its server mode ) with Frescobaldi for
midi output?
>

I used to use timidity. In debian you can configure it to run as a service.
Just yesterday I tried using fluidsynth in a similar way but I don't know
yet how to use it "as a service" (don't want to use qsynth or launch
fluidsynth manually). More details in a recent thread on frescobaldi users
group.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user