Flash Media Server dynamic Livestreaming

I have FMS 3.5 installed, everything is running. I want to have a livestream from a camera that is dynamic and will change according to the bandwith of the viewer. What settings do I need to choose in Flash Media Encoder, FMS and in the Player to make this possible? If I start the encoder with 3 videostreams and a %i parameter I get 3 different streams, but I can only put one of these in a player and not all. What do I need to do?

In essence each client does a bandwidth test as it connects and the chooses the most suitable stream for that connection. This is described in the docs that came with the server...look here;
http://help.adobe.com/en_US/FlashMediaServer/3.5_Deving/WS5b3ccc516d4fbf351e63e3d11a0773d5 6e-7fea.html

Similar Messages

  • Creating folder on flash media server dynamically

    hello every one,
    can any one tell me how can i create a folder with user name
    and record the vdieo file on the desired location. i want to create
    a folder on the server with the user name and want ot record file
    into that particular folder
    thanks in advance.

    MediaPlayer.stop() will only stop playback of the stream, but not close the connection.
    If you set MediaPlayer.media to null, then it will close the connection.

  • A User Count in a Flash Media Server Application

    hello guys, first of all, sorry for my english...
    i am making a flash media server application and i want users to see that how many users are currently connected to this application...
    i have searched on google for 2 days and i couldnt find a good tutorial for AS3.
    i have looked at fmsguru and some other tutorial websites but those wasn't enough for me to succes...
    what i am trying to make is; a text area or dynamic text (i dont know which is most suitable for this purpose) which shows the numbers of connected user and i want it change immediately when a user connects or disconnects...
    i know there is an array as "application.clients" and i know i should use "application.clients.length" in "main.asc" file to find the number of connected users BUT i can't get this number to the text area or dynamic text in my "swf file".
    PLEASE help me by explaining a simple application which uses a "main.asc" file, an "action script" file and a "swf" file. and how to get the number of "application.clients.length", how to send (or call or get) it to the "action script" file, how to show this number in a text field or dynamic text...
    i will be very appreciated if someone explain in AS3 and make me success...
    thanks for reading...

    well here you don't even need the button just tell your textfield to update everytime the server calls after a connection or disconnection. Do you know how to write actionscript at all? Because you would be well advised not to attempt media server stuff unless you know how to do the basics. Maybe you could start out with some client only applications.
    import mx.controls.TextArea;
    import mx.controls.Button;
    import mx.utils.Delegate;
    class SimpleChat_call extends MovieClip {
    private var myTextArea:TextArea;
    private var myButton:Button;
    private var _nc:NetConnection;
    private var _chatSO:SharedObject;
    private function onLoad() {
    myButton.addEventListener("click", Delegate.create(this, onUserCount));
    public function connect( rtmpString:String) {
    _nc = new NetConnection();
    _nc.owner = this;
    _nc.onStatus = function ( info ) {
    if(info.code == "NetConnection.Connect.Success") {
    trace("connected successfully");
    this.owner.connectSO( this );
    _nc.receiveUsercount = function (count) {
    var myTextArea = this.owner.myTextArea;
    myTextArea.text = count;
    _nc.connect(rtmpString);
    private function connectSO( nc ) {
    _chatSO.connect( nc );
    you didn't even try what i suggested did you because it would have worked without changing the client

  • Media server dynamic buffer

    Hi,
    I am evaluating flash media server for usage of our camera
    application. Reason that I wanna use this is that mediaserver has
    ability for dynamic buffering.
    My question: is it possible to set up dynamic buffer if it
    not a pre recorded file. For example I am making a video of 60
    minutes and want to broadcast straight away - I save the file on
    mediaserver and mediaserver needs to broadcast staright away.
    People with a slow connection can start viewing the video after
    lets say 10 minutes, mediaserver calculates the connection. So when
    we finish recording they finish watching ten minutes later.
    Can anybody please help with this question and also if it is
    possible how to make the application?
    thanks Julie

    Have a look at the following article. It's was written for
    recorded streams, but I don't see any reason why you couldn't apply
    the same technique to a live stream.
    http://www.adobe.com/devnet/flashmediaserver/articles/fms_dual_buffering.html

  • Domain issues with Flash Media Server

    I have a webcam streaming to Flash Media Server via the Media
    Encoder. I have published the .swf file with the flash player and
    rtmp://99.999.999.999:1935/live/livestream address to my website on
    a hosted webserver.
    When I am on another internet source, the player on my
    webpage loads and works fine. However when I load the webpage in a
    browser on the same network that has the Media Server and Webcam on
    it, the browser freezes up.
    I need some help with a solution that will cause the rtmp://
    address to switch to a local host address. Any suggestions.

    quote:
    Originally posted by:
    JayCharles
    Yes.. you can.
    But my old version of Flash MX show me an error message when
    I try to open "CommunicationComponents.fla" which contain the
    components of Flash Media Server 2.0.1.
    My old version of Flash MX can't read this file and say
    something like "Unexpected file format".

  • Flash Media Server and Pocket PC

    Hello,
    i'm develope an application of videoconference with flash
    media server 2 and desktop pc. Now i would use pocket Pc. Can i
    doing this?
    Sorry for my english!
    Demos

    Hi,
    Thanks for your interest in FMS and Strobe Media Player. SMP is a out of box sample player that can play streams from FMS and no coding is required for its basic functionality.
    It can play RTMP and HTTP dynamic Streaming / HTTP progressive as well as multicast streams.
    Download the Strobe media playback from http://www.osmf.org/strobe_mediaplayback.html , host it on a webserver and launch in a broswer.
    launch either strobemediaplayback.html or setup.html to setup your own player with different settings.
    Thank you !

  • Flash media server and strobe media player

    Hi,
    any one is done by sample program with Strobe media player and Flash media server?if yes means please send me some tutorials or sample file with steps how to do.

    Hi,
    Thanks for your interest in FMS and Strobe Media Player. SMP is a out of box sample player that can play streams from FMS and no coding is required for its basic functionality.
    It can play RTMP and HTTP dynamic Streaming / HTTP progressive as well as multicast streams.
    Download the Strobe media playback from http://www.osmf.org/strobe_mediaplayback.html , host it on a webserver and launch in a broswer.
    launch either strobemediaplayback.html or setup.html to setup your own player with different settings.
    Thank you !

  • Flash Media Server Bandwidth Limitations

    Is there anyway to utilise the bandwidth of the flash media server from the server side in such a way so that the streaming will happen from the flash media server to the user based on the user internet connection speed. So users with low bandwidth will receive less streaming data in their buffer and users with high bandwidth will receive more streaming data into their buffer from the server.

    Perhaps i didnt get your qeustion properly. users at lower bandwidth are forced to receive less data per second compared to the users who are at higher bandwidth who will be receiving more data. Do you want to perform dynamic streaming, where in you setup same stream in multiple bitrate and then choose to stream to the clients based on their bandwidth conditions? Like low bandwidth user will receive lower bitrate stream and high bandwidth user will receive higher bit rate stream.
    Let me know if this is not what you are talking about.
    Regards,
    Janaki L

  • Why Flash Media Server

    Hi All,
    As it stands currently, I'm developing online teaching applications that faculty can use in their classes, as well as encoding and uploading videos to our Windows Servers.  For database management, I'm coding server side scripts in PHP, and dumping everything into MySQL.  Then embedding all the content into Moodle (which is hosted by a 3rd party).
    I'm looking at a Flash Server Solution for a couple of reasons:
    1) Delivering Streaming video instead of Progressive Download
    2) Allowing instructors to encode and upload their own videos (similar to YouTube) without having to go through my office
    3) Providing extra copyright security - in order to use some copyright videos, we have to ensure that only the students who are enrolled in specific classes can access the data.  As it stands now, a smart student with the right URL can download anything we have up on our Windows servers.
    Some Questions and concerns:
    1) I don't know Cold Fusion.  Will I have to rewrite all my scripts for that?  Can Flash Media Server run PHP?
    2) This is probably a really stupid one, but... Is Flash Server it's own platform, or does it have to run on a Windows or Linux box?
    3) Does it need its own dedicated machine?  Can you run a virtual server with Flash Server?
    4) Which of the different flavors of Flash Server are best?
    5) What kind of hardware specs are we looking at?  We have 20,000 students and maybe a few thousand at any one time would have to access
    Sorry about all the dumb questions.  I'm mostly an app developer, but am in the position of having to make this decision, and then defend the decision if I decide to puruse a Flash server solution.
    Thanks for your help.

    Hi riquigley,
    Following are quick answers on a few of your questions.  Hopefully other folks will add their thoughts and also answer the questions I have skipped over.
    4) Which of the different flavors of Flash Server are best?
    -- FOR STRAIGHT VIDEO STREAMING USE Flash Media Streaming Server.  THE PRICE POINT IS LOWER THAN Flash Media Interactive Server (aka FMIS. FMIS IS ONLY NEEDED FOR INTERACTIVE APPLICATIONS, E.G. MULTIUSER, CHAT, ETC.)
    -- COMPARE EDITIONS PAGE HERE:
    http://www.adobe.com/products/flashmediaserver/compare/
    2) ... does it have to run on a Windows or Linux box?
    -- YES.  FMS IS A SERVICE THAT RUNS ON AN OS.  WINDOWS AND RED HAT LINUX ARE SUPPORT. FULL REQUIREMENTS HERE:
    http://www.adobe.com/products/flashmediastreaming/systemreqs/
    3) Does it need its own dedicated machine?  Can you run a virtual server with Flash Server?
    -- DEDICATED MACHINE *NOT* REQUIRED.
    -- HOSTED SOLUTIONS ARE AVAILABLE TOO.  HOSTED SOLUTIONS MAY OFFER: A) BETTER QUALITY; B) LOWER TOTAL COST OF OWNERSHIP; C) QUICKER START TO LAUNCH.
    -- SEE LIST OF HOSTING PARTNERS, AKA CDNs (Content Delivery Networks) HERE:
    http://www.adobe.com/products/flashmediaserver/fvss/
    1) I don't know Cold Fusion.  Will I have to rewrite all my scripts for that?  Can Flash Media Server run PHP?
    -- COLDFUSION NOT REQUIRED.  EITHER PHP OR COLDFUSION CAN BE USED TO MANAGE METADATA (INCLUDING SQL DATABASE INTERACTION).
    -- PHP AND COLDFUSION HANDLE ALL HTTP REQUESTS AND RETURN DYNAMICALLY GENERATED PAGES TO THE USERS' BROWSERS.
    -- FLASH MEDIA SERVER HANDLES ALL RTMP REQUESTS.  DYNAMICALLY GENERATED PAGES FROM PHP WILL INCLUDE THE RTMP URLs THAT THE FLASH/FLEX SWFs USE IN THE BROWSER TO REQUEST THE RTMP STREAMS FROM THE FLASH MEDIA SERVERS.
    hth,
    g

  • Problem with NetConnection in Adobe AIR(Flex) using Flash Media Server.

    Hi
    I am creating a small chat application using Flash Media server. I have already created all my user interface components in Flex(Adobe AIR).In this application rather than sending text messages user can also  send  file to another user in his friend list.
    problem what i am facing is, when i am sending file through FMS most of time it send successfully but for some files while sending  application loss netconnection.
    so i would like to know, rather than closing application what are other condition when FMS loses network connection?
    Any help would be appreciated .
    Thanks.

    Hi. It looks like your code is not finding the mp3. At least,
    I can reproduce your error code by removing the mp3 from the
    directory, or renaming it.
    Btw, if you test with FF instead of IE, you'd see the error:
    Error #2044: Unhandled IOErrorEvent:. text=Error #2032:
    Stream Error.
    at KZFlash_fla::Sound_2/KZFlash_fla::frame1()
    Hope that helps.

  • How to get list of logged-in users from Flash Media Server in a Flash programm? (Or login/logout notifications)

    Hi there,
    I'm Very sorry for asking this. I guess it's a very basic problem, but I'm very new to Flash and Flash media Server and I need a very fast answer...
    Currently I'm working on a Director project using a flash program which connects to Flash Media Server (I guess version 3, it's quite old). Unfortunately they forgot to make a flash method to send the actual userlist (or a notification when someone logged in or out) to Director. AND, unfortunately, they lost the source code of that flash programm, so I cannot look into it or alter it *sigh*.
    Now I want to do a new flash programm which covers the old one, letting all known methods "pass trough" and building an additional method to gain the user list (or login/out notification).
    How do I get the login information from Flash Media Server? (Would be good if you could provide an idea already for flash code... as I said I'm a tard at flash till now)
    Thank you so much. And I hope you understand my situation asking here...
    Jana

    hparmar : yes, that's what I feared... I hoped it would be possible to tell the server from which application I do need the login information. What a mess.
    Dimo Hristov: thanks for your offer! I already tried decompiling the flash program with the shareware version of Trillix Decompiler. It only decompiled the UI (in a terrible way) but no source code at all. It was the shareware version where I can decompile 2 or 3 programms to test the software. Are you sure the non-free version of Trilix Flash Decompiler will do..?

  • Windows Vista and Flash Media Server Streaming Problems

    My company recently started using Flash Media Server to
    stream audio and video content.
    My boss just installed Windows Vista Ultimate and now no
    streaming content will play at all. Simple Flash animations work,
    but nothing that accesses the Flash Media Server for content. I've
    uninstalled and reinstalled multiple versions of the Flash Player
    on his machine but nothing seems to work. I also tried the new
    "Reset" feature in IE that is supposed to return it to it's
    shipping state and that didn't work. I navigated to the "System 32"
    folder and ran the Flash Updater EXE. I downloaded and installed
    all of the available updates through "Windows Update".
    I also tested Flash Objects that stream video on Adobe.com
    and they don't play either. Has anyone heard of this happening or
    know what I need to do to fix it? I don't know if this is a bug in
    the Flash Player or with Windows Vista.

    This appears to be the solution:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=44&catid=184&threadid =1243464&enterthread=y

  • Beginners guide to integrating Flash Media Server 2?

    I'm a newbit to Flasha dn flash media server and need some
    help with integrating the two products. We've just purchased Flash
    Media Server 2 to stream user created videos to a website. Idealy
    we would like to use the FlvPlayBack component placed on the stage
    to display the FLV file from the media server, but cannont get the
    component to access the FLV file.
    Media Server Configuration:
    On the Media Server we created an application (testapp) with
    an default instance (_definst_). The directory path for the
    Appliation looks like this W:\MediaApps\testapp\streams\_definst_\
    The name of the server is MediaServer
    The application and instance are appearing in the Media
    Server Admin manager.
    I've placed an FLV file (Movie.flv) In the _devinst_
    directory.
    Flash FLA file
    Placed FLVPlayback component on the stage
    Set contentpath= rtmp:\\MediaServer\testapp\_definst_\Movie
    Set islive=true
    When I test publish the file, the video does not display?
    Does anyone have any guidance on what I need to do? There
    seems to be a lack of documentation on integrating the media
    server. I looked a sample app called "SimplePB" that works, but
    does not use the FLVPlayback component.
    Any help would be appreciated.
    Thank you,
    John Wallwork

    John,
    For an FLV to stream from FMS, it must be placed in the
    streams/_definst_ directory...
    applications/myApplication/streams/_definst_/myFlv.flv
    Then you would type in the rtmp connection information in the
    contentPath of the FLVPlayback component like this
    rtmp://myRTMPConnectionInfo/myApplication/myFlv
    without the flv extension.
    The documentation comes from the FMS components when you
    install them.
    Here it is...
    To set up your FCS for streaming FLV files:
    Create a folder in your FCS application folder, and give it a
    name such as my_application.
    Copy the main.asc file into the my_application folder.
    Create a folder named streams in the my_application folder.
    Create a folder named _definst_ inside the streams folder.
    Place your FLV files in the _definst_ folder.
    To access your FLV files on the Flash Communication Server,
    use a URL such as rtmp://my_servername/my_application/stream.flv.
    For more information on administering the Flash Communication
    Server, including how to set up a live stream, see the FCS
    documentation at
    www.macromedia.com/support/documentation/en/flashcom/. When playing
    a live stream with FCS, you need to set the FLVPlayback property
    isLive to true. For more information, see FLVPlayback.isLive.
    Regards,
    Bill

  • Adobe Flash Media Server in Ubuntu

    I have installed Adobe Flash Media Server in Ubuntu.
    When I run the command
    sudo ./fmsmgr server start
    it says that Server: start command:
    Server service start not found. Exiting
    When I start adminserver in the same way,
    the message displayed is :
    Starting Adobe Flash Media Admin Server (please check /var/log/messages)
    In the messages, the following is displayed :
    Server starting...
    Listener started ( FCSAdminIpcProtocol ) : localhost:11110/v4
    Listener started ( FCSAdminAdaptor ) : 1111/v4
    Server started (./conf/Server.xml).
    Let me know if I am facing any issue because of the OS not being supported.

    If you navigate to path where FMS is installed say /opt/adobe/fms and then run ./server restart  , do you get same error?

  • Flash Media Server 3 / FlashPioneer Video Chat

    Just recently, I purchased and installed
    'FlashPioneerVideoChat'...
    I decided to use Flash Media Server 3 (developer addition)
    for the local server. The problem is you can't login to the FMS
    Server from the client end although all other communication aspects
    work fine. When a connection is made the login starts but doesn't
    open the application, it just keeps running. The Client side has
    been debugged and tested so that points to the Flash Server and
    whatever settings have to be made and/or code added to what file?
    Could someone please point me in the right direction, Thank
    you much ...
    [email protected]

    Hi, but doesn't the linux version work on a mac?
    I'm a bit confused here.
    I currently shoot video on a Canon mini dv camera and edit in Apple imovie.
    Convert to Apple Quicktime and then import into Flash 8 video encoder.
    I ftp the clips upto a flash server, from my mac and upload the playlist to my website host
    using Flash 8.
    Don't tell me i've now got to get one of those dreadful PC thingies to complete the loop,
    surely Adobe didn't invent this wonderful piece of software so it could run from a PC?
    Or did they?
    Andrew C-B.

Maybe you are looking for

  • Duplicate messages in Inbox

    In Macbook Pro, in Mail, I receive a duplicate message in the Inbox. Under the inbox file is another file labeled with my e-mail address. I only receive the one message in it. How do I stop getting duplicate messages in My Inbox?

  • Importing word documents -  data fields

    Hi.. When trying to import a word document with bookmarks and datafields the bookmarks came correctly but the data fields did not. the data fields were created in the word document using an executable file where the fileds in the excel sheet were pic

  • Stomp: client acknowledge error message

    Using OpenMQ 4.4 b04, I try to use client acknowledge. I have found that the broker expects not only the message Id but also the subscription id. If I use the subscription id which is in the message header and add it to the ACK Stomp frame, the broke

  • Is it possible to download Adobe flash on a Samsung Galaxy s4 mini

    I have tried on multiple occasions on how to download Adobe flash player on my device following this devices steps but can't seem to get it to work

  • Trouble with re-installing CS5.5

    I am trying to re-install AAdobe CS 5.5 on a new laptop.  I have the installation files and the original license key.  But when I try to install, it says invalid license.