Reputation: 137
how can i create virtual microphone driver by using Java?
My problem is to create a program that work like virtual microphone device for let the another program like skype,msn to read sound input from the virtual device in state of real microphone. i need some suggestion or some sample source code for Java.
Upvotes: 1
Views: 2209
Reputation: 37506
You can't do it in pure Java because you would have to use operating system-specific native APIs to do this.
Upvotes: 2