Android MediaRecorder allows to save video to file (file or socket):
setOutputFile(FileDescriptor fd);
setOutputFile(String path)
How to sa
Using Android-specific LocalServerSocket seems to be the only possible way to get video data as stream. In brief, you have to:
Another ideas?