Publish live video & play

Hi all, i use the code below to publish my cam, and i can play it in the same application. Then i copy and renamer it videoPlayer2.as then i use
displayPlaybackVideo(); method but it says "TypeError: Error #1009: Cannot access a property or method of a null object reference.". How can i get the published live video from another app.
Thanks..
videoPlayer.as // publish and play
package
     import flash.display.MovieClip;
     import flash.net.NetConnection;
     import flash.net.NetStream;
     import flash.media.Camera;
  import flash.media.Microphone;
     import flash.media.Video;
     import flash.events.NetStatusEvent;
  import fl.video.FLVPlayback;
     public class videoPlayer extends MovieClip
            var nc:NetConnection;
   var ns:NetStream;
   var nsPlayer:NetStream;
   var vid:Video;
   var vidPlayer:Video;
   var cam:Camera;
   var mic:Microphone;
           public function videoPlayer()
                nc=new NetConnection();
                nc.connect("rtmp://localhost/video");
                nc.addEventListener(NetStatusEvent.NET_STATUS,onNetStatus);    
           function onNetStatus(event:NetStatusEvent):void
      trace(event.info.code);
       if(event.info.code == "NetConnection.Connect.Success"){
           publishCamera();
           displayPublishingVideo();
           displayPlaybackVideo();
     function publishCamera() {
        cam = Camera.getCamera();
    cam.setMode(160,120,15);
    cam.setQuality(100000,0);
       mic = Microphone.getMicrophone();
       ns = new NetStream(nc);
       ns.attachCamera(cam);
       ns.attachAudio(mic);
       ns.publish("myCamera", "record");
  function displayPublishingVideo():void {
   vid = new Video(200,200);
   vid.x = 10;
      vid.y = 10;
      vid.attachCamera(cam);
      addChild(vid); 
  function displayPlaybackVideo():void{
      nsPlayer = new NetStream(nc);
      vidPlayer = new Video(200,200);
   nsPlayer.client=this
      nsPlayer.play("myCamera",-1,-1);
   vidPlayer.x = cam.width + 80;
      vidPlayer.y = 10;
      vidPlayer.attachNetStream(nsPlayer);
      addChild(vidPlayer);

if i publish camera in videoPlayer2, displayPlaybackVideo() method is working, but i cannot catch the video whichs is published from videuPlayer.as.
thanks
//videoPlayer.as
package
     import flash.display.MovieClip;
     import flash.net.NetConnection;
     import flash.net.NetStream;
     import flash.media.Camera;
  import flash.media.Microphone;
     import flash.media.Video;
     import flash.events.NetStatusEvent;
  import fl.video.FLVPlayback;
     public class videoPlayer extends MovieClip
            var nc:NetConnection;
            var ns:NetStream;
            var nsPlayer:NetStream;
            var vid:Video;
            var vidPlayer:Video;
            var cam:Camera;
            var mic:Microphone;
           public function videoPlayer()
                nc=new NetConnection();
                nc.connect("rtmp://localhost/video");
                nc.addEventListener(NetStatusEvent.NET_STATUS,onNetStatus);    
           function onNetStatus(event:NetStatusEvent):void
      trace(event.info.code);
       if(event.info.code == "NetConnection.Connect.Success"){
           publishCamera();
           displayPublishingVideo();
           displayPlaybackVideo();
     function publishCamera() {
        cam = Camera.getCamera();
    cam.setMode(160,120,15);
    cam.setQuality(100000,0);
       mic = Microphone.getMicrophone();
       ns = new NetStream(nc);
       ns.attachCamera(cam);
       ns.attachAudio(mic);
       ns.publish("myCamera", "append");
  function displayPublishingVideo():void {
   vid = new Video(200,200);
   vid.x = 10;
      vid.y = 10;
      vid.attachCamera(cam);
      addChild(vid); 
  function displayPlaybackVideo():void{
      nsPlayer = new NetStream(nc);
      vidPlayer = new Video(200,200);
   nsPlayer.client=this
      nsPlayer.play("myCamera",-1,-1);
   vidPlayer.x = cam.width + 80;
      vidPlayer.y = 10;
      vidPlayer.attachNetStream(nsPlayer);
      addChild(vidPlayer);
//videoPlayer2.as
package
     import flash.display.MovieClip;
     import flash.net.NetConnection;
     import flash.net.NetStream;
     import flash.media.Camera;
     import flash.media.Microphone;
     import flash.media.Video;
     import flash.events.NetStatusEvent;
     import fl.video.FLVPlayback;
     public class videoPlayer2 extends MovieClip
            var nc:NetConnection;
            var ns:NetStream;
            var nsPlayer:NetStream;
            var vid:Video;
            var vidPlayer:Video;
            var cam:Camera;
            var mic:Microphone;
           public function videoPlayer2()
                nc=new NetConnection();
                nc.connect("rtmp://localhost/video");
                nc.addEventListener(NetStatusEvent.NET_STATUS,onNetStatus);    
           function onNetStatus(event:NetStatusEvent):void
                trace(event.info.code);
                 if(event.info.code == "NetConnection.Connect.Success"){
                      displayPlaybackVideo();
       function displayPlaybackVideo():void{
                nsPlayer = new NetStream(nc);
                vidPlayer = new Video(200,200);
                nsPlayer.client=this
                nsPlayer.play("myCamera",-1,-1);
                 vidPlayer.x = cam.width + 80;
                 vidPlayer.y = 10;
                vidPlayer.attachNetStream(nsPlayer);
                addChild(vidPlayer);

Similar Messages

  • Live Video Plays Locally But Remotely Only Skin Is Visible

    Hi Guys,
    I have tested other embedded videos and they will play remotely so I know the hosting site is working.   Can anyone please look and tell me what I can try to make the vid work?   Currently, the live video will play locally and remotely from this computer where all the files are stored but only the skin is visible on any other remote computer's web browser.
    I will post any info you ask for.   I have been working on this forever.   Please, someone who is good at this help me?
    Here are my files look (I can't figure out how to blow this up larger - can you see it?):
    I will try whatever you suggest.
    Chris
    The Adobe Dreamweaver Tech Support said to post here and that the Expertise Team (you I suppose) would figure it out.  I am running Windows 7 64-bit OS.
    My live video is being broadcast by Adobe Flash Media Encoder to Adobe Flash Media Server 4 and inserted into Dreamweaver. Dreamweaver Support watched me re-create the Flash file and import into Dreamweaver and we looked at it for hours together. In the end, they suggested I post here because we could not figure it out / it is not supported. Ideas?   Can I provide any other helpful info?

    Most likely it's a URL problem. What the player is looking for is the remote URL to the server... not "localhost" or some other address on your local machine.
    So when you config the Adobe Flash Media Live Encoder, there is a dialog box asking for FMS URL:
    Your remote URL will look something like this:
    rtmp://76.192.182.133/my_streamer
    where the protocol is rtmp, the Web address is the address of your host server and the name of the application you are using to do the streaming is the last part of the address.
    Of course this means that you will need to have an application already residing on the server, it's not enough to just have access to a Flash Media Server, you also need an application to do the streaming.
    The next important part is to give your stream a name, it can be whatever, but this name will be used on the Web page.
    something like:
    Stream: test_stream
    With those settings, here is what a Web page would look like:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <script type="text/javascript" src="swfobject.js"></script>
    <title>Streaming Test</title>
    </head>
    <body>
    <div id='mediaspace'>
      <script type='text/javascript'>
        var so = new SWFObject('player_new.swf','mpl','500','410','9');
        so.addParam('allowfullscreen','true');
        so.addParam('allowscriptaccess','always');
        so.addParam('wmode','opaque');
        so.addVariable('image','live_intro.jpg');
        so.addVariable('file','test_stream');
        so.addVariable('bufferlength','10');
        so.addVariable('streamer','rtmp://76.192.182.133/my_streamer');
        so.write('mediaspace');
      </script>
      </div>
    </body>
    </html>
    that's the entire page, just copy and paste into a new html doc in code view.
    See where the variable 'file' is the name of your stream 'test_stream'
    And the variable 'streamer' is the URL of your host FMS with the application name at the end of the address.
    This is working code from the JW Player using swfobject 1.5 (notice the call to swfobject in the <head>).
    There is also an image (make it 500 x 410 or whatever size you set your player to) that sits in front of the player until someone click the play button.
    So to make this work, you need 3 files, the JW Player itself, the swfobject file, and a thumbnail for before the Live streaming starts.
    You can download them all here from my site:
    http://www.cidigitalmedia.com/tutorials/streaming/player_new.swfswf
    I changed the file extension to .swfswf so that you can download and not have the browser open the .swf. Once you have the file, change the file extension to just .swf
    http://www.cidigitalmedia.com/tutorials/streaming/swfobject.js
    swfobject for Flash detection, also great for adding alternate content for non-Flash browsers.... but that's another story.
    and an image here:
    http://www.cidigitalmedia.com/tutorials/streaming/live_intro.jpg
    download to your screen and right click and "Save Image.
    Put all the files in the same folder as your new HTML Web page.
    Change the FMS URL to your host URL.... I'll include a photo here:
    http://www.cidigitalmedia.com/tutorials/streaming/streaming.jpg
    That is where your URL info goes. When you click the "Connect" button, you should get a message in the "Encoding Log" tab that tells you whether the connection was successful of not.
    For more info on the Adobe Flash Media Live Encoder:
    http://forums.adobe.com/community/flash/flash_media_live_encoder
    You now have everything needed to properly display a Live stream... provided that is that your FMS is correctly set up and that you actually have a working, streaming application installed on the server.
    One more thing:
    "I even tested another embedded video just to make sure the host wasn't the issue and that video played live perfectly even remotely but my feed would not."
    A Live feed is completely different from prerecorded videos. It uses a different protocol, Player configuration is different, and of course you need an actual application that streams Live video.
    Best of luck! I hope you can get this going!
    Adninjastrator

  • Frames Missing When publish live video to fms server

    I am creating flex mobile application , that allows people to connect using a android camera and microphone,then recording video from android camera to Flash Media Server(FMS) 5 starter using adobe flex but when I play the recorded live video from FMS it's missing some frames. I have set the camera.fps to 30 but when I trace out the currentFPS for camera  30 and  netStream's currentFPS  returns low value, usually falls between 2 and 5 (high 1280X720),15 and 20(medium 640x480),25 and 30(low 320X240).where netStream is the object of the flash.net.NetStream class

    Hi
    I think this would be useful to you.
    http://help.adobe.com/en_US/flashmediaserver/devguide/WSd391de4d9c7bd609-52e437a812a3725df a0-8000.html#WSd391de4d9c7bd609-52e437a812a3725dfa0-7ff5

  • Increasing bandwidth while publishing live video

    Hi all,
         I have made a sample application for publishing video through FMS using as3.
         In that I had used the same code as given in the sample provided by the adobe,
         m_nc = new NetConnection("rtmpt://localhost:1935/Test");
         private function onNetStatus(event:NetStatusEvent):void
         switch (event.info.code)
        case "NetConnection.Connect.Success" :
         m_ns = new NetStream(m_nc);    
         m_nsPlayer = new NetStream(m_nc);
         m_nc.call("checkBandwidth", null);
           var camName:String = setCamera();
          if(camName == "null")
             trace("Sorry! No Camera found");
             break;
                if(camName == "NoWebCam")
                     if(ExternalInterface.available)
                      ExternalInterface.call("CameraNotFound");
                     break;
               var micIndex:int = setMicrophone();
               if(micIndex == -1)
                trace("Sorry! No Mic found");
                break;
               publishCamera(camName,micIndex);
               displayPublishingVideo();
              break;
    private function publishCamera(camName:String,micIndex:int):void
       m_cam=Camera.getCamera(camName);
       switch(m_resolution)
        case "160x120" : m_cam.setMode(160,120,15);
         break;
        case "320x240" : m_cam.setMode(320,240,15);
         break;
        case "640x480" : m_cam.setMode(640,480,15);
         break;
        default      : m_cam.setMode(320,240,15);
         break;
       m_cam.setQuality(0,85);
       if(micIndex != -1)
        m_mic=Microphone.getMicrophone();
        m_mic.codec = SoundCodec.SPEEX;
        m_mic.setUseEchoSuppression(true);   
        m_mic.setLoopBack(false);
        m_mic.setSilenceLevel(20);
        m_ns.attachAudio(m_mic);   
       m_ns.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus);
       m_ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, onAsyncError);
       m_ns.attachCamera(m_cam);
       m_ns.publish(m_publishName, "live");
       stage.addEventListener(MouseEvent.CLICK, onStageClick);
    The above was the sample code just for publishing the video.
    The similar code for viewing the published video was written
    private function displayPlaybackVideo(publishName:String,muteSound:String):void
         m_nsPlayer.bufferTime = 0.6;
       m_nsPlayer.addEventListener(NetStatusEvent.NET_STATUS,onstatus);
       m_vidPlayer.height = 480;
       m_vidPlayer.attachNetStream(m_nsPlayer);
       addChild(m_vidPlayer);
       m_isVideoChildAdded = true;
    now after writing code I launched the application and started analyising the server console.
    The server console shows the regular increament in bandwidth which hampers my video publish after 8-10 minutes resulting in stuck of video.
    So, please help me in resolving the problem.
    Thanx in advance.

    hi.
       yes, publish of video stops as well as connection also gets loss, due to increase in http ISA limit.
    Please help.
    Thanks

  • Able to play live video by rtmp but not by http

    Hi Experts ,
                       I need some help in proceeding further on my HDS live streaming setup .
    i have adobe flash media server 4.5 and adobe flash media live encoder 3.2 . followed all the steps provided in the following link
    http://help.adobe.com/en_US/flashmediaserver/devguide/WSeb6b7485f9649bf23d103e5512e08f3a33 8-8000.html.
    can somehelp help me out . am i missing some this . i would ideally need the live video play with http syntax .
    mtp://2.68.1.5/livepkgr/livestream?adbe-live-event=liveevent -
    http://2.68.1.5/livepgr/livestream?adbe-live-event==livestream doesnt work

    Thanks Hparmar , i tried the above links still Iam not able to stream single live link .
    i see .bootstrap , .control , .meta , f4f,f4x and .stream files .
    on my encoder Fms url is rtmp://localhost/livepkgr and stream is livestreamnow .
    on browser url when i try http://serverip/hds-live/livepkgr/_definst_/liveevents/livestreamnow.f4m - it says f4m document contains errors URL missing from tag " .
    my manifest file
    <manifest xmlns="http://ns.adobe.com/f4m/2.0">
      <baseURL>http://</baseURL>
      <media href="http://2.68.1.8/hds-live/livepkgr/_definst_/liveevent/livestreamnow.f4m" bitrate="650"/>
    xml in browser displays this
    manifest><id>
            livepkgr/events/_definst_/liveevent
        </id><streamType>
            live
        </streamType><duration>
            0
        </duration></manifest> .
    can someone help me with this , how to proceed further ?

  • Insert live video feed in Keynote

    Hello,
    How could I insert a live video feed in a running Keynote presentation ?
    Source could be webcam, iPhone video output, etc.
    I'd like to keep the background of the Keynote presentation while the live video plays on top.
    Thx for your help.
    Benoit

    Here's how I got it working today (slight modifications to Unami's guide):
    1) Install Quartz Composer (it comes with the XCode Developement Utilities on your OSX installation disc)
    *2) Download the KinemeCore ( http://kineme.net/files/release/KinemeCore/KinemeCore-0.5.1bInstaller.pkg.zip ) and install.
    3) Open Quartz Composer and create a blank composition.
    *4) Click on the KinemaCore menu in the top menu (between Window and Help) and select KinemaCore Preferences. Click on the Unsafe Mode tab. For each of the required applications on the left, check "Safe" for Video Input on the right. (I checked Video Input as "Safe" for every application, just in case.)
    5) Open the Patch Library, then add a "Video Input" and a "Billboard" patch
    ( To select another than the default video input device, select the Video Input patch, open the Patch Inspector and change the input device in the Settings tab )
    6) Connect the "Image" output of the Video Input Patch to the "Image" input of the "Billboard" Patch (click and drag from the white dot next to "Image")
    7) Save this composition and close Quartz Composer
    8) Now, open Keynote and drag the .qtz file you just saved into your presentation
    For some reason, Keynote will occasionally not allow me to drag/drop the .qtz file into its window. Closing that window and starting a new document fixes this.
    Hope that helps.
    -jeremy

  • How to publish multiple bit rate(MBR) live video?

    I've searched quite a few threads:
    http://www.developsigner.com/blog/2009/05/28/multi-bitrate-live-streaming-with-fmle-adobe- flash-media-live-encoder
    http://forums.adobe.com/thread/27371
    dynamicStream.addStream("livestream1",200);
    dynamicStream.addStream("livestream2",400);
    dynamicStream.addStream("livestream2",600);
    vid.play2(dynamicStream);
    But all of them are talking about playing multiple bit rate live video,
    my question is how I can publish multiple bit rate live videos in the first place?

    Thanks for your reply!
    But I need this to be done for each web user,
    so I can't require them to use FMLE themselves...

  • Published F4v video and html plays locally but not online...

    I am running Windows 7/64 and Master Collection. I've created a clip of DV NTSC footage to test F4V publishing. Done this many times with CS3 and flv files but this has me stumped. I can successfully view the video and web page locally in IE and Netscape but on upload to my server I have the menu and placement right but no video appears. I created the clip in Premiere Pro CS5 and exported to F4V/FLV best quality. Opened an Actionscript Media DV NTSC template in Flash Pro CS5 and imported the video which I had pre-placed in my root web folder locally. I then exported the swf and saved the fla. All files were then in my root folder and the scrpts in the scripts folder. In Live View in Dreamweaver CS5 all looked fine. In each browser locally the video played as expected. Once all files were uploaded the video was not visible.
    The file is located here...
    http://www.goodmangraphic.com/2010vid.htm
    in the root directory are... Sequence 01_1.f4v, minimaflatcustomcolorall.swf, 2010movie.swf, 2010movie.fla and in the scripts folder, expressinstall.swf and swfobject_modified.js.
    Thanks in advance for any guidance on what I may be doing wrong.
    John

    Ross,
    As you suggested I checked the fla and indeed the local path was there so I changed it to it's relative path, then re exported the swf and saved the fla, re-uploading the files. No luck on ability to see online or even local preview. So I then reset the file location to use the actual URL online and that would not work and even in fla showed an error it could not connect to the file. So I reverted to local naming of the file again to test and sure enough it previewed fine locally in both browsers but again reverting to a relative path or http, failed to sucessfully see the video.
    I am not having these issues with flv format, just the f4v. As an example here is the flv version using the url in the fla file attributes...
    http://www.goodmangraphic.com/2010vid_b.htm
    BTW - I simply renamed the extension after duplicatng the file for the video in this example.
    Appreciate the help.
    John

  • Live SWF video Plays Locally But Only The Skin is Visible Remotely.

    Hi Guys,
    I have tested other embedded videos and they will play remotely so I know the hosting site is working.   Can anyone please look and tell me what I can try to make the vid work?   Currently, the live video will play locally and remotely from this computer where all the files are stored but only the skin is visible on any other remote computer's web browser.
    I will post any info you ask for.   I have been working on this forever.   Please, someone who is good at this help me?
    Here are my files look (I can't figure out how to blow this up larger - can you see it?):
    I will try whatever you suggest.
    Chris
     P.S.   My live video is being broadcast by Adobe Flash Media Encoder to Adobe Flash Media Server 4 and inserted into Dreamweaver. Dreamweaver Support watched me re-create the Flash file and import into Dreamweaver and we looked at it for hours together. In the end, they suggested I post here because we could not figure it out / it is not supported. Ideas?   Can I provide any other helpful info?P.S.  The Adobe Dreamweaver Tech Support said to post here and that the Expertise Team (you I suppose) would figure it out.  I am running Windows 7 64-bit OS.

    According to you since the stream published by FMLE to FMS is playing fine on the other players even remotely, it doesn't look like FMS problem.
    But could you please eloborate the logic you are using in your player?

  • How to play live Video Stream with Flex?

    I'm trying to get Flex Builder 3 to play a live video stream with Flash Media
    Server and Flash Live Media Encoder.
    I'm able to stream pre-recrorded (vod) flvs in flex from flash media server.
    I'm able to stream live video using Flash/FMS/Flas Live Media Encoder, but not
    with Flex.
    This code streams pre-recorded Video on Demand flvs, but not live streams:
    If I change source to "rtmp://localhost/live/livesream.flv, I get nothing.
    What am I doing wrong?
    <?xml version="1.0"?>
    <!-- controls\videodisplay\VideoDisplayFMS.mxml -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:HBox>
            <mx:Label text="RTMP FMS 2.0"/>
            <mx:VideoDisplay
                autoBandWidthDetection="false"
                source="rtmp://localhost/vod/Legend.flv"/>
        </mx:HBox>
    </mx:Application>
    Oh and sorry for the double post. I didn't know there was a seperate FMS forum.

    That worked! Thanks  *very* much. Stupid of me to forget to set the live attribute to true. Also removed the .flv. BTW: what video component do you prefer?
    Here's the working code:
    <?xml version="1.0"?>
    <!-- controls\videodisplay\VideoDisplayFMS.mxml -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:HBox>
            <mx:VideoDisplay
                live="true"
                autoBandWidthDetection="false"
                source="rtmp://localhost/live/livestream"/>
        </mx:HBox>
    </mx:Application>

  • How to disable fast play/catchup of live video

    Hi,
    Starting with Flash 11.2 we have noticed that if the user changes the window in which the live video is being played, it does a catch-up when he returns back to the video.
    This was not seen in Flash 11.1 and previous versions. Is there a way to disable this
    Thanks!

    Open the General tab of Safari's preferences and set it not to automatically open safe files. This applies to more than just music.
    (126662)

  • Air 3 + FMS 4.5 + HLS = iOS app play live video? h264+aac?

    OK, I tried before with air 2.6-2.7, a live video app VP6+MP3 to the AppStore and it got rejected, because of the http-live-streaming requirement.
    So today, I installed FMS 4.5, and created stream h264+AAC, to the rtmp://myserverip/livepkgr  with stream: mystream?adbe-live-event=liveevent
    I tried openning it on iphone safari with this url and it playes with default player: http://myserverip/hls-live/livepkgr/_definst_/liveevent/mystream.m3u8
    Then I tried with same url in my iphone app (Air 3.0 sdk) to open the stream and it doesnt work, I tried f4f and f4m extensions, dont work.
    What is the URL I have to load from my app as3 to load this HLS stream into my Air3 iOS App?
    I read somewhere now it is possible, or is it not possible yet to make app that plays HLS now?

    OK, I just made it work (kind of) with StageWebView. In a way with the iphone default player it is working smoothly with h264 video and AAC audio.
    - Is this the only way to bring HLS (http-live-streaming) live video to the  Air3 sdk based iOS Apps? I looked through the HLS and HDS documents, it doesnt say anything about how to load the stream into AS3 code with rtmp://ip/live/stream kind of URL.
    - Is there any live tv apps approved to Apple AppStore with this StageWebView implementation? I am worried that that it will rejected, because it is basically just loading a html page.
    Appreciate the help in advance.

  • Flash videos play in preview, but not live website...

    I have embedded .FLV video files into my website.  The videos play in my preview browser with no problems.  When I upload them to my live site, and try to view them on the web, there is just a white space where they are supposed to be, and they do not play.  The url of the webpage with the video is :
    http://www.centrometalcut.com/Photos/abrasivephotos.asp
    I have searched for all kinds of answers and solutions, tried tons of different things, and I cannot seem to fix this. I am so frustrated, please help!!   Thanks.

    Hi,
    may I show you how I did it? (Translated from my German DW):
    Header 1
    Header 2
    Ganz neues Unterverzeichnis anlegen
    Datei html neu
    DesignMode:
    Einfügen Flash-Video
    Durchsuchen ---> myFLV.flv
    Skin: Halo Skin 3 (min. Breite 280)
    Breite 640
    Höhe 480
    alle Kästchen angeklickt
    create a really new subdirectory
    create a new html-file
    DesignMode: Insert Flash-Video
    search/browse ---> myFLV.flv
    skin: Halo Skin 3 (min. width 280) ( it's only my choice)
    width 640 ( it's only my choice)
    height 480 ( it's only my choice)
    I clicked all the boxes
    ---> And now up and away with ALL these files in a directory of your server:
    YourFlv.flv
    YourFlv.php (or YourFlv.html or ......
    Clear_Skin_1.swf (my choice, but created from DW)
    FLVPlayer_Progressive.swf (created from DW)
    Hans-G.

  • Live video publishing freezes in IE9

    Hello all. I have been unable to find any information regarding this issue and was wondering if anyone out there can point me toward either a solution, or information stating that Microsoft or Adobe are aware of the issue and working on it.
    When publishing a live video stream within IE9, it works fine until I either switch tabs or minimize the window. At this point the video freezes for whoever is watching it. Troubleshooting shows the FMS indicates the SWF has stopped transmitting data. For all browsers other than IE9, this issue does not happen. Even previous versions of IE work great minimized.
    We are currently using FMIS 4, and I have tried both the current stable 10.3 FP build as well as the FP Incubator, just in case this issue was worked out for the next FP release.
    It boggles my mind that no one else seems to have run across this issue with IE9.
    Thanks for any help I can get,
    Pete

    Just in case others are still experiencing this, fret not. A solution has been found and the fix is incorporated into the current Beta for Flash Player 11.
    As soon as it hits official release, a lot (if not all) of our odd ActiveX lockups and freezes seem to be addressed. Thank you, Adobe!

  • Any Sample code for recording+playing streaming live video?

    Hi all,
    I'm new to FMS3,
    I wanna create a page for webcam live recording and playing,
    is there any sample code for reference (i can only found the code
    for live recording but do not have live record+play)?
    Many thanks.
    I have installed FMS3.0 and FME2.0 on my machine, so is it
    capable to do so?
    Many thanks.

    Thanks for your reply, but I have another question:
    My live file (test.flv) is recorded under this path:
    C:\xxxx\FMS3\applications\path\streams\_definst_\
    But seems FMS3 can only play video under this path:
    C:\xxxx\FMS3\applications\vod\media\
    My only success is on this source path rtmp://ip/vod/test in
    the component FLVPlayBack.
    So is it happen to all free version of FMS3 or I have to type
    sth more?
    Many thanks.

Maybe you are looking for