RTMP not working

Hello
i installed AMS 5 starter on my centos 6,i can see the start page and everything,HDS works well BUT the probleme is that
RTMP DYNAMIC STREAMING SAMPLE and the interactive exemples are not working
the interactive is giving e this error:
Error: cannot connect to Flash Media Server! Error code:NetConnection.Connect.Failed
and RTMP dynamic this:
All netconnections attempts failed
and i tryed stoping all firewalls and restarting reinstalling the server many times
when i install the windows version on my win 7 partition,it works well !!!!!!!!!!!!
please help meeee

You can symlink the libcap to the ams root directory to get amsedge to start in CENTOS 6+:
cd /opt/adobe/ams
ln -s /lib64/libcap.so.2 libcap.so.1
/etc/init.d/ams restart
Not the ideal solution, but it works until Adobe starts supporting CENTOS 6.

Similar Messages

  • RTMPS not working in Android Air 3.8.0.820

    If i build my app with 3.7.0.1530 then an RTMPS connection (proxyType = "best") works fine. If I build with 3.8.0.820, on Android I get a NetConnection.Connect.Failed after about 10 seconds. Works fine with 3.8 on iOS & OS X.
    Any ideas?

    Hi xtyler,
    Are they failing to connect first time, but working second time? Or are they completely unable to connect?
    If the latter I have some things that you can try, although I would have expected that these will only assist with Air 3.8 issues, which your customers probably aren't running yet.
    1. Use something like stunnel or Amazon ELB to handle the SSL, and have it forward the resulting non-SSL TCP connection to your RTMP port (not RTMPS)
    2. If your server is something other than Adobe Media Server and is a java program running on openjdk, try the steps listed here and restart your server. NOTE: This effects your SSL configuration. I can't comment on whether this lowers, raises or doesn't effect the resulting security.
    http://shickys.blogspot.com.au/2012/11/addressing-openjdk-bug-with-ssl-on.html
    These workarounds both allow Android Air 3.8.0.930 to establish an RTMPS connection to Red5.
    Dave

  • NetConnection.proxyType not works

    Hi,
    I need a solution for this: when the port 1935 is closed, the NetConnection switch rtmpt (port 80). The NetConnection class built in function: proxyType="HTTP" not works or I use not rightly.
    In the FLVPlayback class works this function, but I don't know how...
    Please help me!
    Thank's!

    Thank's for the patience:-)
    Say if 1935 is not blocked - your rtmp connection is going through fine? It's fine
    Now when 1935 is blocked - if you try rtmpt directly does the connection go through.  It's fine, but much slower compared to rtmp: connect, sharedObject read-write, etc...is it normally???
    if you don't set up proxyType property at all - what results do you see. The rtmp not works, but the rtmpt works. (if port 1935 closed)
    Also have you configured FMS to listen to 80? Yes.

  • Flash streamed via RTMP (using Flowplayer) does not work; does in IE 9.

    I have the latest Flash plug-in and Firefox 6.0.2. Flash files from YouTube work. However, Flash in Flowplayer -- using RTMP streaming -- does not load.
    The following page works with latest version of Flash in IE 9:
    http://www.3xconversionformula.com/replay/short
    However, it simply will not load in Firefox.
    I do NOT have any ad blocking plugins, etc.
    The Flowplayer page actually allows you to test HTTP vs RTMP vs no streaming and Firefox hangs on RTMP. So, I believe I have found out what the bug is for you, but updating Flash will not remedy the situation. It seems to be a Firefox problem.

    AVG 9.0 is installed and the video (Flash in Flowplayer) works with IE 9 and Chrome.
    Flash video works in Firefox, but not all Flash files. Flash in Firefox works with YouTube, Adobe's Flash website, and various other places, but not everywhere.
    2 URL's are supplied above that contain Flash content that does not work with my Windows 7 (64-bit) Intel Core i7 Toshiba laptop with NVIDIA GeForce graphics card.
    On the Flowplayer website -- someone who should know how to properly implement their player with Flash -- Flash does work with Firefox when HTTP and no streaming are used. However, nobody seems to note that this does not work for RTMP streaming.
    So, Flash works -- sometimes -- but not all the time. However, the VERY same Flash files DO work on SAME laptop with SAME firewall and no problems with IE 9 and Chrome. Bottom line: RTMP streaming seems to be the issue with Firefox as pointed out on the following website:
    http://flowplayer.org/setup/index.html
    Attached images:
    1. HTTP Streaming
    2. RTMP Streaming - Faulty
    3. No Streaming
    NOTE: Website states, "RTMP The most advanced video streaming technology today."
    The following 2 videos will not work with my Firefox:
    http://www.3xconversionformula.com/replay/short -- uses Flowplayer as its Flash player.
    http://www.schedulicity.com/Essentials/Video-Gallery.aspx -- uses Brightcove as its Flash player.
    YouTube works. Also, the Brightcove website itself does work. So, its the implementation of Flash players -- not Flash itself -- that seems to be the problem. However, its not a problem with old versions of Firefox, nor IE 9 or Chrome.

  • RTMP Netstream NOT working with latest version of flash Player

    Let me preface this by saying: This is definitely a bug either with latest Adobe Flash Player or the streaming Media Server (in this case Real Helix):
    In the latest version of the Flash player (10.1.82.76) Code that worked  previously in version 10.1.53.64 does not work now. This is basic code to connect to an RTMP server (Real Helix) using Netstream class. NOW the video does not even display and there is no error message . THIS ONLY OCCURS in a BROWSER . Also I am using swfobject to display the flash and I tried with latest version and the old 1.4.1 version.
    Adobe please look into this, Is this possibly a problem with Real Helix OR Flash Player itself......I can't imagine nobody has come across this before?!
    private function init():void
                video = new Video();
                NetConnection.defaultObjectEncoding = ObjectEncoding.AMF0;
                nc = new NetConnection();
                nc.client = this;
                nc.addEventListener (NetStatusEvent.NET_STATUS,checkConnect);
                nc.connect(rtmppath);
            //---BEGIN: Video Handling methods ----------------------------------------------
            private function onBWDone():void
            private function checkConnect (e:NetStatusEvent):void
                trace(flag_Running);
                if(flag_Running)
                  return;
                var msg:Boolean=false;
                msg = (e.info.code=="NetConnection.Connect.Success");
                flag_Running=true;
                    if (msg)
                        ns = new NetStream(nc);
                        ns.client = {onMetaData:ns_onMetaData, onCuePoint:ns_onCuePoint,onPlayStatus:ns_onPlayStatus,netStatus:onNetStatus};
                        ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, asyncErrorHandler);
                        ns.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
                        ns.addEventListener(NetStatusEvent.NET_STATUS,onNetstreamStatus); //only handles errors right now
                        //vidDisplay is a Video object in the library (Video - actionscript controlled)
                        vidDisplay.attachNetStream(ns);
                        // set the smoothing value from the constant
                        vidDisplay.smoothing = SMOOTHING;
                        setVolume(DEFAULT_VOLUME);
                        bolLoaded = true;
                        trace("NetConnection.Connect.Success");
                        cur_state = STATE_CONNECTED;
                        callback(MESSAGE_TYPE_VID_INIT_DONE,null);
                    else
                        trace("Load Video Failed: NetStatusEvent " + e.info.code);
                        callback(MESSAGE_TYPE_ERROR,null,"Load Video Failed: NetStatusEvent " + e.info.code);

    This is confirmed as a REAL HELIX Bug. Here is what I recevied from them:
    This has already been fixed (not yet released). For existing servers to work with the
    latest Flash player (10.1.82.76)  you need to add the following to the top level of
    your server config file
    <List Name="RTMP">
       <List Name="Scheme2">
           <List Name="Versions">
               <Var v1="0x80000702"/>
           </List>
       </List>
    </List>
    I put this in the config file and restarted the server, and it worked!
    -Mike

  • Multicast rtmp - rtmfp republish does not work (always new netgroup)

    publish an multicast video stream with fmle 3.2
    start the multicast stream - stop - start
    fml should use the old netgroup
    log file
    http://paste.railsbox.eu/show/669/

    Hi John,
    Thank you for your reply. Better late than never! Am glad I
    got a response :-)
    It does indeed sound like a caching pb on the server and that
    was my initial request the net admins. Unfortunately did not work.
    In the meantime I made my case to the net admins that I needed
    admin rights to the Roboengine in order to succesully reach my job
    objectives and after a some time they accepted :-).
    I looked closer and really could not figure out what the pb
    was: all the new files were physically there but the TOC, index and
    CSH does not update. Accessing the project locally rendered the
    same pb.
    My only solution was to delete and republish. Worked fine.
    Perhaps somebody could test this behaviour in a different
    environment and see what they get?
    Steps to reproduce:
    1°) Create an RH project (e.g. Project1.XPJ), create
    TOC, index and CSH and publish to the server using a name (e.g.
    Project).
    2°) Create another RH project (e.g. Project2.XPJ) create
    TOC, index and CSH (different to the first one) and publish to the
    server using the name as the initial project (i.e Project).
    - Chris.

  • HDS live streaming to Flash not working

    Adobe Flash Media Server 4.5.5 r4013
    Windows 2008
    Sources:
    http://help.adobe.com/en_US/flashmediaserver/devguide/WSd391de4d9c7bd609-52e437a812a3725df a0-8000.html
    http://www.adobe.com/devnet/adobe-media-server/articles/live-multi-bitrate-video-http-flas h-ios.html
    Live streaming a single or multi-bitrate video over HTTP to Flash does not work. I have followed the instructions on the 2 sources listed above repeatedly, but I can’t get live streaming over HTTP to Flash to work. Live streaming to iOS over HTTP works with no problems (single and multi-bitrate streams).
    I have tried the troubleshooting steps from the following:
    http://help.adobe.com/en_US/flashmediaserver/devguide/WS0432746db30523c21e63e3d12efac195bd -8000.html
    Troubleshoot live streaming (HTTP)
    1.      Services window (Windows): Flash Media Server (FMS), Flash Media Administration Server, and FMSHttpd services are running. ✓
    2.      Verified that the request URL is correct. ✓
    3.      Configured ports:
    a.      Configure Apache to use port 80. Open rootinstall/Apache2.2/conf/httpd.conf in a text editor. Change the line Listen 8134 to Listen 80.
    b.     Configure Flash Media Server not to use port 80. Open rootinstall/conf/fms.ini in a text editor. Remove 80 from the ADAPTOR.HOSTPORT parameter so the parameter looks like the following: ADAPTOR.HOSTPORT = :1935 ✓
    4.      Placed a crossdomain.xml file to the rootinstall/webroot directory. ✓
    5.      In Flash Media Live Encoder, select the Encoding Options tab, choose Output from the Panel options menu, and verify the following:
    a) The value of FMS URL is rtmp://fms-dns-or-ip/livepkgr. If you’re testing on the same server as Flash Media Server, you can use the value localhost for fms-dns-or-ip. ✓
    b) For a single stream, the value of Stream is livestream?adbe-live-event=liveevent. ✓
    c) For adaptive bitrate streaming, the value of Stream is livestream%i?adbe-live-event=liveevent. ✓
    Flash Media Live Encoder uses this value to create unique stream names. To use another encoder, provide your own unique stream names, for example, livestream1?adbe-live-event=liveevent, livestream2?adbe-live-event=liveevent.
    The encoder is showing all 3 streams being published and streaming.
    6. Check Administration Console: the livepkgr application and the 3 streams are running. ✓
    7. Check the logs for errors. Flash Media Server logs are located in the rootinstall/logs folder. The master.xx.log file and the core.xx.log file show startup failures. Apache logs are located in the rootinstall/Apache2.2/logs folder. X
    a)   core00.log: these errors did not occur every time that I tried playing the live stream but these are the only relevant errors in the logs.
    1. 7968 (w)2611179     Warning from libf4f.dll: [Utils] [livestream2] Discarded all queued Media Messages received before first Video Keyframe Message
    2. 7968 (w)2611179     Warning from libf4f.dll: [Utils] [livestream3] Discarded all queued Media Messages received before first Video Keyframe Message
    b) edge00.log:
    13:33:57 4492          (w)2641213 Connection rejected by server. Reason : [ Server.Reject ] : (_defaultRoot_, _defaultVHost_) : Application (hds-live) is not defined.          -
    c) Apache-Error:
    1.     [warn]  Checking if stream is disabled but bootstrap path in event file is empty for event:livepkgr/events/_definst_/liveevent stream name:livestream
    2.     [warn] bootstrap path is in event file is empty for event:livepkgr/events/_definst_/liveevent stream name:livestream1
    As I mentioned, everything works on iOS and FMS seems to be creating all of the stream segments and meta files:
    a.     The 3 streams are being created in: HD:\Program Files\Adobe\Flash Media Server 4.5\applications\livepkgr\streams\_definst_
    b.    FMS is creating the following files in each stream folder (livestream1, livestream2, livestream 3):
    1. livestream1.bootstrap
    2. livestream1.control
    3. livestream1.meta
    4. .f4f segments
    5. .f4x segments
    The appropriate files are also being created in the HD:\Program Files\Adobe\Flash Media Server 4.5\applications\livepkgr\events\_definst_\liveevent folder, in which I have the following Manifest.xml and Event.xml files:
    <manifest xmlns="http://ns.adobe.com/f4m/1.0">
      <media streamId="livestream1" bitrate="200" />
      <media streamId="livestream2" bitrate="500" />
      <media streamId="livestream3" bitrate="1000" />
    </manifest>
    <Event>
      <EventID>liveevent</EventID>
      <Recording>
    <FragmentDuration>4000</FragmentDuration>
    <SegmentDuration>16000</SegmentDuration>
        <DiskManagementDuration>3</DiskManagementDuration>
      </Recording>
    </Event>
    I’ve tried clearing the contents of both streams\_definst_ and events\_definst_\liveevent (keeping the xml files) after restarting the encoder, and creating a different event definst for the streams (liveevent2 for example).
    We have an event in 2 weeks that we would like to stream to both Flash and iOS. Any help in solving this problem will be greatly appreciated.

    One step closer:
    Changed the crossdomain.xml file (more permissive settings).
    Changed the encoding on FMLE to vp6. Working somewhat (don't know what I did to make it start streaming through hds).
    But at least now I can get the individual streams in the set manifest file to work:
    http://localhost/hds-live/livepkgr/_definst_/livevent/livestream1.f4m
    http://localhost/hds-live/livepkgr/_definst_/livevent/livestream2.f4m
    http://localhost/hds-live/livepkgr/_definst_/livevent/livestream3.f4m
    BUT when I try to play the streams through the set manifest file from http://localhost/liveevent.f4m I'm getting the following error:
    "The F4m document contains errors URL missing from Media tag." I'll search the forums to see if anyone else has come across this problem.
    I used the f4m config tool to make the file. These are the file's contents:
    <manifest xmlns="http://ns.adobe.com/f4m/2.0">
      <baseURL>http://localhost/hds-live/livepkgr/_definst_/liveevent/</baseURL>
      <media href="livestream1.f4m " bitrate="200"/>
      <media href="livestream2.f4m " bitrate="500"/>
      <media href="livestream3.f4m " bitrate="1000"/>
    </manifest>
    Thanks

  • Apache not working  with FMS 4.5 on Windows 2008

    FMS 4.5.1 Windows 2008 SP2 (64bit).
    I've searched everywhere for a possible solution to this, so my apologies if this has been asked before and my thanks for any potential help that anyone can offer to help resolve this.
    We are deploying Adobe Flash Media Server 4.5.1 on a new server but Apache does not work (does not serve html files or stream Quicktime H.264 files).
          Assorted Problems & Error messages:
    1.  The webroot/index.html page loads locally, but the HLS/HDS streams result in a 2032 error.
    2. The webroot/index.html page does not load from  external locations:
         http://63.116.232.5/index.html (does not load externally).
         http://63.116.232.6/index.html (our old server, FMS 4.0 and Windows 2003). Everything on this server works, the 2 major differences being that it is running FMS 4.x on Windows 2003.
    Some RTMP streaming works externally and internally (f4v files):
    http://www.librarymedia.net/flash/player.html?source=rtmp://63.116.232.5/vod/mp4:sample1_1 50kbps.f4v
    FMS does not stream Quicktime H.264 files even though f4v files work.
       New server (does not work): http://www.librarymedia.net/flash/player.html?source=rtmp://63.116.232.5/vod/mp4:Basketbal l.mov
                                  (f4v works): http://www.librarymedia.net/flash/player.html?source=rtmp://63.116.232.5/vod/mp4:sample1_1 50kbps.f4v
    Old server (Quicktime/H.264 file works): http://www.librarymedia.net/flash/player.html?source=rtmp://63.116.232.6/vod/mp4:Basketbal l.mov
    Apache does not serve Quicktime/H.264 files: I made sure that Apache had all of the correct mime types specified.
        Error messages and attempted solutions:
    Apache's erro_log file:
           a. httpd.exe: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
    2. FMS master.log file
          a. FMSHttpd -k start returned 1:
    Solutions: http://wiki.apache.org/httpd/CouldNotDetermineServerName
    1a:  Edited httpd.conf file to include ServerName 63.116.232.5
    1b: The presence of this error message also indicates that Apache httpd was unable to obtain a fully-qualified hostname by doing a reverse lookup on your server's IP address.
    In order for the server to accept external connections a reverse DNS lookup needs to be created. I created a reverse DNS lookup and  edited the /etc/hosts file to include the IPaddress, Fully Qualified Domain Name (FQDN), shortname.
    This is the format suggested by the article:
    127.0.0.1       localhost.localdomain   localhost       foo.example.com
    Running the nbtstat -a 63.116.232.5 command on the machine results in the following:
    WIN-8AIHI2J0524<00>  UNIQUE      Registered
    THS-LIBRARY-VOD<00>  GROUP       Registered
    THS-LIBRARY-VOD<1C>  GROUP       Registered
    WIN-8AIHI2J0524<20>  UNIQUE      Registered
    THS-LIBRARY-VOD<1B>  UNIQUE      Registered
    So the FQDN = WIN-8AIHI2J0524.Ths-library-vod.local
    I edited the /etc/hosts to the following (with versions using the local host ip 127.0.0.1 and the external ip address, IPv4 is being used):
    63.116.232.5 WIN-8AIHI2J0524.Ths-library-vod.local
    # The following lines are desirable for IPv6 capable hosts
    ::1 localhost ip6-localhost ip6-loopback
    fe00::0 ip6-localnet
    ff00::0 ip6-mcastprefix
    ff02::1 ip6-allnodes
    ff02::2 ip6-allrouters
    ff02::3 ip6-allhosts
    I've also read Adobe's port configuration articles and  changed the ports that Apache and FMS use as specified in the conf/fms.ini file, but nothing has worked so far. I restored everything to the original settings until I can find out exactly how to fix this.
    Thank you.

    Ms. Apurva ,
    I changed the files back as you suggested (the failure was occuring with the default settings) and our admin assured me yesterday that the ports that I inquired about were open. I'll ask him again.
    The telenet command for both ports 80 and 1935 result in Connect failed for me. I'll check Windows Firewall (turned off)  and McAfee to see if there is anything there blocking ports.
    Confirm that external connections are blocked: 63.116.232.5/index.html (does not open outside of localhost). No problem accessing with our old server (63.116.232.6/index.html).
    I ran this command in nmap and here are the results (11 ports closed): nmap 63.116.232.5 -Pn80
    Starting Nmap 6.01 ( http://nmap.org ) at 2012-07-06 08:29 Eastern Standard Time
    Nmap scan report for 63.116.232.5
    Host is up (0.00092s latency). nmap -p 80 says that the host is down (for both ports).
    Not shown: 988 filtered ports
    PORT     STATE  SERVICE
    1720/tcp open   H.323/Q.931
    6000/tcp closed X11
    6001/tcp closed X11:1
    6002/tcp closed X11:2
    6003/tcp closed X11:3
    6004/tcp closed X11:4
    6005/tcp closed X11:5
    6006/tcp closed X11:6
    6007/tcp closed X11:7
    6009/tcp closed X11:9
    6025/tcp closed x11
    6059/tcp closed X11:59
    Nmap done: 1 IP address (1 host up) scanned in 5.72 seconds
    Host status: up
    open ports: 1
    filtered ports:988
    Closed ports:  11
    ipv4:63.116.232.5
    ipv6: not available
    MAC: not available.
    Master log file:
    2012-07-06
    09:22:41
    6712
    (i)2581173
    FMS config <NetworkingIPv6 enable=false>
    2012-07-06
    09:22:41
    6712
    (i)2581173
    FMS running in IPv4 protocol stack mode!
    2012-07-06
    09:22:41
    6712
    (i)2581173
    Host: WIN-8AIHI2J0524 IPv4: 10.250.10.1
    2012-07-06
    09:22:41
    6712
    (i)2571011
    Server starting...
    2012-07-06
    09:22:46
    6712
    (i)2581413
    H:\Program Files\Adobe\Flash Media Server 4.5\Apache2.2\bin\httpd -f ./conf/httpd.conf -d "H:\Program Files\Adobe\Flash Media Server 4.5\Apache2.2" -n FMSHttpd -k start returned 0:
    2012-07-06
    09:22:46
    6712
    (i)2581224
    Edge (1508) started, arguments : -edgeports ":1935" -coreports "localhost:19350" -conf "H:\Program Files\Adobe\Flash Media Server 4.5\conf\server.xml" -adaptor "_defaultRoot_" -name "_defaultRoot__edge1" -edgename "edge1".
    2012-07-06
    09:22:46
    6712
    (i)2571111
    Server started (H:\Program Files\Adobe\Flash Media Server 4.5\conf\server.xml).
    edge log:
    2012-07-06
    09:22:46
    1508
    (i)2581173
    FMS detected IPv6 protocol stack!
    2012-07-06
    09:22:46
    1508
    (i)2581173
    FMS config <NetworkingIPv6 enable=false>
    2012-07-06
    09:22:46
    1508
    (i)2581173
    FMS running in IPv4 protocol stack mode!
    2012-07-06
    09:22:46
    1508
    (i)2581173
    Host: WIN-8AIHI2J0524 IPv4: 10.250.10.1
    2012-07-06
    09:22:47
    1508
    (i)2631174
    Listener started ( _defaultRoot__edge1 ) : localhost:19350/v4
    2012-07-06
    09:22:48
    1508
    (i)2631174
    Listener started ( _defaultRoot__edge1 ) : 1935/v4
    2012-07-06
    09:22:49
    1508
    (i)2631174
    Listener started ( _defaultRoot__edge1 ) : 10.250.10.1:19350 (rtmfp-core)/v4
    2012-07-06
    09:22:49
    1508
    (i)2631174
    Listener started ( _defaultRoot__edge1 ) : 127.0.0.1:19350 (rtmfp-core)/v4
    2012-07-06
    09:22:49
    1508
    (i)2631509
    Public rtmfp-core addresses for listener _defaultRoot__edge1 are: 10.250.10.1:19350;127.0.0.1:19350
    2012-07-06
    09:22:49
    1508
    (i)2631174
    Listener started ( _defaultRoot__edge1 ) : 10.250.10.1:1935 (rtmfp)/v4
    2012-07-06
    09:22:49
    1508
    (i)2631174
    Listener started ( _defaultRoot__edge1 ) : 127.0.0.1:1935 (rtmfp)/v4
    Not sure what to do.
    Thanks.

  • Microphone sound recording,saving,playing flv file is saved but not working

    Please help me,
              While recording the flv is saved inside applications/stream/samples/audio.flv. But it is not working properly.
    Mycode
    stop();   
          var count:Number          = 0;
          var timestamp:Date    = new Date();
          var nc:NetConnection       = new NetConnection();
          nc.connect("rtmp://localhost/audiotest/samples");
          var ns:NetStream          = new NetStream(nc);
            ns.setBufferTime(2);
          var mic:Microphone    = Microphone.get();
          mic.setRate(22);
          ns.attachAudio(mic);
          ns.onStatus = function($info:Object):Void
              trace($info.code);
          // record the audio to the stream
          function recordAudio():Void
              var fileName:String = String(timestamp.getTime() + (count++));
           ns.publish(fileName, "record");
          // stop the recording of audio to the stream
          function stopRecordingAudio():Void
              ns.publish(false);
          // plays back the audio that was recorded
          function playRecordedAudio():Void
              ns.play(currentFileName);
          // record button
          recordBtn_mc.onRelease = function():Void
              recordAudio();
          // stop button
          stopBtn_mc.onRelease = function():Void
              stopRecordingAudio();
          // play button
          playBtn_mc.onRelease = function():Void
              playRecordedAudio();

    Try changing the fileName:String to a simpler string name like "myAudio"....then try playing it.....if it works doing that....then the issue is with you converting that date variable to a string.......and if thats the problem try converting the value with   .toString() seperately and adding

  • Strobe Media Playback 1.6.328 not working in Firefox

    Hi All,
    latest version of SMP 1.6.328 works fine in Chrome, Safari & Explorer however in Firefox the player does not appear.
    I am re-skinning the player via xml and using RTMP dynamic video stream source via f4m file.
    All browsers are upto date and all have the latest Flashplayer versions installed.
    If I fall back to SMP version 1.6.274 everything works fine!
    Another thing I found was that the advertisment demo did not work when using Flashplayer 11 although again, it does  when using an older version.
    Any ideas?
    Many thanks
    NorfolkSignman

    Hi,
    Yes.the versions 11.1.1.6 and 11.1.1.6.8 pivot table and table prompts are not working in Firefox.
    Bug 14781767 - QA: PROMPTS: RUNTIME PROMPTS IS NOT WORKING IN FIREFOX 16 has been fixed in the latest release of OBIEE 11.1.1.6.8
    and the latest version 11.1.1.7.0 is working fine with pivot table and table prompts in Mozilla Firefox..
    Please mark if it correct/helpful

  • It seem a bug in flash server " main.asc is not working well"

    i did download the latest version of flash media server , but it seam the /live/main.asc did not work at all ,
    i did create a main.asc in :
    C:\Program Files\Adobe\Flash Media Server 3\applications\live\
    to be :
    C:\Program Files\Adobe\Flash Media Server 3\applications\live\main.asc
    now i did add to main.acs this code :
    application.onConnect = function(client, name) {
         trace("TRACE -- TRACE -- TRACE -- TRACE -- TRACE -- TRACE");
    as the help files said :
    The output of the trace() statements used by a main.asc file are sent to a log file, typically:
    RootInstall/logs/_defaultVHost_/yourApplicationName/yourInstanceName/application .xx.log
    Where yourInstanceName is _definst_ by default, and xx is the instance number, 00 for the most recent log file, 01
    for the previous instance, and so forth.
    You can view a log file with any text editor.
    i opened "Flash Media Live Encoder 3" and point the stream to "rtmp://localhost/live/stream" hist start , traming is start well,
    i went to the log to see if it true that FMS will write the trace !
    C:\Program Files\Adobe\Flash Media Server 3\logs\_defaultVHost_\live\stream\application.00.log
    where the "stream" is the the name of the "instance"
    i did not found any thing regarding the "trace("TRACE -- TRACE -- TRACE -- TRACE -- TRACE -- TRACE");"
    Please advice

    It seem no one in the world have this broblem !Please if you have a plan to help us (if).
    Do the following :
    ·        Download the latest version of flash media server , linux or windows never mind
    ·        Install flash media server , as usual with standard settings , in linux use Nobody user
    ·        Now the FMS is run and active .
    ·        Go to the application directory in the “C:\Program Files\Adobe\Flash Media Server 3\applications\live”
    ·        The content of this directory will be as the list below :
    main.far
    Application.xml
    allowedHTMLDomains.txt
    allowedSWFDomains.txt
    So there is NO main.asc file , create a new text file . rename it to be “main.asc”
    o  Open the main.asc code , it will be empty for sure .
    o  Put the following command :
    o  trace(‘--------------- Test The Log Out Put -------------’);
    ·        Now Open the “fms_adminConsole.htm” and Login as admin
    ·        Select View Applications Tap
    ·        Now , form “New Instance” select the “LIVE” and insert “test”
    ·        Click on the name of the Instance in the right window and click the restart application icone in the toolbar , and see the live log , there is no out put of the trace command:
    o  Found wildcard (*) entry: disabling authentication for HTML file domains
    o  Found wildcard (*) entry: disabling authentication for SWF file domains
    o  Unloaded application instance live/test
    ·        Any way , Now Open the “Adobe Flash Media Live Encoder 3”
    ·        Point the FMS to “rtmp://localhost/live/test”
    ·        Stream: test_str
    ·        Click on start
    ·        Go to “fms_adminConsole.htm”
    ·        Select View Applications Tap
    ·        Go to live loge window ,
    ·        There is nothing regarding the trace command that we set in the main.asc ate the 1st place, but we did restart the app! strange !!!!
    ·        We can see just “Accepted a connection from IP:127.0.0.1”
    ·        Is there any thing wrongs with the steps ! is it a bug or what ?
    ·        If trace command did not run so any command will not load .
         ·        Why is that ?

  • Why fms3 edge mode can't not work like fms2 ?

    Step 1:
    Yesterday,I use edge mode with fms2.05 , and I do like this
    URL (
    http://www.adobe.com/devnet/flashmediaserver/articles/webcasting_fme_print.html)
    PC A run FME 2.5 (flash media encode )+ FMS 2.05 (orgin mode
    ,use install by default setup)
    IP address:192.168.1.1 OS :windows xp sp2
    PC B run FMS 2.05 (edge mode ,use install by default setup
    and modify C:\Program Files\Adobe\Flash Media Server
    2\conf\_defaultRoot_\_defaultVHost_\Vhost.xml , "local"
    ->"remote" )
    IP address :192.168.1.2 OS: windows 2003 sp1
    PC C run a viewlive.swf made by me like this:
    nc = new NetConnection();
    nc.connect("rtmp://192.168.1.2/?rtmp://192.168.1.1/live");
    nc.onStatus = function(info) {
    if (info.code == "NetConnection.Connect.Success") {
    createNetStream(this);
    createNetStream = function (nc) { ns = new
    NetStream(nc);myvid.attachVideo(ns);myvid.smoothing =
    true;ns.play("test", -1);};
    I can see the live webcasting on PC C, all think is OK !
    Step 2
    Today , I install fms3.02 instead of fms2.05 in PC A and PC
    B, do the same thing like Step 1
    but run the viewlive.swf can't see anything.
    I check PC B : C:\Program Files\Adobe\Flash Media Server
    3\logs\core.00.log
    2008-05-24 18:33:14 3480 (i)2581231 Core (3480) connected to
    admin. -
    2008-05-24 18:33:14 3480 (i)2581246 Core (3480) sending
    register cmd to edge. -
    2008-05-24 18:33:14 3480 (w)2631008 Asynchronous I/O
    operation failed (Failed to attach to completion port:
    参数不正确。 87). -
    2008-05-24 18:33:15 3480 (i)2581234 Core (3480) connection to
    admin accepted. -
    Asynchronous I/O operation failed (Failed to attach to
    completion port: 参数不正确。
    87). Why ?
    Should anybody can help me?

    This works. I change the visible property instead of using
    removeChild, though I don't know why yours does not work.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:states>
    <mx:State name="state2">
    <mx:SetProperty target="{popupbutton1}" name="visible"
    value="false"/>
    </mx:State>
    </mx:states>
    <mx:Script>
    <![CDATA[
    [Bindable]
    public var treeXml:XML=
    <Child>
    <Child fatherCategoryId="0" categoryName="expenses"
    categoryId="38">
    <Child fatherCategoryId="38" categoryName="eat"
    categoryId="40"/>
    </Child>
    <Child fatherCategoryId="0" categoryName="income"
    categoryId="39">
    <Child fatherCategoryId="39" categoryName="salary"
    categoryId="41"/>
    </Child>
    </Child>
    ]]>
    </mx:Script>
    <mx:Button x="84" y="32" label="state1"
    click="currentState=''"/>
    <mx:Button x="166" y="32" label="state2"
    click="currentState='state2'"/>
    <mx:PopUpButton id="popupbutton1" height="24" width="150"
    textAlign="left" label="please select..." x="84" y="85">
    <mx:popUp>
    <mx:Tree id="cateTree" dataProvider="{treeXml}"
    labelField="@categoryName" showRoot="false"
    width="160" textAlign="left"/>
    </mx:popUp>
    </mx:PopUpButton>
    </mx:WindowedApplication>

  • Rtmfp p2p does not work on ios, who is responsible?

    Hello,
    i'm having some troubles with p2p rtmfp connections from and to an air packaged ipa file via adt.
    First, iam not able to open 2 concurrent NetConnections.
    So this Example by Michael Thornburgh on http://forums.adobe.com/thread/857560?tstart=0 will just not work on my IPad (air file packaged with adt), but it does in the Air Player on my Laptop!
    Second, Broadcasting via rtmfp from an IPad  (air file packaged with adt) and Receiving the Signal on eg. a Laptop and Air file will not work either.
    Who can give me qualified info on whom to ask for cirrus, rtmfp and ios related questions?

    Hi Michael,
    youre absolutely right in the two things you mentioned.
    1.) For the sake of simplicity i stripped out all NetConnection status handlers, to see if the net connection worked or not or what else happened.
    But if i write the trace output in a textfield on ios i see that everthing works fine on the first place, and my super lame check if both connections are ready works there, both are connected successfully.
    2.) onPeerConnect return value:
    "onPeerConnect() function doesn't return a value" => that is right, but it does not make a difference on ios even if they return true;
    the corrected script on: http://codetidy.com/794 reflects that, but it does not work.
    What i meant with two concurrent NetConnections not working meant was, that it is just not working when using rtmfp.
    It worked on the ipad when i used the traditional rtmp client / server streaming via red5 though.
    the rtmfp on ipad fails, when ipad is the sender and another device or itself is the receiver. then after a call to:
    initRecvStream();
    and therefore the  _recvStream.play( "stream" ); method, i dont get a netStatusHandlerReceiver event back on the receiver side, nor does a onPeerConnect method on the sender does get triggered.
    But one thing stays quite strange:
    if i setup my ipad packaged air file as a receiver and receive a stream from another air file on my laptop via cirrus it works.
    if i setup my ipad packaged air file as a sender and send the stream to another air file on my laptop via cirrus it does not work.
    so there seems to be a bug in the ios packager and rtmfp part.

  • Installed FMS4 in a different port number, but its not working..

    Hi.. Parden me if this question was asked earlier. While installing FMS i have entered the port numbers 1935,100  instead of normal 1935,80 as i already have wamp in my default port 80, but when i try to call the localhost url, both the port (http://localhost:100 & http://localhost:1935) are not working. Please help me how to fix this.
    Regards,
    Bala

    you are trying to connect to port 1935 and port 100 over http you need to connect to them over rtmp .....remove port 100 from fms.ini because flash player won't know how to connect rtmp over http using it anyway. i personelly only have 1935 set in a develpment enviroment because i have a webserver runnning on the same machine. I can serv .swf connected apps over the net without an issue you only need to set port 80 when the user specifically blocks port 1935 with a firewall (rarely the case). so since you aren't in production environment omit port 80 and 100 from fms.ini and connect via rtmp and all will be ok.

  • FMS3 does not work on Ubuntu8.10

    Hi,
    I have installed FMS3 developer on my server Ubuntu8.10.
    Some libraly were installed.
    Now, (I hope so) my "fmscore" is ok !
    I checked out my file "fms.ini" to make sure everything is ok
    I checked my port 1935 and 1111 is working.
    But, in fact,
    Or mysite:1935/fms_adminConsole.htm and vodtest sample site
    is not working.
    It says "connection refused.".
    Could you help me please !

    Port 1935 is for RTMP communication. You don't make a request
    of the server using the browser... you need a Flash client (or
    another client that speaks RTMP).
    Port 1111 is the RTMP admin service. You use the admin
    console to connect to it, but you need to request the page via
    HTTP.
    Try copying fms_adminConsole.htm, fms_adminConsole.swf, and
    the runActiveContent javascript (forgot the name... it's in the fms
    root directory) to a web accessible location, or to a local
    location. Then you'll be able to use the console.

Maybe you are looking for

  • Adding multiple swf files to Dreamweaver

    I'm trying to upload multiple .swf files to my website with no luck. I've done this with previous versions of Dreamweaver but with CS3 I'm finding it won't happen. I've done the Insert -> Media -> Flash action as before and exported my files to be re

  • Problem receiving message through Messaging Bridge

              Hi!           I am using WLS7.0, and trying to correctly setup two messaging           bridges: one from a WLJMS_SEND_QUEUE to a MQJMS_SEND_QUEUE and           one from a MQJMS_RECEIVE_QUEUE to a WLJMS_RECEIVE_QUEUE.           When sending

  • No Photomerge Function in Photoshop Elements 11

    Dear Users, I found my photoshop elements having no Panorama function. As per tutorial that fuction should be listed under File/New but there is not anything. Version:  Photoshop Elements 11 Thanks for any advice

  • Does anyone know how often camera raw is updated for new cameras I have a nikon D750

    HI, I was wondering how often camera raw is updated for new cameras as I have just got a Nikon D750 and at present cannot adjust raw files

  • How long does it usually take to backup Adobe Premier projects?

    When you go into the Project Manager and back up the project, so that Premiere copies every file involved to a portable hard drive, along with the project file, so the project can be opened and edited on a different computer, how long does it take? I