LongTextAligner textAligner =
new LongTextAligner(stringResults, 2);
List<String> words = aligner.getWordExpander().expand(transcript);
int[] aid = textAligner.align(words);
int lastId = -1;
for (int i = 0; i < aid.length; ++i) {
if (aid[i] == -1) {
System.out.format("- %s\n", words.get(i));