Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Access microphone through java plugin for voice chat

How to create a java plugin that can directly access the microphone for specific web application in java ?.. ..i don't want to use applet & flash........

like image 478
Mritunjay Avatar asked Nov 13 '22 03:11

Mritunjay


1 Answers

If you want to use java and this is web application (UI in browser) - than you have to use applet. I don't know other way. And this applet should be signed with certificate. Also user should accept this certificate to let java sound api access client device.

Or you can create java web start application (JNLP) that will be downloaded and running on client PC. But this will not be a web ui.

like image 199
alexey28 Avatar answered Nov 16 '22 04:11

alexey28