Flash player version 11.7 doesn't breaks FLV playback

Hello,
Since the last 11.7 update, with chrome and ff on win 7, the FLV vidéo in a AS2 player don't work. I tested on many computers.
http://asp-gb.secure-zone.net/v2/index.jsp?id=1879/2428/6978&lng=en&startPage=7
Click on the picture with the play button. Video will show up playing but with no sound, and after 7.2 sec it stops alone, play pause won't make it start, only the seek can un-break it.
So 2 PB :
-no sound
-stop after few seconds
I'm a flash dev. I looked for error, nothing in the flashlog.txt. When i trace the time property on an enterframe, it shows the progress until the time freezes.
When installing flash player 11.6 or an older version, everything works so it's definitly this version's fault.
We have tons of hosted videos online and our customers begin harrasing us with this problem, please provide a solution (new release maybe I can dream)
Please at least run some test and acknoledge the problem so we can communicate to our client.
best regards

Hi,
No news since I created the bug, it is still unverified. I worked all monday to try some workaround without success.
We decided that we can't do anything for the moment so we completely rely on Adobe for the continuity of our service.
The worse is that the same video player class, executed in another context in the same webapp manage to keep the netstream going. It seems that some conditions trigger the playback problems.

Similar Messages

  • How do I get a user to update to the Flash Player Version to 10.1

    I would like to find out if there is a way for a message to pop up on my website if the user has Flash Player version lower than 10.1. If the version 10.1 or higher (in the future) no message should come up. The message should prompt a user to update to the Flash Player version 10.1.
    My entire site is in Flash and I am using AS3. So I am guessing I should implement an AS3 code on the first frame of the script layer. Does anyone know what would be this code?

    O.K. I see,
    HTML code is automatically generated by Flash program.
    I am unable to give you a short answer on this and thus attaching the code I
    see in DreamWeaver:
    0) {
    versionRevision = versionRevision.substring(0,
    versionRevision.indexOf("d"));
    var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
    // MSN/WebTV 2.6 supports Flash 4
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1)
    flashVer = 4;
    // WebTV 2.5 supports Flash 3
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1)
    flashVer = 3;
    // older WebTV supports Flash 2
    else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer
    = 2;
    else if ( isIE && isWin && !isOpera ) {
    flashVer = ControlVersion();
    return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if
    that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
    versionStr = GetSwfVer();
    if (versionStr == -1 ) {
    return false;
    } else if (versionStr != 0) {
    if(isIE && isWin && !isOpera) {
    // Given "WIN 2,0,0,11"
    tempArray         = versionStr.split(" "); // ["WIN", "2,0,0,11"]
    tempString        = tempArray[1]; // "2,0,0,11"
    versionArray      = tempString.split(","); //
    } else {
    versionArray      = versionStr.split(".");
    var versionMajor      = versionArray[0];
    var versionMinor      = versionArray[1];
    var versionRevision   = versionArray[2];
             // is the major.revision >= requested major.revision AND the minor
    version >= requested minor
    if (versionMajor > parseFloat(reqMajorVer)) {
    return true;
    } else if (versionMajor == parseFloat(reqMajorVer)) {
    if (versionMinor > parseFloat(reqMinorVer))
    return true;
    else if (versionMinor == parseFloat(reqMinorVer)) {
    if (versionRevision >= parseFloat(reqRevision))
    return true;
    return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie",
    "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src",
    "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();
        switch (currArg){
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":
            args[i1] = AC_AddExtension(args[i1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    // -->
    <!url's used in the movie>
    <!text used in the movie>
    </html

  • Flash Player version with Captivate 7

    The publish option (for swf) on Captivate 7 starts at Flash Player version 10.
    Does that mean if you had content working perfectly well on Flash Player 9 in a previous version of Captivate, and you import it into Captivate 7 it now needs the learner to upgrade their Flash Player?
    I am currently developing content (on Captivate 7) in a global company where forcing IT to upgrade all the flash to version 10 world-wide is out of the question.
    So I'm tempted to edit the manifest and set the minimum Flash Player back to 9.
    Am I heading into trouble?
    Or is there just some feature of Captivate 7 I need to avoid using?

    Editing the manifest file of the SCORM package is NOT going to get you out of trouble if the SWFs in that package are not compatible with a Flash Player version below 10.  If Captivate 7 is using tags or code inside the SWFs it creates that can only work on FP10 then your end users would NEED to have FP10.
    Since Captivate 7 has only just been released, you cannot have gone too far down the road of developing this content.  I would recommend you get this sorted out BEFORE you create mountains of content that your end users may not be able to view on their FP version. Upgrade an entire course to Captivate 7 format and test it thoroughly on end users from your company.  If it turns out your content doesn't run perfectly, then you may need to roll back to Cp6x to continue with this client.

  • Archived flash player version with Win 8.1

    I'm using Firefox version 37.0.1 and Win 8.1 and am having some difficulty with installing a version of flash player that is not the most recent version. I currently have flash player 17.0.0.134 installed and have lost some functionality with extensions which is why I wish to use an older version. When I use the flash player uninstaller and use the 'Check Now' button on https://helpx.adobe.com/flash-player.html I am told that there is no version of flash player installed, however, when I try to install flash player version 16.0.0.35 from the flash archives I get the message "This version of flash player is older than the version currently installed" and the installation process halts. Is there a way to find which version of flash player were previously installed and use the corresponding uninstallers? Is there an additional step to uninstalling flash player for Win 8.1? I'd really like to be able to roll back to the previous version please. Thank you.

    It doesn't make a lot of sense that a Flash Player upgrade would affect a third-party Firefox extension.  There's no way for other plugins to hook into Flash unless you've disabled ProtectedMode (which is also a bad idea from a security perspective), and we don't hook into other plugins.  I'm wondering if maybe some internal Firefox configuration files might have been corrupted.
    Are you running the right installer when you download the Archives?  There's an ActiveX installer for Internet Explorer, and an NPAPI plug-in installer for Firefox.
    If you need to run an older version, you're way better off using the Extended Support Release.  It's an old feature branch, but with all the security fixes between now and then.  We updated it in parallel with our current release.
    Just scroll down to the Extended Support Release section and choose the second row - EXE installer for plug-in based browsers:
    Adobe Flash Player Distribution | Adobe
    Once you've run that installer, if you still don't see Flash Player, then my guess there's either a bad registry entry or Firefox config file in play.
    It won't do a lot of good trying to fix it if the filesystem is in a wonky state, so it's worth ruling that out first:
    Caveat: Sometimes corrupted software is an early indicator that your disk is going bad.  It's wise to ensure that you have current working backups, especially if you have anything important on the machine.  Checking the disk for problems is a relatively safe operation, but will also give the disk a workout.  If it's on it's way out, you may not get a lot of additional warning.
    Checking the disk for errors:
    http://support.microsoft.com/en-us/kb/2641432
    At that point, if you identified problems and fixed them, but things still don't work, it's time to uninstall both Flash Player and Firefox and reinstall from pristine sources.
    If you're still stuck, let me know.

  • I have a Mac. OS 10.5.8 (64-bit), Safari 5.0.6, Flash Player version  10.3.183.90

       Hello, I have a Mac. OS 10.5.8 (64-bit), Safari 5.0.6, Flash Player version  10.3.183.90.  I keep getting error messages saying that I need update my Flash Player, But I can't.  What can I do???

    Flash Player 10.3.183.90 (Mac only)  is the latest Flash Player that will work with OS 10.5.8. The reason is that Leopard (10.5) was the LAST "Universal Binary" OS build Apple released (it runs on PPC and Intel Macs). Because of that, the Flash Player plugin is also a "Universal Binary" but since even Apple doesn't support U/B software as of September 2009, Adobe stopped development of the U/B Flash Player in November of 2010.
    That's the bad news.
    The good news (if your Mac is Intel and NOT PPC) is that you can upgrade to Snow Leopard (OS 10.6) through Apple for $19.99
    That will allow you to install and upgrade a LOT of software that won't run on PPC Macs, including Flash Player 11.8

  • Where can I get the lastest Adobe Flash Player (version 10) for my Dual 1.8GHz PowerPC G5?

    Can someone tell me how to get the lastest Adobe Flash Player (version 10) for an Apple PowerPC G5 computer with OS 10.5.8?

    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS. Note that version 10,1,102,64 is the last version available to PPC Mac users*. The latest version, 10.2.152.25, 10.3.x beta, or later, is for Intel Macs only, as Adobe no longer support the PPC platform. Version 11.0.1.152 is for Lion.
    * Unhelpfully, if you want the last version for PPC Macs, you need to go here:  http://kb2.adobe.com/cps/142/tn_14266.html  and scroll down to 'Archived Versions/Older Archives'. The first one on the list, Flash Player 10.1.102.64 is the one you download. More information here:  http://kb2.adobe.com/cps/838/cpsid_83808.html
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.
    (If you are running a PPC Mac with Flash Player 10.1.102.64 and are having problems with watching videos on FaceBook or other sites, contributor Texas Mac Man suggests the following solution which fools the site into thinking that you are running the latest version:)
    Download this http://www.steelbin.com/FPforFBPPC.zip to your desktop, unzip it, and replace the current Flash Player plug-in which is in your main/Library/Internet Plug-Ins folder, (not the user Library). Save the old one just in case this one doesn't work.

  • Air Badge Installer not working on recent flash player versions in Firefox?

    Whenever you click the Install button on the badge installer, it just does nothing until "Try Again" appears, and try again does nothing as well. This seems to be happening in all Firefox versions, but it fixed when I reverted to flash player versions 10.3 and 11.5. On version 11.6 and beyond the feature still seemed to be broken however.
    There doesn't seem to be any problems in Chrome.
    Has anyone else experienced this issue and know of a fix?

    I just tried it on an application I built a little while back and it seemed to work.
    http://phonefusionvc.com/invitation.php

  • Incorrect recognition of installed flash player version

    Hi All,
    Thank you in advance for any help you can offer.
    I have bought a new mobile phone and I am simply trying to look at the software that came on the CD with it on my pc. When the CD autorun's I get a message saying Adobe Flash player version 8.0 or later is required. I have installed the latest version (11.xxx) for the three browsers I have on my pc (IE, Opera, Firefox) but I still get the same message. Interestingly when I went to the "About Flash Player" page on the Adobe site it recognises I have version 11.xxx in each of the browsers, however when I tried to register for this forum using IE it said I needed version 6,0,65,0 or higher - meaning it had not recognised I have version 11.xxx installed?! So one part of the Adobe site recognises I have version 11, another part doesn't?! (I registered fine using Opera). I have a feeling (just a guess!) that the software on the CD is trying to use IE.
    So please can you help? Why is the correct version not being recognised? Where do browsers etc. interrogate my pc to determine what version of flash player is installed? Any advice on how I can get this resolved? What should have taken a minute has already taken hours of uninstalling and re-installing several times with no success.
    John

    jdouk wrote:
    when I tried to register for this forum using IE it said I needed version 6,0,65,0 or higher
    Could you provide a screenshot of this message?
    I have just registered a test account here with IE9 and FP 11.0.1.152 - no problem at all.
    But it would be interesting to know what the forum registration process really needs.

  • Flash Player version 12 errors and bugs

    Since the automatic update on Sunday to version 12 I continually get script errors and crashing. News broadcast, flash games, anything and everything that uses Flash doesn't work anymore. Is there a patch for the new Flash Player and/or a safe way to revert back to the older version of Flash Player version 11?

    Flash Player Uninstaller
    http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html

  • I need the Adobe Flash Player version 11.1.102.64plug in on my MacAir to view Ustream videos. Adobe message says the version is for Intel-based Macs with Safari; also says that I "may have to temporarily disable antivirus software. is it safe to download?

    I need the Adobe Flash Player version 11.1.102.64plug in on my MacAir to view Ustream videos. Adobe message says the version is for Intel-based Macs with Safari; also says that I "may have to temporarily disable antivirus software. is it safe to download?

    Your MacBook Air is an Intel-based system. To download the current version (11.2.202.228),  go to http://get.adobe.com/flashplayer/ and download it from there.
    If there is still a Flash issue, you can try the Google Chrome browser, which has the current Flash built into it, to see if it works any differently with the videos. It's available from https://www.google.com/chrome

  • I have repeatedly tried to install flash player version 10.0.0145 on my mini mac. I use Os 10.6.8 and safari 5.1.10. what do I need to do?

    I have repeatedly tried to install flash player version 10.0.0145 on my mini mac. I use Os 10.6.8 and safari 5.1.10. what do I need to do?

    Hello,
    Please provide more information as to what happens when you try to install Flash Player so that we may be able to assist you.
    Thank you.
    Maria

  • Adobe Flash Player, version 10.1.102.64 installed, but I cannot access FP dependent applications

    Adobe Flash Player, version 10.1.102.64 is installed, but I cannot access FP dependent applications (such as those on Facebook.)
    I used the link you previously  provided  http://www.adobe.com/products/flashplayer/fp_distribution3.html
    to  download the FP .exe and it worked for 2 days, but is no longer working and I'm getting the same message for both  Mozilla & IE. The only things I recall doing prior to FP not working again was 1) sign up for G Mail & 2) I used Save As to dwld a number of Images from Google.  I also rolled back my PC a day, but that has not fixed the issue.  I get the error both in IE & Mozilla.
    I've reviewed HK Local Machine/Software/Adobe, but there is no file folder for Flash Player under HK  HKEY_LOCAL_MACHINE/Software/Adobe {though there are folders for Shockwave, etc.)  Does anyone know the KEYS for Flash  Player, that I could add manually?
    System Information:
    Win XP Home, SP 2
    IE 8.0.6001.18702
    Mozilla 3.6.12
    Flash Player 10.1.102.64
    Thanks for any & all help!
    Sidney

    Can you see the Flash animation at http://www.adobe.com/software/flash/about/ ?
    Does it show some version information under it?
    Is Shockwave Flash object enabled in IE and FF?
    What files do you have in C:\Windows\system32\Macromed\Flash?
    Do you know that XP SP2 is no longer a supported OS?

  • 'To view this page ensure that Adobe Flash Player version 10.0.0 or greater is installed'?

    I have recently downloaded the newest version of flash player (version 11.9.900.117) and it is working fine with things like Youtube. However some websites that use flash player are coming up with the error message 'To view this page ensure that Adobe Flash Player version 10.0.0 or greater is installed'? I dont understand why this is happening as the version I have is 11.9.900.117 for Internet Explorer?? Please help this is driving me crazy!!!

    Exactly the same problem with me, and (apart from basic fix issues like disabling ActiveX filtering, etc) no-one seems to know a solution.
    OS: Win 7 64 bit
    Browser: IE 10
    Flash v: 11.9.900.117 (but problem continued after reverting to earlier versions with proper clean uninstalls of 11.9).
    I do note that at around the time the trouble started, Google Chrome did some (background) updates, including its embedded version of this latest flash. But if the others (above) don't also have Chrome, that is clearly not the issue. Perhaps it's a registry issue?

  • I use Adobe Flash player version 11.7.700.225 why do my YouTube and other videos keep stopping

    I use Adobe Flash player version 11.7.700.225 which is the latest version.  can anybody tell me why my YouTube and videos stop and I cannot view them I have a macbook pro with retina display late 2012 and I am running OSX 10.8.4. Do I need some other flash to view or what thanks for your time.

    noelenefromashford,
    I'm in the same boat. Safari 6.0.5, stalls, and stops playing video (youtube, vimeo, etc). I tried the same videos with Firefox and they play fine!
    Running 10.8.4 on Mac tower.
    I just switched from an older Macbook Pro 15" with the same OS version and browsers , and never had that issue. What gives?

  • Tmy linus computer is not letting me update the latest  Adobe flash player version 10.3.183.7

    i have a Asus eee 701 computer running Linux and using firefox 3.0.4 but i could not download the latest Adobe flash player version 10.3.183.7 i still using the old version flash player 10,0,22,87 i don't know what to do please help

    What distribution of Linux are you using?  You might want to post on their forum to see if any of their users have suggestions.
    Chris

Maybe you are looking for

  • Up-gradation of Sun Fire 6800 to Sun Fire E6900 UltraSPARC IV+ Processors

    We wanted to upgrade our exisiting two Sun Fire 6800 Servers to Sun FIre E6900 with Ultra SPARC IV+ processors boards and memory only. This, we want to do through Sun UAP uniboard promotion. So we want to know the compatibility and additional require

  • JNI performance

    I have a problem with JNI performance. The following simple array manipulation takes twice longer using JNI than pure Java. The dll is compiled under VC++ 4.0. Am I doing something wrong or JNI simply puts out too much overhead when calling C dll? JN

  • Monitoring access ports with DFM

    Hello, I need to monitor access port for utilization and high broadcasts and errors on Catalyst switch. I can easily change access port in device details of the switch to managed state and it detects the thresholds fine. Problem comes when user turn

  • Abap important faq!

    what is top include? what it does & can be done with it? & significance?

  • Could not able to open transaction DB14

    Hi Experts when i was trying to execute transaction DB 14 we are getting the message "Database system not supported for this function". and other transaction like DB12, DB13 and DB02 are working fine Environment: windows 2003,sql2005 and crm 5.0 plea