What are the differences between Red5 and Flash Media Server

I am creating a simple flash application that records the user's voice. I am new to flash.

What to consider when choosing between a red5 server and flash media?

Can they be hosted on EC2?

+4
source share
4 answers

The first, and perhaps the main difference, is the cost. You can install both on a Linux machine, and I assume that EC2 is capable of hosting both (but I don't know for sure). However, you have to pay for each FMS instance, probably making it the wrong option for EC2 with instances going up and down whenever you want. Red5 does not seem to be fully compatible with FMS. For example, right now I am evaluating both the same video player that works smoothly with FMS, will not allow me to control the search bar if the video is served with red5. However, I expect this to be resolved. FMS has additional security features (checks) SWV, which can also be useful. If I were you, I would try to do this with Red5 first and switch to FMS if you cannot get it to work.

+5
source

Please note that Red5 documentation is rare ... and may disappoint setup without prior knowledge.

+1
source

red5 is free (open source), and the server side is in java, and you can do a lot of things with java, FMS is not free, and the server side is Action Script 1

+1
source

Not only java, you can write serveride in Jython (python in java jvm), jruby (ruby on java), Rhino JS (Java Script) and Groovy.

+1
source

All Articles