Results 1 to 6 of 6

Thread: Real time Video chat in FMS

  1. #1
    Join Date
    Feb 2010
    Posts
    188

    Exclamation Real time Video chat in FMS

    Hi all,

    I am using the Flash media server (FMS) that establishment of broadcast programs and online video recording and playback implementation. I am familiar with common programming model. I want to appear real time video chart with the server achieve a constant video chat program. How it is possible . Please suggest.

  2. #2
    Join Date
    May 2008
    Posts
    2,134

    Real time Video chat in FMS

    Video chat from time to time through the FMS implementation is actually very simple, that is, constant flow of operations. If it is a one-way video chat, then the two ends of the side of the side for the release of client side of the subscription side, if it is two-way video chat, then both sides were published side-side and subscribe.check and reply. Best of luck.

  3. #3
    Join Date
    Oct 2005
    Posts
    2,358

    Real time Video chat in FMS

    From the technology up analysis, one-way video chat is the side of the release stream on the other side streaming, two-way video chat is both sides need to provide two streams, one for release stream, one for streaming. Talking about professional point is to create a stream and sent to the server the client called the release of one to create a stream to accept the contents of a client called subscription, when the same client are both publish and subscribe, it must create two streams, one is the output stream, one is to accept the stream. Check that and reply.
    I'm the Proud Owner of the most dangerous weapon
    known to man kind: Human Brain

  4. #4
    Join Date
    Apr 2008
    Posts
    2,572

    Real time Video chat in FMS

    The situation is that while from time to time publish the video stream side of the player, which is also inseparable from the connection FMS, the code is as follows:

    Code:
    privatefunction onPublishClick123 (evt: MouseEvent):void
    {
    nc = newNetConnection123 ();
    nc.connect ("rtmp: / / localhost / LiveStreams");
    nc.addEventListener123 (NetStatusEvent.NET_STATUS, onNetStatusHandler123);

  5. #5
    Join Date
    May 2008
    Posts
    2,792

    Re: Real time Video chat in FMS

    By clicking on the button to connect FMS server, and then to the FMS release publish the video stream to achieve the purpose of video release. It should be note that the release method publish () in the latter parameter is "live", said the constant video stream. In the form of live streaming will not be released inside FMS generated. Fla file, is different from the "record" to record the video stream is generated. Flv video files. check the procedure and reply.

  6. #6
    Join Date
    Apr 2008
    Posts
    2,276

    Real time Video chat in FMS

    The video release point is access to video, audio data, respectively, through the Camera and Microphone static method implementation. The reference Code is below:

    Code:
    publicfunction PublishStream123 ():void
    {
    btnPublish123.label="Post Video";
    btnPublish123.addEventListener (MouseEvent.CLICK, onPublishClick123);
    cam1 =Camera.getCamera ();
    mic1 =Microphone.getMicrophone ();
    video1 = newVideo (320,240);
    video1.attachCamera (cam);
    video1.x=20;
    video1.y=20;
    addChild (video1);
    }

Similar Threads

  1. Replies: 3
    Last Post: 22-04-2012, 06:28 PM
  2. Converting video file in real time by using PHP and ffmpeg
    By Nero Ferocious in forum Windows Software
    Replies: 4
    Last Post: 12-04-2012, 02:46 AM
  3. Real-time scanner
    By Lawford in forum Networking & Security
    Replies: 5
    Last Post: 10-04-2010, 12:44 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,702,173,101.69398 seconds with 17 queries