Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
Record webcam audio/video software that allows my web-site visitors to leave messagesI am searching for software that I can have a web visitor leave a video message. Much like the technology from eyejot, voxlite and nimbb, where the webpage activates the camera/mic controls and the recording is saved to the server.
My webserver supports FFmpeg, FFmpeg-php, mplayer+mencoder, Flvtool2, Libogg, Libvorbis, Lame Mp3. I would like to find a solution that I can run on my server, however it may be possible to use a hosted solution. Thanks Dan |
#2
|
|||
|
|||
Re: Record webcam audio/video software that allows my web-site visitors to leave messYou need a streaming media server to record web-cam videos from your web-site. You can install your own RTMP server or rent a streaming media server.
Here is an example of web-cam recorder that works with FMS streaming media server http://www.experiments.flashmatics.c...lick.php?id=34 Client side is pretty easy. Here is a sample code: Code:
<div id="jwf_player">You need Flash player 9+ and JavaScript enabled to view this video.</div> <script type="text/javascript"> var params = {allowScriptAccess: "always", flashvars: "fullscreen=true&bufferlength=2&streamer=rtmp://192.168.1.63/alfa&file=test00.flv&type=camera"}; var atts = { id: "myjwfplayer"}; swfobject.embedSWF("http://www.jeroenwijering.com/embed/player.swf", "jwf_player", "425", "344", "8", null, null, params, atts); </script> |
#4
|
|||
|
|||
Re: Record webcam audio/video software that allows my web-site visitors to leave messI also need to have the same requirements on my website where registered users can grab videos from attached device like webcam and save these to database. And then users can watch these videos in their account via a video player
Can anybody guide me what are the basic requirements on server side. And which tool are required to make this happen. I want to run this module in environment of LAMP - Linux + Apache + PHP and MySql. Any help to right direction would highly be appreciated. Thank you, ShahNawaz |
#5
|
|||
|
|||
Re: Record webcam audio/video software that allows my web-site visitors to leave messvery nice
|