!7 // reacts to new recording or file path on clipboard sclass WitAILastRecording > DynSCP { start { dm_onNewRecordingOrWAVOnClipboard(voidfunc(final File f) { temp enter(); print("Analyzing " + f.getName()); LS out = /*pcallFParallel*/pcallFAll_getValues( f -> S { witAI_recognizeWAV(f, 'english) }, f -> S { witAI_recognizeWAV(f, 'german) }); infoBox(or2(first(out), "?") + "\n" + or2(second(out), "?")); if (anyNempties(out)) vmBus_send('englishGermanRecognized, first(out), second(out)); }); } }