Length of audio file not correct in Firefox, Safari, and Chrome. Why?

Hello,
     I created a mp3 player that loads the file, displays the sound length, and plays the audio file. I have notified that on Firefox, Safari, and Chrome browsers, the length of audio file is not correct. I have uninstalled and installed flash plugin and activex control but no luck. Any ideas why I am experiencing this behavior?
Regards,
Nilang

As a test, try putting an empty JSP in front of it that triggers the session to be created, and then redirects (with a HTTP meta refresh for example) to the frameset jsp to see if that fixes anything.
If that fixes it, then I guess the pages load too quickly.

Similar Messages

  • Flash files not displaying in Firefox, Safari, and Opera. Most recent Shockwave installed, private b

    Flash files not displaying in Firefox, Safari, and Opera. Most recent Shockwave installed, private browsing active in Firefox?  Works perfectly in Chrome and Internet Explorer.  HELP!!!!

    I suppose it would have helped if you knew what it was supposed to look like!   I'm using Shockwave Flash 11.7.700.169  and the version of Firefox I'm on is 20.0
    When you see it in Firefox  - do the thumbnail populate the grid?  See attached populated and un-populated.
    Populated grid is with Chrome.
    Thanks!
    Thanks in advance!

  • Sessions not working in Firefox, Safari and Chrome, but working in iexplore

    Hi,
    I have been running Tomcat 5.0.18 jdk 1.4. and have just upgraded to Tomcat 6.0.24 jdk 1.6..
    I have an app that you need to log on to in a jsp page. When succesfully logged in it redirects to a framed page with 3 pages in it.
    All elements of that framed page check for a valid session, if there is one, it displays itself, if not, it redirects back to the log on screen.
    This has worked fine for years in all browsers. But since upgrading, in Firefox, Safari and Chrome, when the parent framed page jsp checks for a session, its fine, it passes, but when the other sub-frame pages check for a session, it comes back as a new session, i.e. its not picking up the session that has just been validated and redirects to the login page. Iexplore still works fine. i.e. all 3 pages validate ok.
    Any ideas why these browsers are not pickng up the session?

    As a test, try putting an empty JSP in front of it that triggers the session to be created, and then redirects (with a HTTP meta refresh for example) to the frameset jsp to see if that fixes anything.
    If that fixes it, then I guess the pages load too quickly.

  • Osmf Flash Player will not display images in safari and chrome

    In OSMF player, I am using  image to display as thumbnail before playing video.
    Image is displaying properly in IE and Firefox but I am getting error in safari and chrome.
    Error of flash player:
    ArgumentError: Invalid parameter passed to method
        at org.osmf.traits::LoadTrait/setBytesLoaded()
        at org.osmf.elements.loaderClasses::LoaderLoadTrait/onContentLoadProgress()
    ArgumentError: Invalid parameter passed to method
        at org.osmf.traits::LoadTrait/setBytesLoaded()
        at org.osmf.elements.loaderClasses::LoaderLoadTrait/loadStateChangeStart()
        at org.osmf.traits::LoadTrait/setLoadState()
        at org.osmf.traits::LoadTrait/onLoadStateChange()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at org.osmf.traits::LoaderBase/updateLoadTrait()
        at Function/<anonymous>()
    Please help me in resolving this issue. This error occurs with some specific image url's only

    <table width="969" border="1">
      <tr>
        <td colspan="3"><object id="Portfolio" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="500" height="450">
          <param name="movie" value="Flash/Portfolio.swf" />
          <param name="quality" value="high" />
          <param name="wmode" value="opaque" />
          <param name="swfversion" value="9.0.45.0" />
          <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
          <param name="expressinstall" value="Scripts/expressInstall.swf" />
          <param name="LOOP" value="false" />
          <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
          <!--[if !IE]>-->
          <object type="application/x-shockwave-flash" data="Flash/Portfolio.swf" width="500" height="450">
            <!--<![endif]-->
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="9.0.45.0" />
            <param name="expressinstall" value="Scripts/expressInstall.swf" />
            <param name="LOOP" value="false" />
            <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
            <div>
              <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
              <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
            </div>
            <!--[if !IE]>-->
          </object>
          <!--<![endif]-->
        </object></td>
      </tr>

  • Loading multiple SWFs and storing them (code not working under Firefox 23 and Chrome)

    Hey guys,
    Anyone has any idea why this code suddenly don't work anymore? (It works under internet explorer but not firefox and chrome
    The code under is placed on my main swf to preload all my external swfs and store them for not having to wait too long to access them.
    Thx guys.
    I took the code from here btw: http://www.beautifycode.com/the-finer-art-of-loading-2-handling-multiple-swfs#snippet
    I'm running flash player 11.8.800.94... It used to work under Firefox and Chrome
    var _swfLoader:Loader;
    var _swfRequest:URLRequest;
    var _swfPathArr:Array = new Array("00.swf", "01.swf", "02.swf");
    var _swfClipsArr:Array = new Array();
    var _swfTempClip:MovieClip;
    var _loadedSWFs:int;
    startLoading(_swfPathArr);
    function startLoading(pathArr:Array):void {
    _swfLoader = new Loader();
    _swfRequest = new URLRequest();
    loadSWF(pathArr[1]);
    function loadSWF(path:String):void {
    setupListeners(_swfLoader.contentLoaderInfo);
    _swfRequest.url = path;
    _swfLoader.load(_swfRequest);
    function setupListeners(dispatcher:IEventDispatcher):void {
    dispatcher.addEventListener(Event.COMPLETE, onSwfComplete);
    function onSwfComplete(event:Event):void {
    event.target.removeEventListener(Event.COMPLETE, onSwfComplete);
    _swfTempClip = event.target.content;
    _swfTempClip.customID = _loadedSWFs;
    _swfClipsArr.push(_swfTempClip);
    if(_loadedSWFs <_swfPathArr.length - 1) {
    _loadedSWFs++;
    loadSWF(_swfPathArr[_loadedSWFs]);
    } else {

    Hi kglad,
    The problem was coming from my server.
    I recently played with some settings  from a "cache control tool" offered by my hosting but i thought i had it back at default. Turns out i must've missed something. Now i have the .html caching on and everything works good on all browser.
    I have another question tho...
    I'd like to know if there's a way to cache an html file without having to ask my hoster to cache all of my htmls...
    I'm using this code now but maybe there's a way to add something that will cache this page specifically?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>title</title>
    <script language="javascript">AC_FL_RunContent = 0;</script>
    <script src="fluid_site.js" language="javascript"></script>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <link href="style.css" rel="stylesheet" type="text/css" media="screen"/>
    </head>
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script>
        if (AC_FL_RunContent == 0) {
            alert("This page requires fluid_site.js.");
        } else {
            AC_FL_RunContent(
                'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
                'width', '100%',
                'height', '100%',
                'src', 'index',
                'quality', 'medium',
                'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
                'align', 'middle',
                'play', 'true',
                'loop', 'true',
                'scale', 'showall',
                'devicefont', 'false',
                'wmode', 'window',
                'id', 'index',
                'name', 'index',
                'menu', 'false',
                'allowFullScreen', 'false',
                'allowScriptAccess','sameDomain',
                'movie', 'index',
                'salign', ''
                ); //end AC code
    </script>
    <body>
    <noscript>
        <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="100%" height="100%" id="index" align="middle">
        <param name="allowScriptAccess" value="sameDomain" />
        <param name="allowFullScreen" value="false" />
        <param name="MENU" value="false">
        <param name=wmode value=window>
        <param name="movie" value="index.swf" /><param name="quality" value="medium" /><embed src="index.swf" quality="medium" width="100%" height="100%" wmode="direct" name="fluid_site" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
        </object>
    </noscript>
    </body>
    </html>
    Thanks

  • What is a 403 Forbidden error message which I get on firefox, safari and chrome. I don't know if it is the website or something with my mac though everything else works fine.

    When trying to log in to crossstitch.com I get this message:
    You don't have permission to access /index.php on this server.
    Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
    Apache mod_fcgid/2.3.6 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at www.crossstitchforum.com Port 80
    I googled the error message and don't really understand what it means.
    I don't know if it is the website or something else. I am not sure where to check and I don't know how to get in touch with the webmaster. If anyone can help I would appreciate it.

    If it is a Firefox add-on, you may be able to disable or remove it here:
    new Firefox button > Add-ons > Extensions
    or
    classic Tools menu > Add-ons > Extensions

  • The last few days Firefox, Safari and Chrome have all been going to "not responding" as soon as I open them. Has anyone else been having such a problem??

    IE8 is the only browser that seems to be working. Does anyone know what is going on??

    I understand that after using Firefox for a while there are some issues with speed. [[Firefox is slow - How to make it faster]]

  • Firefox will not show links to flv files. I get the error message for each flv file: "File not found. Firefox can't find the file at (path) .flv." Any mov and swf files in this same path will show. I can see the videos in Safari so the paths are correct.

    Firefox will not show links to flv files. I get the error message for each flv file: "File not found. Firefox can't find the file at http:// (path) .flv." Any mov and swf files in this same path will show. I can see the videos in Safari so the paths are correct.

    Is this a webpage that contains a link to a flv file? Please post a link to the page and tell us which link(s) are the problem flv files or else post a link to the .flv file itself.
    Alternately, click on one of the sample FLV File links on this page and tell us exactly what happens:
    http://www.mediacollege.com/adobe/flash/video/tutorial/example-flv.html
    It might also help if you post the exact error message, including the path to the flv file.
    '''Note:'''
    Depending on how you have Firefox set up, clicking on a FLV File link will either save the FLV file to your computer or Firefox may open it automatically in an external application right after downloading (Firefox may ask you first). Firefox itself can't play FLV files so you need a "helper" application (or a plugin for flv files, if ther is one. You can see if Firefox is already set up to download or open FLV files by going to Firefox Preferences and looking in the Applications list. Find the FLV file type in the list and, if the action is "Open with", it should show the application that can play FLV files (e.g., VLC Media Player or Perian). See [[Managing filetypes]] for more information.

  • Slideshow, how to make clip the same length as audio file?

    Hi
    I've got several PowerPoint presentations and need to make an MP4 video file for each of them. I know how to export the slides as still images, and I also have the audio files broken up into individual mp3 files that match each slide.
    I'm trying to figure out the most efficient way of getting the slides and audio files synced in Premiere Elements.
    Yesterday I imported all of the png images and mp3 audio files into my project. But I had to individually add each image, followed by the mp3, and then in the timeline manually stretch the image to make it last the same length of time as the audio file. It was rather tedious and I have a lot of presentations with many slides to work with. I'm sure there must be some better way to make all of this happen, right?
    Can anyone help me out here?
    1. Is there a way to make the image clip match the time of the audio clip?
    2. Is there a way to import all of the audio and image files at once (given they have the same names) and have PE automatically associate the image clip with the audio file?
    Thanks, Derek

    1. You can place the audio file in the Audio 1 track of the timeline first (Timeline, not sceneline)
    2. Next drop the image to where the audio file starts. Now press "\" key
    3. Drag the end of the clip to exactly where the audio ends. Whe you are near the end of the audio with the drag it should simply stick to it.
    4. Group the audio and image file together (Right click and select group after selecting both these together)
    5. Select the clip and do a right click and use the Fade-In and out option. You can fade in the video and let the audio simply continue. This makes it look and sound good.
    6. Place the next audio file and go on doing the same till all of them are done. The grouping step is not needed but when you keep working with PRE, you might just thank me for it!
    I tried all these steps just as I was typing this post, so I can tell you for sure that PrE10 works as if it is designed JUST for this use case. So hoping you get to complete the project on time and with good quality!

  • The online conversion of my pdf file to word did not correctly convert the tables and certain other formatting.  I wish to obtain a refund.

    The online conversion of my pdf file to word did not correctly convert the tables and certain other formatting.  I wish to obtain a refund.

    Hi yammyamm,
    I'm sorry that your conversion didn't work out for you. Please contact Adobe Customer Support via phone or chat, and an agent will be able to process that cancellation/refund for you. Here is the contact information: Contact Customer Care
    Best,
    Sara

  • Logic Pro X: Audio file not found?

    I have Logic Pro X, and this problem has never occurred before but...
    I was mixing one of my songs and everything was perfect, then I made sure to save it.
    As I reopened literally 10 seconds later (not sure why I even closed it) it was showing me a message that said "Audio file not found"
    At least 12 audio files went missing out of nowhere. It's only the files recorded from Logic that are not found.
    I tried to locate them through my Finder but I don't know where my audio files are stored onto my macbook, and it doesn't seem to be in an easily accessible place.
    It's just weird because they were all fine just before I closed Logic, then they disappeared.
    I checked the audio bin in Logic and they seem to be there but they seem corrupted.
    If anyone can help, or at least show me where audio files are stored on your mac from recording through Logic, that may help.
    Thank you.

    To clarify:
    Logic Pro X
    I have also experienced this issue as a result of having recording delay set other than zero, and rectified it by returning to 0.
    Otherwise,
    [Command 8] or
    Window > Open Project Audio, select audio files that appear flatline, click 'Audio File' menu at top left, click 'Refresh Overview(s)'.
    No way I know of to auto-enable this.

  • Audio file not playing when previewed or pulised on only one slide

    I have one slide that the audio will not play unless the you click on the play button in preview or when published.  All other slide audios are working fine and will play automtically when the next button is clicked on the previous slide.  I have tried changing the name of the audio file, deleting the sled and the fiel and staring over etc.  the audio file were created in another program and then brought into Captivate but thia has not been a problem with any other production up to this point.  Any suggestions?

    I will be out of the office starting  22/10/2009 and will not return until
    28/10/2009.
    If you require urgent assistance then please contact Emma Dawson on 15832
    alternatively I will respond to your query on my return.

  • Audio file not support

    Hi,
    I am using a folio overlays for a digital publication and insert audio files. While inserting the audio file not supported. The following error was occurred. Please advice.

    I've moved your question to the DPS forum.

  • When i try to open my projekt in logic pro x it say audio files not found?

    when i try to open up a projekt in logic pro x it say audio files not found why is this heppends? 

    This error typically means the audio files you used in this project are no longer found in their original location.. (did you move or delete them?) or you have renamed the audio files..... or they were located on an external HD etcand that drive or disk is no longer available.... because its not plugged in.

  • Logic X EXS24 - audio file not found

    I know this question crops up often and is usually a Garageband/missing downloadable contents issue but that's not the case here.
    I'm a long time Logic user (pre Apple)  and can usually work my way around issue or find answers online, but I'm completely stuck with this one.
    I've been running my current setup for about eight months now (new Mac Pro, latest versions of Logic Pro and OS) with no problem at all.
    I have an extensive sound library stored on external drives (Pegasus2) via Firewire and everything has been zipping along, then yesterday for no know reason EXS24 suddenly gives me the "audio file not found" message when trying to create a new instrument.
    All previously created EXS24 instruments load just fine as the audio files were copied onto the project drive, but Logic no longer sees the library on my external drive.
    The external drive is working just fine (troubleshooting shows no errors or issues) and I can access it just fine, load sounds into other applications etc), I can also manually drag individual samples into my EXS24 instrument so that it "sees" them, but very impractical to do this with so many audio files, and obviously that's not how it's supposed to work.
    I thought I had found a workaround yesterday by making an alias of the folder containing the sound library and copying the alias to User/Music/Audio Music Apps and that worked while I was working yesterday, but on loading Logic today the problem is back.
    I've reindexed the drive in question with Spotlight..
    As mentioned, this setup has worked for months (and for years on my previous hardware) but suddenly Logic can no longer see those files via EXS24.
    Any suggestions as to why this suddenly happened, and more importantly, on a permanent fix?
    B.

    It doesn't really matter where you put the samples, as the EXS will search for them when you try to load an instrument that references them.
    The reason why the "davidfelton" bit is in there, is that the location of the samples is stored inside EXS files. At load time, if the samples are not at that location, the EXS will search for them, and once found, will write the new location back to the EXS file so it doesn't have to search next time.
    If the EXS cannot find your samples, then open the EXS preferences and make sure your default search locations will find the files (ie you don't have it set to look on one drive, when the samples are on a different one).
    Or you can use the project managers "resolve" function to update the sample locations to all the EXS files in one go.
    Any probs, post back...

Maybe you are looking for