Exemplo n.º 1
0
        public void OutputSentence(string sentence, string audioFileOutPutPath)
        {
            List <List <bool[]> > elements = MorseCodeConvert.SentenceToMorseElements(sentence);

            outPut.OutPutSentence(elements, audioFileOutPutPath);
        }
Exemplo n.º 2
0
 public void PlaySentence(string sentence, PlayingProgress progress, CancellationToken canclelationToken)
 {
     morseCodePlayer.PlayWords(MorseCodeConvert.SentenceToMorseElements(sentence), progress, canclelationToken);
 }