We have a Java web application (application # 1) running Tomcat.
Our requirement: We want to set up a separate server for streaming media. Our media files are already converted to FLV (the only format we support) ... we just want to serve them.
The streaming server should now be able to communicate with application # 1 (via web service calls). Therefore, we are thinking of setting up a streaming server as a simple Java web application (# 2) running under Tomcat. We will allow media requests by the server by default, since it can send and receive range requests.
My question is . Does the Tomcat servlet use streaming media to suit your needs? Or would you recommend we go for the right streaming server like Red5?
Thanks so much for your answers!
source share