I am trying to build an audio recorder and have 3 questions:
- Is 开发者_运维百科red5 enough for building an audio recorder? No need for a flash recorder or something?
- How can I install red5 on heroku server?
- Is there a tutorial for audio recorder in rails?
Simple answer - you can't.
The Heroku platform is 'as is' - you can only install gems as specified in your gemfile.
Uff, hard to tell, actually. 1) Is red5 enough for building an audio recorder? No need for a flash recorder or something?
Right, with "Red5" you have the streaming server. Then, you need recorder, in flash or another program that use the RTMP stream protocol. There are several examples in Red5 svn and here
2) How can I install red5 on heroku server?
You can try modifying the Red5 server java srcs (e.g. the ANT build to Maven) and upload it to the Heroku Java Cedar stack. I shouldn't be imposible to port to it.
3) Is there a tutorial for audio recorder in rails?
Don't know of any. Currently, I'm working on a rails app with video recording/playing capabilities using a Red5 server and Red5Recorder. If it works, I can post my experiences somewhere :)
Good luck
精彩评论