Flash :: Media Server With Php - Allows The User To Record A Video Using Webcam
Jul 27, 2010
We want to build an application that allows the user to record a video using their webcam on our site using flash and save the URL in a database using PHP. So that we can allow the user to send the video's to other users etc. Also we want to offer the user the possibility to upload their movies (per mail and with PHP) and convert them to flash movies, can this also be done using Flash media server? (maybe in combination with AMFPHP)
View 2 Replies
Similar Posts:
Oct 26, 2010
Am trying to record video from my webcam.
here is my code
[code]...
When i click record_btn, flash asks me permission to access my webcam. If i alow in the screen i am able to see live video. But I want to store the video and replay it.
View 16 Replies
Apr 26, 2010
Can I send/publish MP4/H.264 video (live or record) to FMS from webcam? Another similar question; does Flash (10?) support H.264 encoder?
View 3 Replies
Mar 24, 2011
I'm trying to record video from the users webcam and play it back at a later date.
I call
[Code]...
However, when I look at the FMS Admin Console at the streams in app/_definst_, their types are either "NetStream" or "Live". If they were being saved wouldn't they say "Stored"? After I close the application doing the recording, the "NetStream" type stream disappears, and after a while all the "Live" typed streams are gone too. Nothing is saved.
I have no idea what is happening. I don't know if it's a problem with my AS3 code not closing the recording properly or if I'm doing something else wrong, or maybe somethgin isn't right in the FMS?
View 1 Replies
May 27, 2010
My company is about to launch an online teaching product allowing users to use a webcam to record themselves giving a presentation. That presentation can then be submitted to a supervisor to review and comment on. While making their recordings, users can record multiple attempts and review each immediately after stopping the recording. All of this is being done with a browser based Flash application connecting to an instance of FMS 3.5.
All of this is working well. However, we recently found out that due to some of our other products, we are getting hammered with fees based on the amount of bandwidth we are using in our data center. We have made some alterations to curtail these problems, but we are concerned that this new product is going to push us over the edge again. Our original plan was to keep the video stream right around 115 kbps, a relatively low data rate. But when thinking about the expected concurrent users, the bandwidth starts to stack up and really spike.
So we are now looking for ways to limit the bandwidth that this new product will use. One idea was to figure out how to record the video locally when users where recording their test presentations. I thought that was now possible, but apparently that is not yet the case with the Flash Player.
Another idea was to limit the bandwidth that is allocated to each user that connects to our FMS. We are hoping to address the spiking issue with this limitation. I am, however, concerned about what will happen to a video stream that is getting squeezed on the server site. I know when users have limited bandwidth, video files that are published to the FMS are compromised (poor quality). But what happens when the bandwidth is limited on the server side? Do the same things happen to the published video file? Or can the server somehow queue up the data coming in and deal with it in full when it finally gets to it. My guess is that this is not the case, but was curious what others though.
View 5 Replies
Nov 23, 2011
We've purchased the FMS 4.5 and are now planning an application that lets users record a video to the server using their webcam. Straight forward, if we were to stream only to a flash video object. BUT, we would like our padders to be able to see the videos on demand too. Can't find a tutorial on this, seems like everyone's more interested in live streams.The server is able to record a stream in mp4, but when I'm testing these files in Adobe Media Player it won't play :| What codec is used, and is it possible to play this format on an iPad? If not, is there som sort of solution other than manually transcode to the right format.
View 5 Replies
Apr 28, 2011
goal is to record a stream from a webcam with the best possible quality regardless the bandwith of the user.(it doesn't have to be live or broadcast, just stored on the server)
is it best to record from server side with asc script or directly from the flash player ?what are the parameters on the server that i can play with in order to cache locally the stream if the bandwith is not high enough ?
View 5 Replies
Mar 17, 2008
Is there a way to record webcam video and upload it as a flv file to a remote server without the use of the Flash media server?
View 2 Replies
Feb 17, 2010
I'm having a problem with Flash Media Interactive Server 3.5. I have a simple application setup. I would like to simply to be allow the user to record multiple flvs. This is just because we want them to record, preview and either publish or try again.
[Code]...
to start and stop recording. The problem I'm having is that while the first record seems to go ok, the second gets garbled. The video starts about 70% through, and then just plays a small portion. I've tried meta injection to fix it up, but it's just not working. I'm thinking maybe I have to reset the stream or something before starting a record again, but I don't know how.
View 18 Replies
Dec 8, 2009
to generate thumbnails of the streaming video to control de contents of the video streaming. Could I do that in the server side?There is any setting to do that? Could I use the getOnMetadata method to catch a bitarray and then put in into a bitmap file?
View 1 Replies
Jun 12, 2010
How does the url of FMS real time video stream look like?
View 1 Replies
Apr 9, 2012
Is it possible to record 2 way conference in a single file? I can record conference separately for both perticipents but can not record as a single recording file.
View 1 Replies
Jan 11, 2011
Just wondering if it is posssible to use Flash to record the AV from a web cam and save the video file locally?
View 2 Replies
Apr 11, 2011
I am developing a live video recording application and my application have black and white mode recording feature,
View 3 Replies
Jun 4, 2009
Before I buy the Flash Media Server, I would like to know that:
- Is it possible to crop the webcam video (because I need just one part of the whole picture) before streaming from the client's Flash Player to the Media Server? (it would reduce the bandwidth a lot)
- If not, can the player store some parts of video until it is fully streamed with all it's data (30 fps) to the Server? (e.g: client: low bandwidth, I need all frames that the webcam records, real-time doesn't matter if it takes 1 minutes for 20sec video, that would be ok.
View 1 Replies
Jun 10, 2010
I am trying to broadcast live video using a webcam. I am using the developer version of FMS3.0. Actually i have a working code of webcam broadcasting, which i used before. But now i am using a free version of FMS3.0. When i tried to connect, the following error is showing:
"NC.onStatus> info.code: NetConnection.Connect.InvalidAppNC.onStatus> info.code: NetConnection.Connect.Closed"
I am trying to connect with [URL]
View 10 Replies
Jun 30, 2009
I want to publish and record video stream in h.264 and audio stream in AAC format . Does flash player support to publish video stream in h.264 format ? And which version of flash player and FMS could implement this function ?
View 2 Replies
Dec 15, 2010
So I have FMLE and FMS. to record and stream video at the same time.
On server side I have "main"
application.onPublish = function(client, potok){
potok.onStatus = function(info){
for(var i in info){
trace(i + "=" + info[i]);
[Code] .....
View 12 Replies
Dec 29, 2011
I need to record video from webcam in Flash and send it to Youtube using Api.I cant use server and all process must be in client side.
View 7 Replies
Aug 5, 2011
I need to record video from webcam in Flash and send it to Youtube using Api. I cant use server and all process must be in client side.
View 1 Replies
Jan 14, 2010
i'm developing a web site, and i'm trying to let the user record some video from his webcam. I'm using actionscript and flash media server. I got it work in my delevoper enviroment, but when i deployed it to the production server, the webcam can't get connected to the FMS. I'm afraid this is because of port blocking from the firewall. Does anyone knows wich ports are userd for recording from a browser by the Flash Media Server? I open the 1935 port in the Flas Media Server, but it still doesn't work.
View 19 Replies
Jun 27, 2011
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="[URL]" layout="absolute" creationComplete="init();">
<mx:Script> <![CDATA[
import mx.controls.Alert;
import mx.core.mx_internal;
import flash.media.Camera;
[Code] .....
So, I play the record video , but there is no image , just voice
View 6 Replies
Mar 22, 2012
How to record a live video stream playing on an FLVPlayback?
View 1 Replies
Dec 10, 2010
Server conf:
2 x Intel(R) Xeon(R) CPU L5410 @ 2.33GHz
16Gb RAM
2 Gbit ethernet channel
OS - Linux CentOS 5.5 x86_64
FMS4 Interactive
Live stream parameters:
320Ń…240 qua_=87 bw_=200000 kf_=5 fps_=18
So, after approximately 600 connections to one stream video becomes choppy (periodically freeze, slow motions). CPU-usage at this time is 100-120% (maximum is 800%, 100% per each core), network usage is 500 Mbit/sec.But second live stream(with few connections) at this server looks fine simultaneously with 600 connections at first stream.Experiments with recommendation in "Configuring performance features" documentation chapter(enabling/disabling aggregate messages and configure the size of stream chunks) do not help.
View 2 Replies
Jan 21, 2011
I'm trying to record a stream from a webcam using FMS4 developer edition. The streams are recording on a linux box in .flv files. These files though have problems.
1 - The video quality is terrible. Fuzzy/blocky. Any kind of motion looks awful. Is there any way to improve this?
2 - The sound jumps/skips and goes out of time with the video.
As it is now this is useless. I am trying to make a system where a user records a short video from the camera and then I upload it to YouTube from my server. If you use Youtube's webcam page the video quality is quite acceptable and the audio is obviously in sync too, so they must know something I don't. [URL]..
View 2 Replies
Jul 22, 2009
I want to record a stream which is published with Flash Live Encoder to FMS 3.5, but split the recording in files with predefined length. For example if a stream 'webcam' is published I want to record it in chunks of 10 minutes: 'webcam1.flv', 'webcam2.flv' ... From what I can tell there's no facility to work with timers. The only solution I could think of was using stream.record() with a time limit parameter but that seems like a hack because it triggerstStream.Record.DiskQuotaExceeded on the stream when the recordin should stop and start recording another chunk. Has anyone done something similar?
View 10 Replies
Sep 8, 2009
is there any sample on using array bitmapdata to record video from webcam and generate flash movieclip file? i want to record sound as well without using red5/flash streaming server
View 3 Replies
Jan 21, 2009
I merely want to use Flash and a webcam to record video with audio, and have it stored on a server (on a regular HTTP server running PHP, not on FMS).
View 1 Replies
Nov 12, 2009
i have to record a video from the webcam and generate a video file from this ( i really cant figure this thing out )
View 2 Replies
Feb 15, 2011
I am developing Video Chat over Ip (including audio and text too). But I am unable to get the proper startup material for my desktop application.
View 2 Replies