Ô Nuit (Jean-Philippe Rameau)/Répétition : Différence entre versions

De Wicri Musique
(Version à 2 voix + piano)
(Version à 2 voix + piano)
Ligne 48 : Ligne 48 :
 
Le calme en -- chan -- te -- ment de ton mys -- tè - re.
 
Le calme en -- chan -- te -- ment de ton mys -- tè - re.
 
L'om  -- bre qui t'es -- corte est si dou -- ce,
 
L'om  -- bre qui t'es -- corte est si dou -- ce,
 +
Si doux est le con -- cert de tes voix
 +
chan -- tant l'es -- pé -- ran -- ce,
 +
Si grand est ton pouvoir trans -- formant tout
 +
en rêve heu -- reux.
 
}
 
}
  

Version du 31 août 2021 à 15:34

Version à 2 voix + piano

Page 1Page 2

Transposition

cat <<... >transpoUnTon.lex

%%
a        printf ("g");
b        printf ("a");
bes      printf ("aes");
c        printf ("bes");
d        printf ("c");
e        printf ("d");
f        printf ("ees");
g        printf ("f");
"\\\\"[^ \\n]+  ECHO;
"\\^"[^ \\n]+  ECHO;
%%
main()
{
  yylex();
}
...
lex transpoUnTon.lex

gcc lex.yy.c -ll -o transpoUnTon