Streaming Using SDP from FMS 3

Hi,
I am newbie to flash media server,i want to know how to
stream the live content from the .sdp file that is on the flash
media server.

The "Pause" button on the Captivate playbar and the video are two separate instances. Therefore you cannot control your video from the standard Captivate controls unfortunately.
I never used FMS with Captivate myself but isn't it possible to add a skin with controls on the video itself?
/Michael
Visit my Captivate blog with tips & tricks, tutorials and Widgets.

Similar Messages

  • Problem playing remote live stream from FMS

    Hello all,
    I'm having problems playing remote live streams from FMS (server-side) that I can play with any other player (client-side)
    Example of server-side application which plays a remote live stream:
    nc = new NetConnection();
    nc.connect("rtmp://remoteserver/live");
    stream = Stream.get("localStream");
    stream.play("remoteStream.flv", -1, -1, true, nc);
    This code works only sometimes.
    Most of the times, FMS is able to connect to remote string and the localStream dispatches events:
       NetStream.Publish.Strart
       NetStream.Play.Reset
    In this case, FMS is publishing the local stream but it is not playing the remoteStrem on it.
    The rest of the times, localStream dispatches events:
       NetStream.Publish.Strart
       NetStream.Play.Reset
       NetStream.Play.Start
       NetStream.Data.Start
    In this case FMS plays the remoteStream correctly.
    Any hint to solve this issue?
    Regards.

    Thanks, I tried your code and it works when playing a remote live stream on another FMS.
    But the remote live stream is not on a FMS but on a Wowza Server which re-streams an RTSP stream over RTMP.
    With this code:
    var nc;
    var myStream;
    application.onAppStart = function(){
         nc = new NetConnection();
         myStream = Stream.get("localstream");
         myStream.onStatus= function(info){
               trace(info.code);
         nc.onStatus = function(info){
               trace (info.code);
               if(info.code == "NetConnection.Connect.Success" ){
                    myStream.play("remoteLive.sdp", -1, -1, true, nc);
         nc.connect("rtmp://remoteServer/live");
    Every live stream player I tried was able to play the remote stream "remoteLive.sdp", but FMS play it only sometimes. This is the output log of the FMS application:
    NetConnection.Connect.Success
    NetStream.Publish.Start
    NetStream.Play.Reset        <--------------------------------- Stuck there, stream won't play
    Unloaded application instance wowza4/_definst_ <--- Reload app
    NetConnection.Connect.Success
    NetStream.Publish.Start
    NetStream.Play.Reset        <--------------------------------- Stuck there, stream won't play
    Unloaded application instance wowza4/_definst_ <--- Reload app
    NetConnection.Connect.Success
    NetStream.Publish.Start
    NetStream.Play.Reset
    NetStream.Play.Start         <--------------------------------- Stream is playing just fine
    NetStream.Data.Start
    Unloaded application instance wowza4/_definst_ <--- Reload app
    NetConnection.Connect.Success
    NetStream.Publish.Start
    NetStream.Play.Reset       <--------------------------------- Stuck there, stream won't play
    Any idea? Why FMS won't play it everytime?
    Regards

  • Streaming FLV from FMS to MediaDisplay

    Hello,
    Is it possible to stream an FLV from FMS to a MediaDisplay
    component for playback? I know this can be done with the Video
    Object and with the FLVPlayback component. I explored the
    MediaDisplay class and it looks like it has the capability but I
    cannot find documentation on how to implement it.
    Thank you.

    And one reason for writing your own is that many of the
    components are buggy, or "quirky" at best. For example, the
    FLVPlayback component had (may still have) a major bug where if you
    attempted to open a file that didn't exist (say it got deleted or
    you simply specified the wrong filename), then the component was
    essentially "dead". You could NOT request it to open a different
    file, even if you correctly specified the new file.
    I reported this to Macromedia and they acknowledged it was a
    bug. The only work around was to use the lower level "stream" and
    "connection" objects and write your own.
    The major problem with writing your own is that it requires
    LOTS of work. And while you do have complete control over
    everything, the underlying Macromedia API is very poor. If you are
    a purist engineer, you will cringe at the "hacks" you must do to
    make your own MediaPlayer "control". Fortunately, Macromedia makes
    the code to their player available to everyone (as part of the
    Flash 8 Pro install). And when you look at their code, you will see
    those hacks which will make you cringe as well...

  • Can I stream live video from mobile to fms using flashlite?

    Can I stream live video from mobile to fms using flashlite?
    I Know flash lite 4 also not access the mobile camera.  But, I need to develop a application it captures the mobile camera and stream the vedio to fms server and display the live event to other mobile users.
    Is it possible? 
    If possible what are the technologies i can use?
    Thanks for the help in adavance
    Prasad

    i have made a few test with Flash Lite 3.0 and Flash Media Server 3  and I have to say that it is pretty easy to stream FLV Video files and  Live Video from local web camera to mobile phone. Here are a quick  instructions how to do it in Windows (I will publish Linux version  later).
    Play FLV-video from Flash Media Server 3:
    Install Flash Media Server 3 (download developer version)
    There are a few sample FLV files in applications/vod/media folder, so you can use one of them for testing
    Create a new Flash Lite 3.0 file in Flash
    Add a new Video symbol to library
    Drag this Video symbol to Stage and give instance name to it: video
    Type following programming to timeline:
    // make a new video-object
    var video:Video;
    // make a new NetConnection-object
    var nc:NetConnection = new NetConnection();
    // check connection status from server
    nc.onStatus = function(info:Object):Void {
      status_txt.text=info.code;
      if (info.code == "NetConnection.Connect.Success") {
        startStreaming();
    // start streaming video to phone
    function startStreaming() {
      ns = new NetStream(nc);
      ns.setBufferTime(5);
      video.attachVideo(ns);
      // play sample.flv from server
      ns.play("sample",0);
    // show info to user
    status_txt.text = "Connecting server...";
    // connect FMS 3 video on demand service (default port 1935)
    nc.connect("rtmp://your.server.ip.here:1935/vod");
    Go to Publish Settings...
    Set Local playback security: Access network only
    Publish your SWF-file
    Send your SWF-file to your phone
    Test and you should see FLV-video playing in your phone
    Play live video from Flash Media Server 3:
    Install Flash Media Server 3 (download developer version)
    Install Flash Media Encoder 2 (Windows only)
    Start Flash Media Encoder 2
    You should see your live camera in Input screen
    Press Start-button to start sending live video to Flash Media Server 3
    Create a new Flash Lite 3.0 file in Flash
    Add Video symbol and programming as you did earlier
    Modify your programming:
    // in startStreaming()-function
    // Flash Media Encoder 2 publish stream name is "livestream"
    ns.play("livestream",-1,-1,true);
    // start connection to Flash Media Server 3
    // Flash Media Encoder 2 publishes Flash Media Server's default
    // live publishing point, so connect it
    nc.connect("rtmp://your.server.ip.here:1935/live");
    Publish, test and enjoy
    box office movies

  • HT4437 How do you stream live tv from an abc app from my iPad 4 retina to my tv using Apple TV?

    How do you stream live tv from an abc app from my iPad 4 retina to my tv using Apple TV?

    you use airplay mirror
    if that does not work then it's because the app block the feature
    how you turn on airplay mirror
    http://support.apple.com/kb/ht5209

  • I want to hook up a mac mini and us my tv as a monitor. how can I use airplay from my phone on the mac mini like i can with an apple tv (without having to buy an apple tv!). the airplay capabilities i want to use are mirroring and streaming from my iphone

    i want to hook up a mac mini and us my tv as a monitor. how can I use airplay from my phone on the mac mini like i can with an apple tv (without having to buy an apple tv!). the airplay capabilities i want to use are mirroring and streaming from my iphone!

    Download AirPlayer for Mac - Transforms your Mac into an AirPlay-compatible display. MacUpdate.com

  • Can I stream a movie from my Macbook to my Apple TV on one display, and still use my Macbook for other things?

    I have a Macbook Pro and an Apple TV. What I'd like to do is stream a movie from my CinemaNow Account to my television by using my Apple TV and my Macbook. I know that I can do this my using the mirroring feature, however then I can no longer use my Macbook for anything else because my TV will only display what is on the screen of my Macbook. Now with this is mind, what then is the point of having multiple displays through the use of my Apple TV, if only one display can be used at a time unless they both show the same image? Or is there a way for me to be able to stream the movie to my TV and still use my Macbook for other purposes (multi-tasking)? 

    To enable a second display over AirPlay, you first need to be connected to the same network as your Apple TV. Next, open System Preferences > Displays, and select your Apple TV from the “AirPlay Display” drop-down menu.
    Once you do this, your display may flash as the second display connection is acquired, and the Apple TV takes over as the second display. If the displays are mirrored, then you can correct this by opening the “Arrangement” tab in System Preferences > Displays, and ensuring that the “Mirror Displays” checkbox is unchecked.
    In this same “Arrangement” tab, you can move the displays around in the pane to ensure that they're positioned correctly, relative to your physical space (usually side-by-side, or top-down). The primary display here is denoted here by the Menu bar on the display. The arrangement helps with being able to drag windows from one display to the next: if your secondary display is arranged to be to the right of your primary one, for example, you can drag things to it through the right side of your primarcy screen.

  • I stream Internet radio from my iPad air to Bluetooth speaker.  Can anyone suggest the best EQ app to use to enhance the sound.  Thanks

    I stream Internet raidiot from iPad air to Bluetooth speakers.  Can anyone suggest the best EQ app to use to enhance the sound.
    THanks

    Yeah, I know I can restore it, but I might as well go ahead and try. I just finished a backup for icloud and itunes to make sure, I'll go ahead and restore it and set it up as new and see how that works. Seems like I have no other options at this point, I'd still like to know what they did with the Download tab in itunes store, if they removed it or if I'm just overlooking it.

  • Streaming a movie from Flixster & using Bluetooth speakers, my wi-fi connection keeps dropping

    When streaming a movie from Flixster and using Bluetooth speakers, my wi-fi connection keeps dropping, like every 2 seconds! Anyone have any suggestions on how to rectify this issue?  In fact, I don't even have to be streaming the movie. When I was in settings and went to connect to the speakers, I could see the wireless connection dropping, then restarting!

    5.0.0.1036 is fairly recent, but there is a later update to 5.0.0.1067
    See the link below for the download, and follow these simple installation instructions.
    Do a backup of your device first, using Desktop Manager > Backup. Close Desktop Manager upon completion.
    1. Download the OS file to the PC then install it to the PC by running (double clicking) the file you downloaded.
    https://www.blackberry.com/Downloads/entry.do?code=577BCC914F9E55D5E4E4F82F9F00E7D4
    2. Go to c:\program files\common files\research in motion\apploader and delete the file named "vendor.xml."
    3. Plug in BB and double click on "Loader.exe." It's located in the same place as the above vendor.xml file.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Just downloaded the 7.1 IOS update and I'm able to stream my music from the cloud. Does this use up data and how can I get it to stop pausing for periods of time?

    Just downloaded the 7.1.1 IOS update and I'm able to stream my music from the cloud. I'm wondering how I can stream more than just my purchased music?And does this use up data? Also, how can I get playback to stop pausing for periods of time? It is a wifi thing??

    If streaming music when connected to your carrier's cellular network, it uses cellular data.
    Only the music you purchased from the iTunes Store can be streamed unless you have purchased iTunes Match.
    If there is a slow down at the server where the music is stored or high traffic, steaming can be paused. You can also download a song from the iTunes Store cloud to your iPhone so it doesn't need to be steamed.

  • I stream video/audio from my iPhone to AppleTV and it works fine. I want to use headphones on the iPhone so I can stream the video and listen on the headphones, but Airplay will not allow me to select both AppleTV and headphones, I can only select one.

    I stream video/audio from my iPhone to AppleTV (like YouTube) and it works fine. I want to use headphones on the iPhone so I can stream the video to AppleTV and listen on the headphones, but Airplay will not allow me to select both AppleTV and headphones, I can only select one. How can I watch AppleTV and listen on the headphones?
    Thank you.

    have the same problem. Im using iPad 3 and Apple TV. id like to use the ipad as wireless earphones while i watch the video on the tv. is that even possible?

  • HT204291 Does anyone know why when streaming a movie from my iMac the screen on my tele goes grey but I still get audio. It only happens when using the DVD application on the mac. iPhoto streams fine.

    Does anyone know why when streaming a movie from my iMac the screen on my tele goes grey but I still get audio. It only happens when using the DVD application on the mac. iPhoto streams fine.

    You are prevented from Airplay mirroring certain things like DVD content as the material is usually protected so you get a checkerboard type display.  I think there is a theoretical risk that the Airplay stream could be intercepted and the protected video copied, albeitin lower quality.
    Apple may be being cautious or are required to do so with the DVD player app by movie studios/licensing authorities.  It makes no sense to the average consumer who is just trying to send their purchased DVD to the TV via the computer and AppleTV.
    Playback in something like VLC should work - not tried it myself but others have commented it doesn't have the restriction.

  • Streaming .FLV files from Media Server 4.5 using PHDS

    I would like to stream .FLV files from adobe media server 4.5.
    Requirements state that the files should be considered secret, so I decided that PHDS sounds like the
    right thing.
    I was able to stream an .FLV by placing it in the webroot/vod folder using an url like http://myserver/vod/test.flv
    However the developer manual states that a way to enable PHDS at the server level is to uncomment the two lines like this.
    <IfModule jithttp_module>
    <Location /hds-vod>
        HttpStreamingJITPEnabled true
        HttpStreamingContentPath "../webroot/vod"
        JitFmsDirPath ".."
        Options -Indexes FollowSymLinks
    # Uncomment the following directives to enable encryption
    # for this location.
       EncryptionScope server
       ProtectionScheme phds
    </Location>
    </IfModule>
    However I am not able to stream my FLV using url like http://myserver/hds-vod/test.flv
    Question : Am I supposed to use the hds-vod in the URL or is /vod doing the same ?
                      Is the approach correct, or should the files go into an applications\myapplication\media folder ?
                      I will need some server side actionscript to validate access to the stream, is that possible without a dedicated application ?

    Hi,
    When you use the vod location directive you're basically using Progressive download so your URL is as : http://myserver/vod/test.flv
    However, when you use the location directive hds-vod, it is HTTP Streaming, where the fragments are created on the fly. For this your URL needs to be as : http://myserver/hds-vod/test.f4v.f4m
    Please note .flv files are not supported for HTTP streaming (via hds-vod location directive). You cannot use PHDS with .flv files.
    Thanks,
    Apurva

  • HELP: Is it possible to record from multiple video streams using iMovie?

    Is it possible to record from multiple video streams using iMovie.
    I want to record a presenter on a greenscreen and also his powerpoint slides at the same time and cut from one to other.
    Can imovie record from screen and camera at same time?
    If so is there a link to somewhere explaining how to do so?
    If not, what is the most efficient way to do so, without having to learn a whole complex program?
    Please advise asap.
    Very many thanks

    Alan and Anthony,
    Thanks for the quick responses. Unfortunately, there is no backup :(.
    I will ask if they get logged into the global zone, but one thing I forgot to mention is that this zone (as are all our non-global zones and the global zone also) are configured for ldap logins.
    Assuming that they can even try to login to the global zone, can they even see the directory structure in the non-global zone (sorry, I haven't worked with Zones much thus far) from the global zone?
    Also, if they can see the non-global zones directory structure, what should they then try?
    Also, I've been searching and I've seen some suggestions of running a "pkgcheck -af" which might restore the directory permissions to what the various packages expect. Assuming that they can get to the point that they can at least log into the zone, is that something that would work?
    I'm setting up a new test Solaris box now, with a zone, to try to reproduce the problem. If I can reproduce the problem, I'll post back whether or not I see the same thing.
    In the meantime, if anyone has any suggestions, please post them.
    Thanks,
    Jim
    P.S. In case you're wondering, the box/zone that got messed up was a test/integration zone, and they were in the process of installing some software when this chmod happened.

  • HT201343 I am trying to stream a video from U-tube on to my TV using my apply T.V. The airplay icon appears on my i-tunes but not on u-tube. It does stream on to my T.V using i-tunes so I take it it does have airplay, but does not appear n display menu. H

    Airplay works on I-tunes but not on sites where you might want to stream, such as U-tube. It does not appear on my display menu settings, but as i-tunes as the icon I am thinking the computer must have the capability. Can anyone help, how to I turn airplay on so I can stream using my apple TV. I am sure as I-tune is working I have everything set up right.

    Mirroring requires OSX 10.8 or higher.
    Just use the YouTube app on the ATV.

Maybe you are looking for

  • Questions about PDF exporting with InDe CS5.5

    Hey all, A couple questions about exporting to PDF from the latest version of InDe. First, I have noticed that it seems to take a lot longer to get to a PDF. Any suggestions for how to speed up the process? It took 8 minutes or so to generate a low-r

  • Old crt monitor

    i just picked up an old apple crt monitor and hooked it up to my macbook so i could have more space for creating music. i was wondering if there is any way to have the toolbar on both screens. when i have garageband opened on the big screen the toolb

  • DBAT Child table Reconciliation issue

    I have the following environment IDM 11gR2 (11.1.2.1) Activedirectory-11.1.1.5.0, Database_App_Tables_9.1.0.5.0. Target Database Oracle 11gR2. I have created a DBAT connector for the Target Database that is having One Master Table and One Child table

  • Time Machine stops backup before finished

    Time Machine has stopped backing up automatically. On manual backups, it stops after backing up only part of my data. I have since reformatted my backup disk and reconfigured Time Machine, but it still does not complete the backup HELP!!!!

  • Unable to click on iphoto icon to access photos for uploading to photo web

    I am trying to upload some photos to a photo lab website. My iphoto icon is dim/gray and you can't click on it to open it. Any ideas???