Has anybody found the fix for when audio stops working all of a sudden in FIrefox

I DO NOT want to restart Firefox - and YES - I have RESET Firefox itself MANY TIMES - AND YES - I have the LATEST FIrefox - AND NO - I don't have any conflicting add-ins / extensions other than Fire FTP - and this happens ALL THE TIME - Does anybody know a workaround or a fix for this that won't mean restarting etc?

ANY audio playing on ANY website through the Firefox browser - Chrome - is FINE so is IE - If I am plating audio through any other external source such as SoundForge or Adobe Audition - Fine - JUST through FIrefox - and this happens ALL THE TIME - ALL of a sudden - AND as i stated I DO NOT want to close my browser and restart - and have to save my tabs etc - AND again i have ALREADY reset Firefox - yet it still happens - Thanks

Similar Messages

  • Today, youtube has stopped working at points throughout the day. When youtube stops working, all videos show a large arrow button in the center.

    When youtube stops working, videos display a large play button in the center that is normally not there. When I attempt to play the video (by pressing either the middle button or normal one), videos show the "an error occurred, please try again later" screen. Clearing the cache fixed it once, but videos went back to not working in the way described above after some time.

    Try to clear the YouTube cookies and maybe the cache as well when this happens.
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can also check for problems with the Flash player.
    *http://kb.mozillazine.org/Flash#Flash_Player_11.3_Protected_Mode_-_Windows

  • In Adobe Pro XI when converting an excel file to a pdf, the pdf is not retaining the page size settings.  Has anyone found a fix for this?

    In Adobe Pro XI when converting an excel file to a pdf, the pdf is not retaining the page size settings.  Has anyone found a fix for this?

    It shouldn't print each page as a separate job and
    each tab has a different name, so, even if it did, it
    ought to give the printouts the name of the tabs.
    It doesn't print each page as a separate job unless the orientation is different - that's the bug. And the name of the job is taken from the name of the window, not the name of the tabs. That's how every application works, which, I think, is why Excel allows the specific selection or the active sheets to be printed.
    Still, that does sound like a plausible explanation.
    However, even if presented with multiple prints with
    the same name, the spooler should print each one!
    The spooler does print each one - you can watch the spooler process the multiple jobs. I think, though, that they are being overwritten since all the jobs have the name of the window as the job title. And since this happens after the Save Dialog is presented, there's really nothing the application can do. To Excel, it's one job, the multiple orientations don't matter; it's just that Apple doesn't handle it correctly.
    As a workaround, you can print the selections one at a time and give them unique names and then rejoin them in one PDF file.

  • Anybody found a fix for the netstream.seek bug?

    The bug I am talking about is only being able to seek to a point in a video that the play head has been before.
    Here is how the bug is described at :http://www.brooksandrus.com/blog/2005/12/17/5-reasons-netstream-sucks/
    "Seeking is super slow until all keyframes are cached. No bull, if you have a file which you’ve completely preloaded, the keyframes aren’t cached until the video playhead reaches that point in time for the first time. If I load a file and seek to the end, the player has to chug through all of the keyframes prior to my seek point. This is slow, slow if I have video of even several minutes."
    That was posted 5 years ago. I have found the bug referenced in the following posts:
    http://forums.adobe.com/message/1917914#1917914
    http://forums.adobe.com/message/692394?tstart=0
    I would assume that since this bug has been around for at least 5 years, there would a bug report filed for it or a work around found. But I can't seem to find either.
    I have tried multiple codecs and encodings with no luck. I'm having a hard time accepting that there is not fix for this problem. Flash has to read and cache the key frame information of the entire video before being able to seek to the end. Does anybody know where the flash player writes this information? Let me be clear, this is not streaming video, this is video that is running local off the hard drive. The flash player stores this key frame information somewhere until the computer is restarted. At that point when the video is played again, it has to read the entire file again. You can close and open the player multiple times and it will only perform the caching the first time and not again until a computer restart.
    again, I am not trying to seek to a point that has not been loaded yet. This is a swf that loads a video off the hard drive.
    One that that I have noticed is that when H.264 files are loaded, the player immediately performs the caching scan before it begins to play. When it is finished, you can seek to any point quickly. The time it takes for the caching scan is dependent upon the size of the file and the number of keyframes it has. Whereas the rest of the video codecs will play immediately but will only seek quickly to cached keyframes.
    I have only seen this problem discussed in a few spots, with no solutions. it is a very old bug. Has anybody found a fix, work around or bug report on it?
    Thanks for your help
    -Mike

    package {
        import flash.display.Sprite;
        import flash.events.NetStatusEvent;
        import flash.events.SecurityErrorEvent;
        import flash.events.TimerEvent;
        import flash.media.Video;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.text.TextField;
        import flash.utils.Timer;
        import flash.utils.getTimer;
         [SWF(width="400", height="600", backgroundColor="#FFFFFF")]
         public class SeekTest extends Sprite
              private var videoURL:String = "test.flv";
            private var connection:NetConnection;
            private var stream:NetStream;
              private var tick:Timer;
              private var startTime:int;
              private var skipCount:int;
              private var duration:Number;
              private var txt:TextField;
              public function SeekTest()
                   txt = new TextField();
                   txt.wordWrap = true;
                   txt.height = 300;
                   txt.width = 400;
                   addChild(txt);
                   tick = new Timer(0.1);
                   tick.addEventListener(TimerEvent.TIMER, checkLoad);
                   connection = new NetConnection();
                connection.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                connection.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
                connection.connect(null);
              private function netStatusHandler(event:NetStatusEvent):void {
                    //print("Net Status:", event.info.code);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        connectStream();
                        break;
                    case "NetStream.Play.StreamNotFound":
                        print("Stream not found: " + videoURL);
                        break;
                        case "NetStream.Seek.Notify":
                             print("--- Seek Completed in", (flash.utils.getTimer() - startTime)/1000, "seconds.");
                             seekDone();
                             break;
            private function securityErrorHandler(event:SecurityErrorEvent):void {
                print("securityErrorHandler: " + event);
            private function connectStream():void {
                stream = new NetStream(connection);
                stream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                var metaOb:Object = new Object;
                metaOb.onMetaData = metadata;
                stream.client = metaOb;
                var video:Video = new Video();
                    video.height = 300;
                   video.width = 400;
                   video.y = 300;
                video.attachNetStream(stream);
                startTime = flash.utils.getTimer();
                stream.play(videoURL);
                addChild(video);
                tick.start();
            public function metadata(info:Object):void
                 duration = info.duration;
                 print("Metadata: duration=" + info.duration + " width=" + info.width + " height=" + info.height + " framerate=" + info.framerate);
              private function checkLoad(e:TimerEvent):void
                   var seconds:Number = (flash.utils.getTimer() - startTime) / 1000
                   if(stream.bytesLoaded == stream.bytesTotal && stream.bytesTotal != 0 && seconds > 3)
                        skipCount = 0;
                        print("Video 100% Loaded. Performing first seek after 3 seconds of video playing.");
                        tick.stop();
                        startTime = flash.utils.getTimer();
                        stream.seek(duration - 2);
              private function seekDone():void
                   if(skipCount == 0)
                        //just skipped to the end of the video the first time
                        //jump back to the begining and do it again.
                        startTime = flash.utils.getTimer();
                        print("Seeking back to the begining to time the second seek to the end.")
                        stream.seek(0);
                   }else if(skipCount == 1)
                        startTime = flash.utils.getTimer();
                        print("Second seek to the end. ")
                        stream.seek(duration - 2);
                   skipCount++;
              private function print(... args):void
                   trace(args)
                   txt.appendText(String(args.join(" ")) + "\n\n");
    The above is a simple test I put together. Use a large FLV for the testing. Remember, the first seek to the end will be the longest and you may not get the same results unless you restart or use another FLV.

  • Has anybody found a fix to The document could not be printed and There were no pages selected to print error

    Has anybody found a fix to "The document could not be printed" and "There were no pages selected to print" error?
    I am using a Mac and I'm running the latest versions of OS X 10.6.8 and Adobe 11.0.10 but I'm unable to print.  I need REAL HELP not a suggestion or a get around!  and NO print as an image doesn't work, nor do I see that as a fix!
    Please help!

    Hello PW, I am having this problem and all suggestions haven't worked yet. Where is the Preferences|Documents you are referring to? I am on a PC and using Windows.
    EDIT: I found it and did, but still not working.

  • What may be the reasons for my iphone switching off all of a sudden and how do i prevent it?

    what may be the reasons for my iphone switching off all of a sudden and how do i prevent it?

    With the home page on display, in the menus select View, then Zoom and then Reset
    For details on the zoom features see [[page zoom]] and [[text zoom]]

  • 2nd Gen Time Capsule - will not power up - just stopped working all of a sudden - I have tried other power outlets - I have tried pressing the reset button - no light

    2nd Gen Time Capsule - will not power up - just stopped working all of a sudden - I have tried other power outlets - I have tried pressing the reset button - no light

    The power supply is shot. But that it lasted even this long is the wonder.. not that it died.
    The TC runs too hot..
    Look on ebay for "Time Capsule power supply"
    You can get a replacement and fix it although the economics are not so good.. it is probably time for a new TC.
    If you can DIY it is really only a few dollars worth of capacitors that go bad.
    See https://sites.google.com/site/lapastenague/a-deconstruction-of-routers-and-modem s/apple-time-capsule-repair
    For a bunch of alternatives.

  • Using a first gen iPad.  Video and audio from internet sites simply stopped working all of a sudden.  Any suggestions?  Thanks.

    Using a first gen iPad.  Video and audio from internet sites simply stopped working all of a sudden.  Any suggestions?  Thanks.

    1)access the router web ui
    2)go to the Mac Address Clone subtab , enable it and click "Clone" . Save the settings
    3)do a power cycle
    4)check whether the router gets an internet ip add now ..

  • HT1338 I have a mac mini with an intel i7 quad processor running on Mac OS 10.9. My audio output stopped working all of a sudden, even though the volume is on maximum and un-muted. How do Iget it to start working?

    I just purchased a mac mini with an intel i7 quad processor running on mac OS 10.9.
    While listening to a music video on You Tube the audio stopped working.
    How do I get it to work?

    See: https://discussions.apple.com/message/25486455#25486455

  • Apple has found the fix for the whine.

    After sending my MacBook Pro of to repair and getting it back without the whine being gone I have come to the conclusion that they need to include ear plugs with every MacBook Pro they sell. This is the first Apple product I have had any issues with (5th apple in 2 years) in addition this is my first dealings with Apple Care and let me say it was the WORST experience I have ever had. I guess I hold Apple to a higher standard then Apple itself does.
    /b

    After sending my MacBook Pro of to repair and getting
    it back without the whine being gone I have come to
    the conclusion that they need to include ear plugs
    with every MacBook Pro they sell. This is the first
    Apple product I have had any issues with (5th apple
    in 2 years) in addition this is my first dealings
    with Apple Care and let me say it was the WORST
    experience I have ever had. I guess I hold Apple to
    a higher standard then Apple itself does.
    /b
    What noise do you have ? The screen induced noise or the CPU noise ?
    I only have the display related noise (inverter). I demanded that it be replaced as I found ou it is NOT part of the logic board. I said I would pay for the cost of the replacement and did not want to get the "Unable to reproduce compalint" response.
    The Apple Specialist said that would not necessary, he would request the replacement.
    He did indicate that the engineers said it "normal" I said no way.
    I have a box on the way.
    When and if they repair it I will note the part number on the Service Details report to all.
    Crossing Fingers! No fix and it is E-Bay time.
    William

  • Has anyone found a fix for the problems with using Adobe PSE 11 with OS X 10.10.1?

    My Photoshop Elements 11 not working well with the iMac after updating to Yosemite.  I cannot print from PSE nor cut and paste.  The Adobe plug in fix does not plug in.

    Hello PW, I am having this problem and all suggestions haven't worked yet. Where is the Preferences|Documents you are referring to? I am on a PC and using Windows.
    EDIT: I found it and did, but still not working.

  • TS1424 Has anybody received the error message when trying to get to the iTunes store. Error 10054. Please try again later

    Has anyone received the message Error 10054. PLease try again later when trying to connect to the iTunes store?

    Hi Tanya ..
    See:  Specific Conditions & Alert Messages >  iTunes: Advanced iTunes Store troubleshooting

  • Think I found the fix for no downloading windows updates for HP Printers problem.

    I thought I'd post a new topic here. I've figured out whats gone wrong with the windows 10 updates. Someone wrote about it in his thread (I forget the thread url though), and it worked. I've done this on 2 PC's.. W7 to W10, and W8.1 to W10. What you have to do is; 1. Go to device manager. Look down the list for Printers. Open up that arrow and see if you're printer is listed there? If it's listed as Unknown Device then; 2. Go to the HP website and find the driver for your printer on there. Download it through the website / program as though you was installing your printer for the first time i.e. it should check the connection of you're printer during this process. 3. Now you have your printer driver re-installed. Go back to Device manager and check that it now appears listed by the correct name in the Printer section. 3a. If there are other unknown devices besides your printer listed, you need to delete the other unknown devices, leaving only your printer listed. 4. Go back to windows update and retry a windows update (it asks you to install the old failed ones first, so try it, expecting failure, then press the retry button. 5. If all went well, it shouldn't list anymore updates, and you're done!

    LuisFL29 wrote:
    Well, I was still showing them after 10.5.2, I'm not sure if this was the case for everybody. I wonder if anyone out there still see the warnings. Ahh, sorry I meant warning not errors.
    The only one I had was for the remote desktop and that disappeared with 10.5.2
    I also installed 10.5.1 combo update and that took out all but the remote desktop warning.
    If you have others, then be careful how you fix them.
    Most of us have gotten rid of all of them using the combo updates.
    Now, if only it wouldn't take 5 minutes to verify permissions ..
    See if you can come up with a fix for that

  • The sound for my iMac stopped working

    Ive been watching music videos, first using firefox, when the sound stopped working. So I gave it a rest, but to no avail. Then I found that safari didn't have a problem, and started watching with it and after a few clips, nothing no sound??

    Hello dennis jfromdouglas,
    After reviewing your post, it sounds like sounds stops working in a few applications. Does sound qwork not on the internet? I would recommend that you read these articles, they may be helpful in troubleshooting your issue.
    Some applications may output no audio, but system alert sounds and iTunes playback can be heard - Apple Support
    OS X Yosemite: If you can’t hear sound from your speakers
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • I can no longer connect to the internet on my laptop using my personal hotspot. Stopped working all of a sudden. Any tips as to why?

    I used to always use my personal hotspot and connect to the internet on my laptop. Then one day it stopped working. I updated my phone so my hotspot password changed, so I changed that in the properties. It now says it's connected to my iPhone and there's internet access, but when I try to do anything it says not connected.

    It shows a connection. When using wifi n USB. I don't know how to connect using Bluetooth seeing what it says to do is totally different from my computer.
    I do have a connection but I can only connect to some sites, I tried YouTube n nfl.com n they both worked but google, hotmail n Facebook said couldn't connect.
    I tried using safari on my computer n like explorer I could only connect to a few different websites.

Maybe you are looking for

  • Error creating job into trigger using DBMS_SCHEDULER.

    Hi, I am trying to create job using dbms_scheduler package. I have one trigger on insert event on one table. I am creating job using following syntax. CREATE OR REPLACE TRIGGER TRG_BI_JOB_CONFIG BEFORE INSERT ON JOB_CONFIG FOR EACH ROW DECLARE BEGIN

  • MacBook Pro to Monitor connection

    I have a 2011 MacBook Pro and an HP 2511x monitor. I have been able to use them connecting with an HDMI and adapter or a DVI monitor cable and adapter, but when they both go to sleep the monitor will not connect again. Restarting and changing the inp

  • DVD Resolution

    After completing a slide show and burning a DVD, on reply of the new DVD,  the photos are of poor quality and out of focus.  What do I need to do to have sharp photos burned to the DVD?  The photos were sharp, high resolution jPeg images when importe

  • Which driver and find out which version i currently have(driv

    I recently bought F.E.A.R. for the pc and are having trouble with the sound in the game i.e. there is none. It was recommended to me to update my sound drivers, i don't wish to have a load of unnecessary software on my pc all i want it the drivers to

  • JVM crashed when attempting to load native binaries on SUSE

    Hello! We have a java application that calls at some point C++ code in form of specific OS binaries. We tested for RedHat and SUSE - for the first OS it worked fine but for SUSE I got: {color:#ff0000}# # A fatal error has been detected by the Java Ru