Is there something like this in Jitsi?
package net.bounceme.dur.skype;
import java.io.*;
public class SkypeEchoTest {
public static void main(String args[]) throws IOException {
String s= null;
Process p= Runtime.getRuntime().exec("skype --callto echo123");
BufferedReader stdInput= new BufferedReader(new InputStreamReader(p.getInputStream()));
System.out.println("Here is the standard output of the command:\n");
while ((s= stdInput.readLine()) != null) {
System.out.println(s);
}
System.exit(0);
}
}
http://stackoverflow.com/a/24483653/262852
I would like to do something like this, but with Jitsi. I just don't
know where to start; ||while I've looked over the documentation, I don't quite see where this functionality is ||in the manual.|