• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

VoIP Java application

 
clojure forum advocate
Posts: 3479
Mac Objective C Clojure
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi.
Consider the typical chat application (a panel which lists all active users , text field to type into, a panel which displays all posts).
This applicatin is implemented as a Swing application.
Now this chat application should support VoIP according to :
When a user talks (using the microphone),all the active users should hear what he says.
My questions are :
1. How to collect the voice input from the user ? (using Java Communication API)
2. What to do with the uploaded voice (save it for example) ?
3. When the voice is transmitted to users, how to play it ?
4. Any open source libraries that I can make use of them ?
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The Java Communication API is for working with serial and parallel ports. The Java Media Framework is the API for working with media devices and is likely your starting point.
 
Ranch Hand
Posts: 192
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For call initiation, and call handling, SIP(Session Initiation Protocol) is used. Java implementation of this protocol is available as Jain-Sip API.
 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I would also suggest you look into the SIP protocol. I have not done this yet but did some high level research on it a few months back.
reply
    Bookmark Topic Watch Topic
  • New Topic