Please somebody help  Flash Media Server 4

I've installed Flash Media Server 4 (I tried on i686 and x86 with CentOS)
also have uploaded applications to /opt/adove/fms/applications/test
here what I see in log files:
Connection rejected by server. Reason : [ Server.Reject ] : (_defaultRoot_, _defaultVHost_) : Application (test/_definst_) is not a valid signed application; loading access denied.
please somebody help

Are you sure that you are using adminconsole from location which mamata specified and not using some old adminconsole from you previous installation or something. I suspect you might be using older adminconsole.swf
You can also get same information using getLicenseInfo Admin command.
Please change your Users.xml to all getLicenseInfo or All. Open Users.xml under conf directory and you should find below text:
<AdminServer>
<HTTPCommands>
<!-- Enable or disable using HTTP requests to execute admin commands.     -->
<!-- Set to "true" to enable, otherwise it will be disabled.  The           -->
<!-- actual commands permitted for server admin and virtual host admin    -->
<!-- users can be set in the Allow and Deny elements.                                       -->
<Enable>${USERS.HTTPCOMMAND_ALLOW}</Enable>
<!-- List of server admin commands that can be accessed via HTTP.         -->
<!-- Add multiple commands separated by commas.  "All" indicates          -->
<!-- every command (it's not recommended to allow all commands).          -->
<!-- Seperate multiple commands with commas.                              -->
<Allow>ping</Allow>
<!-- List of server admin commands denied access via HTTP.                -->
<!-- Add multiple commands seperated by commas.  "All" indicates          -->
<!-- every command.                                                       -->
<Deny>All</Deny>
<!-- Processing order for deny and allow command lists.  "Deny,Allow"     -->
<!-- means the command will be allowed if the command is in the allow     -->
<!-- list or not in the deny list.   "Allow,Deny" means the command       -->
<!-- will be allowed if it is in the allow list and not in the            -->
<!-- deny list.                                                           -->
<Order>Deny,Allow</Order>
</HTTPCommands>
</AdminServer>
</Root>
Now change above content to below content:
<AdminServer>
<HTTPCommands>
<!-- Enable or disable using HTTP requests to execute admin commands.     -->
<!-- Set to "true" to enable, otherwise it will be disabled.  The           -->
<!-- actual commands permitted for server admin and virtual host admin    -->
<!-- users can be set in the Allow and Deny elements.                                       -->
<Enable>${USERS.HTTPCOMMAND_ALLOW}</Enable>
<!-- List of server admin commands that can be accessed via HTTP.         -->
<!-- Add multiple commands separated by commas.  "All" indicates          -->
<!-- every command (it's not recommended to allow all commands).          -->
<!-- Seperate multiple commands with commas.                              -->
<Allow>All</Allow>
<!-- List of server admin commands denied access via HTTP.                -->
<!-- Add multiple commands seperated by commas.  "All" indicates          -->
<!-- every command.                                                       -->
<Deny></Deny>
<!-- Processing order for deny and allow command lists.  "Deny,Allow"     -->
<!-- means the command will be allowed if the command is in the allow     -->
<!-- list or not in the deny list.   "Allow,Deny" means the command       -->
<!-- will be allowed if it is in the allow list and not in the            -->
<!-- deny list.                                                           -->
<Order>Deny,Allow</Order>
</HTTPCommands>
</AdminServer>
</Root>
Once you made the change , restart FMS and FMS Admin Server.
Once both services are restarted, open a browser and put following text in address bar and hit enter (replace necessary stuff like server-ip,AdminUserId and AdminUserPassword to your FMS ip, FMS Admin User and FMS Admin Password respectively)
http://<serverip>:1111/admin/getLicenseInfo?auser=<AdminUserId>&apswd=<AdminUserPassword>
Result displayed should have which edition you are using.

Similar Messages

  • Need help with Flash media server

    I am using XAMPP. Now i want to intall Flash media server. How can i configure my apache server to work with flash media server? I dont want to install the apache server coming along with flash media

    Hi,
    What excactly is the usecase you are trying here? Are using your external Apache to proxy your http traffic from FMS to it or do you want to use http streaming feature of FMS?
    If you want to proxy it then use the following document : http://help.adobe.com/en_US/FlashMediaServer/3.5_AdminGuide/WSE2A5A7B9-E118-496f-92F9-E295 038DB7DB.html
    Refer Configure HTTP proxying topic in the document.

  • Can Flash media server help

    Hello,
    We are investing on developing a solution to deliver live
    streaming of webradio webTv content. I have come to hear about
    Flash Media Server, reading on the adobe site didn't provide a way
    for us to see how it could help in achieving this. Can anyone
    explain brieftly how media server works, why would one choose it
    instead of for example the xml-socket built in flash 8?
    Thank you

    Hello! I have the same problem! I can see the stream displayed on my site, but other people can`t see my stream! I introduced in webroot (FMS) file crossdomain.xml  but nothing ! Many people have this problem !FMS is a joke !

  • Help configuring Flash Media Server

    Hi All
    Can anybody help in configuring FMS2 on a local machine so
    that I can test some sample applications.
    My main aim is to abe able to stream live video and audio
    using FMS 2.0 .
    I am completely new to flash and FMS so any help will be
    highly appreciated.
    Regards
    -Raj

    if use the default setting
    you may create a folder under the
    { $ media server root }/applications/....
    for example:
    the folder named "test",
    maybe like this:
    "C:\Program Files\Macromedia\Flash Media Server
    2\applications\test\"
    then
    in the FLA:
    you may connect like this
    myConn = new NetConnection();
    myConn.connect("rtmp:/test");
    or
    myConn = new NetConnection();
    myConn.connect("rtmp://localhost/test");

  • 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

  • Is it possible to use smartseek functionalities without FMS(flash media server)??

    Hi,
        Is it possible to use smart seek functionalities to play files local files without using flash media server(FMS).
        I am currently using videoDisplay components but can switch to netStream component if it is possible without FMS.
        As I have to seek frame by frame but the current seek() function doesnot provide that functionality.
        Any kind of suggestion is most welcome.
        Thanks in Advance.

    I'd like to revive this topic as I just purchased an ATV. I do like it but I am becoming very familiar with the limitations of the ATV.
    I used to have a Snyology NAS server but it did not serve/stream the iTunes well enough to my stereo. I have a lot of photos of my children as well as movies and wanted to see more of them so I purchased the ATV as I knew the Syno server/NAS would be bricking soon.
    Once the ATV is loaded it is fine for that content. But if there is other content on other computers well, they have to stream and the content on the ATV is not accessible to anything other than the stereo or TV that the ATV is connected to. So, finally, here is my question:
    Which NAS streams VERY WELL with the ATV? Correct me if I am wrong but the NAS has to have iTunes imbedded within the server; yes? Secondly, is the best solution for serving an ATV as well as having all media content accessible to all LAN computers a Mac Mini?
    So which is it? Please recommend an NAS that can serve iTunes media (music, photos, video) to an Apple TV or is the best solution a Mac Mini which acts like a NAS and streams all media content to the Apple TV and ATV will stream it to HDTV through HDMI , etc.
    The ATV is great with the High Def.., wide screen, Dolby 5.1, HDMI port , etc. Just need a way to have the media accessible to everyone on the LAN as well as serve/stream to an already purchased Apple TV.
    Thanks for the help,
    Cc

  • Streaming from Flash Media Server into Captivate

    Hi
    We're fortunate to have a Flash Media Server (4) which we use to distribute video over our local network using Flash CS5 and have encountered no problems. However, when I try to use it for Captivate 5 files I've had no success (same with 4 incidentally). I've tried just about every string I can think of with no ext., with the ext, f4v's, flv's, /mp4:, different folders/ no folders (vod) etc etc. There must be something fundamentally wrong with what I'm doing but for the life of me I can't think what. The Media server currently delivers video over our Intranet and we also use it for Adobe Connect. Any help in this matter will be appreciated.
    My string is rtmp://breezefms2/vod/<nameofvideo> (no ext.)

    Hi Crozzer,
    We have published a blog post detailing the formats to be used for streaming video.
    I would suggest you to have a look at the blog post : http://blogs.adobe.com/captivate/2011/03/workaround-for-video-streaming-issues-in-captivat e.html and try out the streaming formats mentioned.
    Please incorporate the URI changes mentioned in the blog post and let us know if streaming video works for you.
    Thanks
    Ashwin Bharghav B
    Adobe Captivate Team

  • Streaming flash media server to the world and not just your local network

    hello, i have downloaded and installed flashe media server.....but i have som problems which are: i am on a network which is connected to the internet and i was able to get the ip of my pc using the comand prompt (i.e typing ...ipconfig/all....in the comand prompt window) ...i used this ip in my flash media encoder in place of "localhost" in the fms url, and i was able 2 connect fine ,i the copied my fms url to the osmf player and i generated my html code and put it in my webpage and everything did work fine, but the proble is that only the people who are on thesame network with me were able to view the video on the webpage wereas people in other countries could not view the video....... so please how can i be able to make my video acessable to the whole world ,because i work in a television company and they have asked me to undertake the task to stream thier broadcast online to the whole world........please i would like u to put me through the right things to do because have been having sleepless night on flash media server.....would be expecting a reply from anyone who can help me as quick as possible. thanks

    Hey Kristich,
    Is the server that you have created behind some NAT, etc?
    If you are using an IP of the form 10.x.x.x or 172.x.x.x or 192.168.x.x then these are private IPv4 address spaces and not public IPs(which is unique), and you wont be able access them from outside.

  • FMLE not connecting to Flash Media Server

    I have two laptops with windows 7 and FMLE 3.2 and FMS 4.5 in them. Laptop A is working perfectly with the default settings but i cannot connect to FMS with laptop B. I have tried turning windows firewall off, setting fmscore, fmscore and fmsmaster to run under administrator privileges.
    The FMS starts correctly on laptop B (i compared the log-files on laptop a and b) and here is edge.00.log from laptop B (i censored my ip and host):
    #Date: 2012-08-09
    #Fields: date          time          x-pid          x-status          x-ctx          x-comment
    2012-08-09          12:37:37          3432          (i)2581173          FMS detected IPv6 protocol stack!          -
    2012-08-09          12:37:37          3432          (i)2581173          FMS config <NetworkingIPv6 enable=false>          -
    2012-08-09          12:37:37          3432          (i)2581173          FMS running in IPv4 protocol stack mode!          -
    2012-08-09          12:37:37          3432          (i)2581173          Host: myhost IPv4: myip      -
    2012-08-09          12:37:37          3432          (i)2631174          Listener started ( _defaultRoot__edge1 ) : localhost:19350/v4          -
    2012-08-09          12:37:38          3432          (i)2631174          Listener started ( _defaultRoot__edge1 ) : 1935/v4          -
    2012-08-09          12:37:38          3432          (i)2631174          Listener started ( _defaultRoot__edge1 ) : 80/v4          -
    2012-08-09          12:37:39          3432          (i)2631174          Listener started ( _defaultRoot__edge1 ) : myip:19350 (rtmfp-core)/v4          -
    2012-08-09          12:37:39          3432          (i)2631174          Listener started ( _defaultRoot__edge1 ) : 127.0.0.1:19350 (rtmfp-core)/v4          -
    2012-08-09          12:37:39          3432          (i)2631509          Public rtmfp-core addresses for listener _defaultRoot__edge1 are: myip:19350          -
    2012-08-09          12:37:39          3432          (i)2631174          Listener started ( _defaultRoot__edge1 ) : myip:1935 (rtmfp)/v4          -
    2012-08-09          12:37:39          3432          (i)2631174          Listener started ( _defaultRoot__edge1 ) : 127.0.0.1:1935 (rtmfp)/v4          -
    2012-08-09          12:37:39          3432          (i)2631174          Listener started ( _defaultRoot__edge1 ) : myip:80 (rtmfp)/v4          -
    2012-08-09          12:37:39          3432          (i)2631174          Listener started ( _defaultRoot__edge1 ) : 127.0.0.1:80 (rtmfp)/v4          -
    When i hit Connect button in FMLE i get the "Cannot connect to primary server" - error. When i change the FMS-Url to the ip-address of my laptop A i can connect to its FMS. The default FMS Url is rtmp://localhost/live and  Stream: "mystream@38220" (this is working in laptop A).
    I downloaded TCPView and compared whats happening with the laptops when i hit the Connect button. On laptop B FMLE sends bytes to FMSEdge and it responds with 1 byte and then nothing happens. On laptop A same thing happens but it opens up FMSCore and the stream starts going live.
    Apparently the FMS had worked on laptop B before but then it stopped working due to reasons unknown. I tried reinstalling it with no results and now im clueless. I also tried the fmscheck and it said it cannot connect to FMS. It seems the FMSEdge is not behaving correctly or something is blocking the traffic between the programs. Please help.

    Access log looks like this:
    #Date: 2012-08-09
    #Fields: x-event          x-category          date          time          tz          x-ctx          s-ip          x-pid          x-cpu-load          x-mem-load          x-adaptor          x-vhost          x-app          x-appinst          x-duration          x-status          c-ip          c-proto          c-proto-ver          s-uri          cs-uri-stem          cs-uri-query          c-referrer          c-user-agent          c-client-id          cs-bytes          sc-bytes          c-connect-type          x-sname          x-sname-query          x-suri-query          x-suri-stem          x-suri          x-file-name          x-file-ext          x-file-size          x-file-length          x-spos          c-spos          cs-stream-bytes          sc-stream-bytes          x-service-name          x-sc-qos-bytes          x-comment          x-eid          x-sid          x-trans-sname          x-trans-sname-query          x-trans-file-ext          x-trans-mode          x-soffset          x-codec-type          x-codec          x-plugin          x-page-url          x-smax-rec-size          x-smax-rec-duration          x-forwarded-for
    server-start          server          2012-08-09          12:35:42          FLE Daylight Time          -          192.194.211.110          7492          0          48          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -          -
    Then there is the master log:
    #Date: 2012-08-14
    #Fields: date          time          x-pid          x-status          x-ctx          x-comment
    2012-08-14          13:30:12          3216          (i)2581173          FMS detected IPv6 protocol stack!          -
    2012-08-14          13:30:12          3216          (i)2581173          FMS config <NetworkingIPv6 enable=false>          -
    2012-08-14          13:30:12          3216          (i)2581173          FMS running in IPv4 protocol stack mode!          -
    2012-08-14          13:30:12          3216          (i)2581173          Host: Tatu-PC IPv4: 192.194.211.110          -
    2012-08-14          13:30:12          3216          (i)2571011          Server starting...          -
    2012-08-14          13:30:12          3216          (i)2581224          Edge (2992) started, arguments : -edgeports ":1935,80" -coreports "localhost:19350" -conf "C:\Program Files\Adobe\Flash Media Server 4.5\conf\server.xml" -adaptor "_defaultRoot_" -name "_defaultRoot__edge1" -edgename "edge1".          -
    2012-08-14          13:30:12          3216          (i)2571111          Server started (C:\Program Files\Adobe\Flash Media Server 4.5\conf\server.xml).          -
    And the core log
    #Version: 1.0
    #Start-Date: 2012-08-09 09:35:26
    #Software: Adobe Flash Media Server 4.5.0 r297 x86
    #Date: 2012-08-09
    #Fields: date          time          x-pid          x-status          x-ctx          x-comment
    2012-08-09          09:35:26          5380          (e)2571122          Server aborted.          -
    #Date: 2012-08-09
    #Fields: date          time          x-pid          x-status          x-ctx          x-comment
    2012-08-09          11:51:27          1340          (e)2571122          Server aborted.          -
    #Date: 2012-08-09
    #Fields: date          time          x-pid          x-status          x-ctx          x-comment
    2012-08-09          11:51:36          7848          (e)2571122          Server aborted.          -
    #Date: 2012-08-09
    #Fields: date          time          x-pid          x-status          x-ctx          x-comment
    2012-08-09          12:35:43          7492          (e)2571122          Server aborted.          -
    I tried connecting to localhost:1935 with telnet and typing something and then watching what happens in TCPView. It says that the fmsedge process listening to port 1935 establishes the connection and receives the bytes, though it closes it after few seconds probably because it doesnt understand what data i sent. And when FMLE sends 1537 bytes to fmsedge it receives them but nothing happens.

  • Flash Media Server Components

    Hello
    I don't see Flash Media Server Components from the Component
    Panel pop up menu.
    Is it normal ?
    I use Flash MX with Flash Media Server 2.0.1
    Can you help me please.
    Thanks.

    The Flash Media Components are located at:
    http://www.macromedia.com/devnet/flashmediaserver/articles/components.html
    Be sure to read the readme for installation.
    You will see trace statements and other important FMS
    development data in
    the Management Console when you view a running Application.
    Lon Hosford
    www.lonhosford.com
    May many happy bits flow your way!
    "avanthika" <[email protected]> wrote in
    message
    news:e2pmj6$pt8$[email protected]..
    Hi
    I too don't see flash media server components , media server
    i am using is
    installed on server, i am using Flash Mx 2004 professional,
    How to get
    access
    to media server components.
    i have one more problem, if i am using any trace in main.asc
    file it is not
    displaying, what i have to do, to trace the server side
    values.
    Thanks in advance
    regards
    Avanthika

  • Flash Media Server 2 - Trace

    I have ...
    * Flash MX Professional 2004 7.2
    * Flash Media Server 2
    * Flash Remoting Components
    The problem I am having is I cannot get trace messages on
    server side scripts to display anywhere. I have looked at View
    Applications > {APP} > Live Log, but nothing is there. I have
    #include "NetDebug.as" in my code, but while giving no errors, it
    appears not to do anything. I really have no idea what is going on,
    as I have previously managed to get trace messages displayed
    successfully.
    Please help and my thanks!

    About the security warning... you get that with all .swf's
    run locally. To get rid of it, follow the link to add the location
    in the security manager. The link will take you to a page on the
    adobe site. Just add the path to the .swf, and you won't get that
    warning anymore.
    About connecting from a local .swf... it will work just fine.
    It's the flash client that makes the connection, so it doesn't
    matter where it's served or run from.
    In your main.asc, the code looks good but you don't need to
    load the component libraries unless you're using components
    (Communication components, not UI components). Loading them doesn't
    harm the operation of the application, it just uses memory where
    you not might need to.
    In your client side AS, try changing the rtmp string to match
    the following:
    myNetConnection.connect("rtmp://129.186.168.116/LawnChairLarry");
    Note the addition of a second slash after the rtmp, and the
    absence of the _definst_ instance name. If you want to use the
    default instance, you don't need to identify it.
    Next, you'll want to make sure the path to your video file
    looks like this:
    FMS Install
    Dir/applications/LawnChairLarry/streams/_definst_/LawnChairLarry.flv

  • Flash media server on IIS7 Server 2008

    Hey, everyone. I have a problem. I have read some threads how to setup flash media server on IIS and I tried to follow these threads. The problem is I can't connect to flash server. I suspected that I may forget to config something on IIS manager.
    Could you help me please?

    Hey, everyone I can connect to FMS now. But I suspect why I connect to first page(black and red) not login page.

  • Streaming with Flash Media Server

    Hello all,
    I'm new user in Flash Media Server. I installed it in a Red
    Hat Enerprise 4 but i am not able in create no steaming file. I'm
    be simple. What have i to do in order to create a simple atream
    flash video? I don`t have any idea on where i havve to put the
    video, where i have to put the swf file, how i create a fls who
    communicate with my server...
    Please help me,
    Thanks for all,
    Mauricio Barreto

    Hello Mauricio -
    There is probably several ways to do this, but being sort of
    new with FMS2 too, I'll give you the way that I'm currently using
    it. Both my Web server and FMS2 are on the same computer.
    You FMS2 installation created a /fms/ directory.
    for FLV files - /fms/applications/ and then I've created sub
    directories under here for each FLV file. So, for example, the full
    directory path for one of my FLV files
    /fms/applications/lemurs/streams/_definst_/lemurs.flv
    The "main.asc" file needs to go here too -
    /fms/applications/lemurs/main.asc (for the example above).
    for SWF files - put these on your Web server side.
    When you make your SWF files you will reference your FLV
    'source' (in 'parameters tab' in Flash) as
    "rtmp:/lemurs/lemurs.flv" - again, if your Web server and FMS2 is
    on the same computer. You can also do
    "rtmp://UR.IP.AD.RES/lemurs/lemurs.flv" - for example,
    "rtmp:/192.168.1.1/lemurs/lemurs.flv"
    I hope this helps some.
    Donavan

  • JMF or flash media server? Why JMF

    Hi all,
    I was studing about jmf since 2 months in order to make a live video and audio broadcast. But recently I found out about flash media server.
    It seems that is verygood for those kind of web applications.
    I am so confused about which one I shoud use. I have no idea about FMS.
    There are some I want to learn.
    Whe we develop an JMF application how all clients of this web site use JMF? For developing purposes I setup JMF.
    Do all the clients have to install JMF in order to use my site or others which done using JMF?
    After all, probably everyone has a flash installed and no problem if a site developed by flash.
    Can you enlight me please?
    and I have no Idea about NAT, PROXY for developing RTP live video web application.

    regerybets wrote:
    ..Whe we develop an JMF application how all clients of this web site use JMF? .. The first thing you need to understand is that JMF is effectively an abandoned API. It works fine for some older formats of media, but does not support the later (more compressive) formats.
    I am guessing by 'in web site' you mean you want the media embedded in a web page (and by the way - yuck!). That means using applets.
    1) Embedded applets cannot use natives unless the end user has either
    a) Also installed JMF, which is usually impractical for the purposes of just 'showing some media in a web page', or
    b) The applet is using a plugin-2 JRE and hooks into the JNLP API to install the natives.
    2) If the cross-platform version of JMF is used, you just need to add the JMF Jars to the archive attribute of the applet element. The x-plat version of JMF supports (even) less formats than the one using natives, but at least it should also work on the Mac.
    ..For developing purposes I setup JMF.
    Do all the clients have to install JMF in order to use my site or others which done using JMF?Yes. In one form or another, as detailed above.
    After all, probably everyone has a flash installed and no problem if a site developed by flash.That is a rash assumption for either Flash or Java. I did not have Flash installed for a long time since I could not spare the bandwidth to be watching media in web pages. I only installed it recently when a friend convinced me to upload some of [my time-lapse animations|http://www.youtube.com/user/DrewTubeish] (3) to YouTube.
    There are other reasons people either do not have, cannot install, or refuse to install, either plug-in. The best you can do for them, is to give them accurate and easy to understand information on why the page failed. Both Flash and Java have ways to do that - usually with the help of JacvaScript.
    3) Shameless plug. ;)

  • Record playback is very slow between Flash Media Server and Flash

    hi all
    I have done server side recording successfully with red5 flash media server and can see
    that the flv record is being created properly.
    Then if I try to playback the record like
    NetStream.play("record.flv"), I see that stream playing is very very
    slow, for both of audio and video.
    And then if I try to playback the recorded file via using the
    filesystem path of it, everthing seems fine.
    Problem occurs when I try to sucscribe and play the stream of the record.
    PS : There is no problem with playing the published stream
    (NetStream.play("streamName"))
    Does anyone have an idea about this issue?
    If you need any additional information, please let me know.
    Thanks in advance
    Regards

    In a nutshell flowplayer delivers the video through your web
    browser. It does this via http protocol (port 80) and progressive
    download on any web server
    Progressive download finds the video on the server and plays
    it back through the player as it is being downloaded. 2 important
    things to take from this are 1, the video is being downloaded to
    the clients hard drive, at the end of the playback they will have a
    copy of your video that they can do whatever they like to and
    repost it somewhere else. 2, It plays back as it downloads, meaning
    if I'm viewing a 10 minute video from your site and want to skip
    ahead to the middle or end I have to wait for the whole video to
    download before viewing those segments. Your web host by the way
    will love you for progressive download because it will appear as
    though your transfer rate has gone through the roof. Once the
    request for the video is made there is no turning back, the client
    gets the whole thing whether they watch it or not.
    Flash media server uses the rtmp protocol. This protocol is
    an open socket protocol through port 1935. This is a two way street
    essentially. When the user views a video using FMS they basically
    get only enough of the video to keep the connection open and
    satisfy the required buffer to assure clean playback. The bytes of
    info that carry the video only go to the users memory, not the hard
    drive. This allows the user to jump back and forth around in the
    movie without having to wait for the whole thing to download.
    Hope that helps.

Maybe you are looking for

  • MBP and 23" ACD Issues

    If I start Bootcamp with my MBP screen shut I get all sorts of black screens before Windows Xp sp3 starts completely. Sometimes it never comes up. Also with screen shut Xp will not shut down but hangs on the Windows is shutting down screen. With the

  • Lumia 520 Nokia Music Download Error

    Hello to all, I have lumia520, I have an existing account registered with Nokia Music I have terminated that account and created a new account, but now when I try to download song using Nokia Music I am getting an Activation Issue This Phone is alrea

  • How to change dragged value

    Hi. How can I modify value of dragged String. I want add '/*' before string and '*/' after string. Any ideas?

  • Few questions regarding Oracle Scorecard and strategy management.

    Hi, I have following questions regarding Oracle Scorecard and strategy management: 1. What are the ways in which i can show status of a KPI, like we have colors and symbols, what are others? 2. can we keep log of KPIs, store them, keep report of feed

  • How to hook up new MacPro and old G5 w/o bluetooth to Airport?

    I will bet someone here can help me. I'm brand-new to wireless. I was told I can connect my new MacPro laptop to communicate with the Hughesnet modem and ALSO cable my trusty workhorse G5 tower (no bluetooth) to the modem at the same time. I only see