views:

73

answers:

2

I specifically want to be able to stream Video. With the Server preferably implemented in Java, Python or Erlang?

+1  A: 

ErlyVideo is open source and written in Erlang.

Segphault
A: 

Look into the Java Media Framework. I used it some years back to develop some software that had web cam video conferencing capabilities which used RTP as a transport mechanism.

I recall that you could use it with, or without native bindings. The main difference being there weren't as many codecs supported with only Java native code. Unfortunately I don't believe it's been updated in some time, but it worked for me and should do what you described.

http://www.oracle.com/technetwork/java/javase/tech/index-jsp-140239.html

http://download.oracle.com/docs/cd/E17802_01/j2se/javase/technologies/desktop/media/jmf/2.1.1/apidocs/

http://en.wikipedia.org/wiki/Java_Media_Framework

jay.lee