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

De Wicri Musique
(Version à 2 voix + piano)
(Version à 2 voix + piano)
Ligne 46 : Ligne 46 :
 
  \addlyrics {  
 
  \addlyrics {  
 
Ô Nuit! Viens ap -- por -- ter à la ter -- re
 
Ô Nuit! Viens ap -- por -- ter à la ter -- re
Le cal -- me en -- chan -- te -- ment de ton mys -- tè -- re.
+
Le calme en -- chan -- te -- ment de ton mys -- tè - re.
 
}
 
}
  

Version du 31 août 2021 à 15:20

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