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

De Wicri Musique
(Version à 2 voix + piano)
(Version à 2 voix + piano)
Ligne 50 : Ligne 50 :
 
Si doux est le con -- cert de tes voix
 
Si doux est le con -- cert de tes voix
 
chan -- tant l'es -- pé -- ran -- ce,
 
chan -- tant l'es -- pé -- ran -- ce,
Si grand est ton pouvoir trans -- formant tout
+
Si grand est ton pou -- voir trans -- for -- mant tout en - rêve heu -- reux.
en rêve heu -- reux.
 
 
}
 
}
  

Version du 31 août 2021 à 15:39

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