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.

Similar Messages

  • Hello help with Flash Media Server to Endavo Media Management.

    Flash Media Encoder 3.1 and I'm trying to connect to: rtmp://fli001.ph1.hwcdn.net/g2q6m9d2/_definst_ and I'm not sure if I'm doing it right.
    Below is my encoder log:
    Tue Aug 24 2010 13:16:24 : Primary - Connected to FMS/3,5,4,1004
    Tue Aug 24 2010 13:16:24 : Primary - Network Command: onBWDone
    Tue Aug 24 2010 13:18:21 : Primary - Network Status: NetConnection.Connect.Closed status
    Tue Aug 24 2010 13:18:21 : Primary - Disconnected
    Tue Aug 24 2010 13:22:47 : Primary - Connected to FMS/3,5,4,1004
    Tue Aug 24 2010 13:22:47 : Primary - Network Command: onBWDone
    Tue Aug 24 2010 13:24:10 : Primary - Network Status: NetConnection.Connect.Closed status
    Tue Aug 24 2010 13:24:10 : Primary - Disconnected
    Tue Aug 24 2010 13:27:46 : Primary - Connected to FMS/3,5,4,1004
    Tue Aug 24 2010 13:27:51 : Backup - Connection failed
    Tue Aug 24 2010 13:27:51 : Failure to connect to backup server. Please verify that your Server URL and application name are valid and that your Internet connection is working and retry.
    Tue Aug 24 2010 13:27:57 : Primary - Network Status: NetConnection.Connect.Closed status
    Tue Aug 24 2010 13:27:57 : Primary - Disconnected
    Tue Aug 24 2010 13:30:33 : Primary - Connected to FMS/3,5,4,1004
    Tue Aug 24 2010 13:32:45 : Primary - Stream[livestream] Status: Success
    Tue Aug 24 2010 13:32:45 : Primary - Stream[livestream] Status: NetStream.Failed
    Tue Aug 24 2010 13:32:45 : Primary - Stream[livestream] Status: NetStream.InvalidArg
    Tue Aug 24 2010 13:32:45 : Primary - Stream[livestream] Status: NetStream.InvalidArg

    I think at FMLE end it looks ok, i mean url the way you entered seem to be fine. I think if you have FMS access it would be good to see FMS logs and see what you see there. Also do you have access to server-side applications - you might want to see what code is there in application "g2q6m9d2"

  • Need help with Flash CS4 buttons/can't get buttons to control anything

    Hello,
    I need help with Flash CS4. I am making a banner with an animation (Image change into movie clip "3D Spiral") and added buttons but I cannot get the buttons to control the animation. Please help I am frustrated! If someone could help I would be most appreciated.

    Thank you.
    Regards,
    Michael J. Sheehan  allelois
    Date: Mon, 17 Aug 2009 18:48:09 -0600
    From: [email protected]
    To: [email protected]
    Subject: Need help with Flash CS4 buttons/can't get buttons to control anything
    Hi there
    I'm not sure how you wound up where you did. But you wound up in the Adobe Captivate forums. Please stand by as I move your thread to the Flash forums.
    Cheers... Rick
    >

  • Flash MX with Flash Media Server 2.0.1

    Hello
    I would like to know if I can use Flash MX with Flash Media
    Server 2.0.1 ?
    Thank you

    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".

  • Still need help with flash player download

    I'm still having a problem with the flash player, please read my last post below:
    "I've tried everything here & still can't download the flash player. Anytime I try to download it asks me to install ADM add-on and then when I click on that, my computer freezes. How do I enable this add-on without my computer freezing? Can anyone help pls?"

    Thanks a lot for your help, it is truly appreciated.
    Date: Thu, 29 Oct 2009 18:52:38 -0600
    From: [email protected]
    To: [email protected]
    Subject: Still need help with flash player download
    You can set Flash Player to check for updates on the Global Settings Manager panel:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.htm l
    >

  • How to test streaming bandwidth on localhost with Flash Media Server ?

    Hello,
    I'm trying to debbug my code on Client side (Action Script 3) that works with Flash Media Server 4 on localhost. Everything seems fine up to that point.
    However, when I'm trying to test my player with other remote streaming servers, I notice bugs because of lower bandwith transmission between the server and the player.
    Is there a simple way to simulate lower bandwith with FMS4 on localhost (by config, application.xml, programmation...) ?
    Thanks
    Seb Ethier

    Thank you zarihs Rawna
    Indeed, i have been with Server-Side ActionScript (SSAS) way. it's more simple, i think.
    Well, here the step what i did :
    Step 1 :
    Make a file "main.asc" et copy & paste the code below.
    - more info : http://www.peachpit.com/articles/article.aspx?p=31217
          *main.asc*
        var bandwidth;
        application.allowDebug = true;
        // Application callback functions
        application.onConnect = function(client, user) {
            //12800 = 100 Kbps   
            //64000 = 500 Kbps
            //131072 = 1Mbps
            //327680 = 2.5 Mbps
            //983040 = 7.5 Mbps
            //1966080 = 15 Mbps
            //3932160 = 30 Mbps
            //6553600 = 50 Mbps
            //15728640 = 120 Mbps
            bandwidth = 64000;
            client.setBandwidthLimit(bandwidth, bandwidth);
            trace("clientToServer = " + client.getBandwidthLimit(0) +  " serverToClient="+  client.getBandwidthLimit(1));
            application.acceptConnection(client);       
            trace("TEST");
    Step 2 : Save the file under the folder underneath FMS's applications directory
    Example : FMS\application\dyn
    More info : http://www.flashcomguru.com/articles/fms2_basics.cfm
    Step 3: Start the FMS server. If there is a problem, check the log file
    Example : FMS\logs\_defaultVHost_\dyn\_definst_\application.00.log
    Step 4 : (optional) Change the value of the variable bandwidth for your test. I put in comment some common internet connection speed converted in bytes.
    That's all,
    regards,
    sethier

  • 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".

  • Linux issue with Flash Media Server 2

    Greetings all,
    We have just upgraded from Flash Communication Server 1.5 to
    Flash Media Server 2, running on a server with Redhat Enterprise
    Linux 4.
    For some reason, a Flash movie that uses the old
    MediaPlayBack component does not stream video of a FLV. It does
    stream audio. On my testing server using Windows 2000 it functioned
    fine.
    On the other hand, the FLVPlayback component works nicely.
    But I will have to go back and rewrite literally dozens of
    applications that I wrote for Flash Comm 1.5 which used the
    MediaPlaybackComponent, unless there is an easy fix for this.
    I have documented this anomaly with a Captivate movie which
    you can see at
    http://breeze.stfrancis.edu:8900/mediaplayerwoes/.
    It runs 2 minutes 13 seconds.
    I BADLY need help with this. If you can help I would greatly
    appreciate it.
    Glen Gummess,
    Instructional Designer
    University of St. Francis
    Joliet, IL

    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".

  • 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

  • Archival services with Flash Media Server

    I work for a broadcasting company and we do live telecast of
    various events, mostly related to professional sports. We currently
    have a Windows Media Encoder 9 setup with Windows Media Server,
    etc. I have a custom written application that archives all of our
    broadcasts. This was accomplished with the M$ media SDKs. Archival
    means we record each one of our daily live feeds for review and
    archival purposes (game footage for coaches, stuff like that).
    We are currently looking at h.264 capable setups, or
    something equivalent. We have been playing around with Adobe's
    encoders, media server, and all that. We are impressed with the
    quality. Switching to this right now has some logistical
    complications, mostly related to an operational requirement based
    on our current business model. Simply switching to h.264 overnight
    isn't going to be possible; we will need to prepare.
    So, with that in mind, I have a question relative to SDKs and
    Flash. My current application (the archiver) can archive up to 120
    events simultaneously on a single, reasonably fast machine on a
    fast network. I have to be able to record at least 60 on a given
    night, the 120 was discovered during testing and its faltering is
    relative to network collisions and getting ethernet up to 40%
    utilization more than not having enough CPU to process the streams.
    I would need something similar for Adobe. I have the spec (at least
    the public domain version) for the tunnelling protocol so reverse
    engineering this isn't going to be a big deal. What I'm mosly
    interested in is an SDK with functionality that allows me to record
    a lot of streams in software for archival purposes. This SDK has to
    be smart enough to deal with Disk I/O VERY intelligently because
    clearly anything more than 8-12 realtime stream records to a disk
    in a linear fashion is going to overload the hard drive.
    Before anyone starts spouting off about DRM and piracy, we
    are recording the broadcasts we own. This is for archival and this
    archival process has to be automated (the app isn't JUST a
    recorder, there's a whole process shielded from the operators of
    this thing for defining stream locations, where to save the files,
    and all that). I realize all this code that automates this process
    for our company would still need to be written. What I'm interested
    in specifically are readers and writers for flash streams,
    especially relative to network reading and disk writing
    (intelligent disk writing; I've written custom implementations of
    MMS, HTTP, etc that mash the hard drive).
    In a nutshell, is there an equivalent SDK for Adobe's
    technology as the Windows Media Format SDK is for WMV files? This
    is currently the only hurdle in implementing Adobe's h264
    technology in lieu of our current setup (which is 100's of encoders
    and locations at the current time, all over North America.
    Thank you for your time.

    Take a look at On2's Flix SDK for Live. That uses the VP6 and
    any day now, the h264 codec for FLV.

  • LCCS functionality with flash media server 4

    Hi,
    I'm now using the LCCS account in my application to create p2p audio/video connections and screen sharing. Audio/video streaming is working well. However screen sharing uses RTMP protocol which means that all the data goes through the server. Due to network speed (and big distance from user1 -> LCCS server -> user2) screen sharing isn't very enjoyable and efficient because of delays. Now I wonder how to implement my own Flash Server, that users can authenticate to, publish p2p streams, and share their screens via my private server. I Assume that I need Flash Media Server 4 Enterprise (Am I wrong? Maybe some lower version applies), but what next. I completely don't know how to bite it. How to implement connecting/authenticating/routing/making connections to my own server?
    Best Regards
    Peter.

    Check out below links:
    http://help.adobe.com/en_US/flashmediaserver/techoverview/WS02f7d8d4857b16772f462f081294b9 46df9-8000.html#WS3f305989b15d10dc56a9904212a5dec9b49-8000
    http://help.adobe.com/en_US/flashmediaserver/devguide/WSa4cb07693d123884520b86f312a354ba36 d-8000.html
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/NetGroup.html
    http://help.adobe.com/en_US/flashmediaserver/configadmin/WS5b3ccc516d4fbf351e63e3d119f2925 e64-7fd2.html#WSf6b44f6ae3478e7f-67b40a2012a82c512f1-7fff
    http://help.adobe.com/en_US/flashmediaserver/configadmin/WSf888d222081ca19c-641751a912a847 7639a-8000.html
    http://www.adobe.com/devnet/flashmediaserver/articles/p2p_rtmfp_groups.html
    Hope above links help - let me know

  • Need help with flash player installation please !!!!

    Hello,
    I need help with my flash player installation because every time I access a movie this is the message I receive. 
    This content on Xfinity TV is not available for viewing with Chrome's "Incognito" mode. To play this video using Chrome, please view this page without "Incognito" mode.
    Still having problems? Try resetting your Flash player license.

    Incognito mode is a Google Chrome setting when you open a new window (Cmd+Shift+N on a Mac Ctrl+Shift+N on Windows) It opens a "private" window with no cookies and no tracking. The problem with it is that when you disable cookies, your license files are not sent to the site (whetehr it's YouTube or xFinity or any other that uses license files for paid content)  and it treats you as if you're a first time visitor. Paid videos won't play wihtout the cookies sending the license file info.
    This isn't a Flash Player setting. It's in Chrome. I did some research and according to Google, "Incignito" mode is off by default, and can ONLY be activate by the keyboard shortcut. There IS a way to disable it from the registry http://dev.chromium.org/administrators/policy-list-3#IncognitoModeAvailability

  • Need help with flash player 9 on vista

    i need help with vista flash player 9 on vista, i play this
    game called neopets and it needs flash player to make some of it to
    work and ive tried to dowload flash player 9 about 25 times and it
    still doesnt work ive tried the 3 solutions on the suport center
    this link
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb401499&sliceId=1
    and still nothing can someone help please

    The player is out (they are up to version 9.0.16). Flash
    itself (the development tool) is in alpha and pretty buggy.
    Ernie

  • Need help with flash player / slider bar navigation

    Hello, I am having a flash player developed right now for a
    intensive video site.
    I have a few questions since I'm new to flash.
    I would like the users to be able to jump forward in the
    video at any point. However, the player my developer gave me cannot
    do this. He is telling me that I will need FMS (Flash Media Server)
    software on my server in order to do this.
    Is this correct? Can we get this option without FMS?
    Also, is this a big change in scope to add this in. Our flash
    player is already done but does not have this very important
    feature.
    Thanks in advance.

    There are two methods to having this work.
    1. Use the FMS as your developer already stated.
    2. Keyframe the heck out of the FLV. This works because the
    typical player skin allows you to skip around to a keyframe. The
    more keyframes you have, the more places you can skip around to.
    The downside is that each keyframe you add to the video adds file
    size. You may also need to set the totalTime parameter of the video
    on load.
    :: EDIT ::
    You ask about implementation and scope changes in your
    question. The first is a very big scope change, and very costly to
    implement. The second, if the player that was developed uses the
    standard classes for the player scrub bar, would likely only
    require a re-encode of every video.

  • Starting with Flash Media Server 3

    Hi All, im thinking in start wiht FMS3 developing a flash
    phone, in the first version the users logged in the flash media
    server could call another users logged into the FMS.
    I see samples that open a live stream between 2 users that
    open a swf, both users publish and dowload a stream with a specific
    name, It is the only way to open a live stream between 2 users?
    Any ideas would be appreciated.
    Regards
    Nacho.

    Hi All, im thinking in start wiht FMS3 developing a flash
    phone, in the first version the users logged in the flash media
    server could call another users logged into the FMS.
    I see samples that open a live stream between 2 users that
    open a swf, both users publish and dowload a stream with a specific
    name, It is the only way to open a live stream between 2 users?
    Any ideas would be appreciated.
    Regards
    Nacho.

Maybe you are looking for

  • Quantity Variance in Invoice Verification

    Dear All I have a requirement where the system should display error in Invoice Verification if the quantity exceeds Goods Receipt quantity however there should be seperate treatment. ie.If the quantity variance upto 5 percent is allowed for raw mater

  • Oracle Cluster and libnnz10 problem - SOLVED!

    Hi to all I have some machines (XServe) with OSX 10.4.9 and Oracle 10.1.0.3. In all the machines I follow the instructions find in this forum (the relink libnnz10.dylib trick) and all the databases runs very well. Now I'm trying to instal two machine

  • Java Localization: Application Menu Language Support. MAC OS X 10.4.10.

    I am running a Java 1.4+ application on a Mac OS X 10.4.10 Intel. If I change the locale of the system to English, French or German, and I start my application, I can see the Application Menu translated properly. (I am referring to About/Preferences/

  • LabVIEW 2012 f1 Patch crashes

    I've just installed LabVIEW 2012 and unfortunately I've already run into some troubles. I received a "Setup has stopped working" when I installed the device drivers.  But the installation appeared to be fine.  LabVIEW started and MAX would open.  I d

  • Acrobat - Error# 16820

    When trying to update Acrobat, and after manually downloading Adobe AIR from adobe.com in order to start the download, the update failed with an Error# 16820. Can you please advise what this error is and how I can fix it? Thanks