Problem with drivers/ sound stopping / vista32bit/ xfi fatal

i have an xfi fatality, installed the latest drivers and since then, sound will stop at random times usually happens when i am pausing something on media player (videos) and it might come back when i reopen the video
sometimes i will watch a video on firefox, and i might not get any sounds at all (sounds completely stop, not only per application)
sound will come back, on its own, at random times. some times i need to restart
i uninstalled the audio console, uninstalled the driver from system, and installed the previous version and i am still getting this problem (i wasnt getting it before)
any solution
thanks a lot.

Is there anybody with any idea what the problem might be?

Similar Messages

  • Problems with the sound in Windows

    Hey everybody, hoping someone can help.
    I'm working with Cubase in Windows with my mac and i have problems with the sound, but not all the time.
    I have an M-Audio card connected and while i'm playing something in Cubase, the sound makes a digital distortion just for 10 seconds, and then again sounds perfect and then again comes back the digital crash, somekind of loop. So i was thinking that maybe was a problem with the drivers of my M-Audio card, but then i was playing a song in Winnamp with the built-in speakers and happens exactly the same, so i think it's a problem with the Mac drivers for Windows, i use the same audio card in MacOsX and i don't have problems
    I have tried various display settings. I have no idea if this is just me or a common problem.
    Thanks in advance...
    MacBook Pro 2.16 GHz Intel Core 2 Duo   Mac OS X (10.4.8)  

    This is not a BOOT CAMP Problem. It is a WINDOWS XP Problem. Either he didn't install the drivers for the sound card. (Which is Realtek High Definition Audio) or the Windows XP audio driver (WNMM) is corrupt.
    Go to Device manager and under Sound, Video and Game controllers you should see a little yellow question mark under the WNMM driver. If this is the case he needs to uninstall the driver and reboot. It will then reinstall itself and should work properly after that.
    MAC PRO   Mac OS X (10.4.9)  

  • Problem with the sound card

    Hello everyone,
    So here for 2-3 days, the sound of my Macbook starts beuguer (buy in October 2014). So when starting the mac when I listen to music all goes well, I can adjust the sound using the keys on my keyboard, and when I ca defois support appears to me that the sound is cut off, I think it 'is a problem with the sound card. But as soon as I plug in headphones, not set I have to go through the system preferences. By unplugging the problem remains the same on his fate, but impossible to resolve through the keyboard. I tried to put the volume icon on the top bar but even by setting it does not work here. The problem resolves itself after 30 minutes-1 hour. It's very annoying. Thank you in advance for your answers.

    Hi, Dolve
    This could be either hardware or software, so let's start with trying to get all drivers and software up to date. This page has updates for all your system. I would recommend getting at least your latest audio driver and BIOS downloaded. Following the installation, try using your sound again and see if the issue still persists.
    Best,
    Adam
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution!" This will help the rest of the community with similar issues identify the verified solution and benefit from it.

  • PROBLEM WITH MY SOUND CARD .......H.P IS REALLY NOT GOOD.....!

    I PURCHASE HP PAVILION DM4 2000 SX ONLY 2 WEEK AGO AND I HAVE PROBLEM WITH MY SOUND CARD WHEN I REMOVE HAND FREE THIS MACHINE QUITE AND AGAIN PLAY VIDEO SONG ETC THAN COME SOUND ....!
    ANY 1 HAVE IDEA WHAT PROB WITH THIS....!

    Did you download and install the latest Realtek Audio drivers from the Realtek site?
    http://www.realtek.com.tw/downloads/downloadsView.​aspx?Langid=1&PNid=24&PFid=24&Level=4&Conn=3&DownT​...
    Accept the agreement. Download and install the first or second driver on the list depending on whether you installed W7 32 or 64 bit.
    If that doesn't work, I don't have any other suggestions for you to try.
    Paul

  • Problems with a simple stop watch program

    I would appreciate help sorting out a problem with a simple stop watch program. The problem is that it throws up inappropriate values. For example, the first time I ran it today it showed the best time at 19 seconds before the actual time had reached 2 seconds. I restarted the program and it ran correctly until about the thirtieth time I started it again when it was going okay until the display suddenly changed to something like '-50:31:30:50-'. I don't have screenshot because I had twenty thirteen year olds suddenly yelling at me that it was wrong. I clicked 'Stop' and then 'Start' again and it ran correctly.
    I have posted the whole code (minus the GUI section) because I want you to see that the program is very, very simple. I can't see where it could go wrong. I would appreciate any hints.
    public class StopWatch extends javax.swing.JFrame implements Runnable {
        int startTime, stopTime, totalTime, bestTime;
        private volatile Thread myThread = null;
        /** Creates new form StopWatch */
        public StopWatch() {
         startTime = 0;
         stopTime = 0;
         totalTime = 0;
         bestTime = 0;
         initComponents();
        public void run() {
         Thread thisThread = Thread.currentThread();
         while(myThread == thisThread) {
             try {
              Thread.sleep(100);
              getEnd();
             } catch (InterruptedException e) {}
        public void start() {
         if(myThread == null) {
             myThread = new Thread(this);
             myThread.start();
        public void getStart() {
         Calendar now = Calendar.getInstance();
         startTime = (now.get(Calendar.MINUTE) * 60) + now.get(Calendar.SECOND);
        public void getEnd() {
         Calendar now1 = Calendar.getInstance();
         stopTime = (now1.get(Calendar.MINUTE) * 60) + now1.get(Calendar.SECOND);
         totalTime = stopTime - startTime;
         setLabel();
         if(bestTime < totalTime) bestTime = totalTime;
        public void setLabel() {
         if((totalTime % 60) < 10) {
             jLabel1.setText(""+totalTime/60+ ":0"+(totalTime % 60));
         } else {
             jLabel1.setText(""+totalTime/60 + ":"+(totalTime % 60));
         if((bestTime % 60) < 10) {
             jLabel3.setText(""+bestTime/60+ ":0"+(bestTime % 60));
         } else {
             jLabel3.setText(""+bestTime/60 + ":"+(bestTime % 60));
        private void ButtonClicked(java.awt.event.ActionEvent evt) {                              
         JButton temp = (JButton) evt.getSource();
         if(temp.equals(jButton1)) {
             start();
             getStart();
         if(temp.equals(jButton2)) {
             getEnd();
             myThread = null;
         * @param args the command line arguments
        public static void main(String args[]) {
         java.awt.EventQueue.invokeLater(new Runnable() {
             public void run() {
              new StopWatch().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JPanel jPanel1;
        // End of variables declaration                  
    }

    Although I appreciate this information, it still doesn't actually solve the problem. I can't see an error in the logic (or the code). The fact that the formatting works most of the time suggests that the problem does not lie there. As well, I use the same basic code for other time related displays e.g. countdown timers where the user sets a maximum time and the computer stops when zero is reached. I haven't had an error is these programs.
    For me, it is such a simple program and the room for errors seem small. I am guessing that I have misunderstood something about dates, but I obviously don't know.
    Again, thank you for taking the time to look at the problem and post a reply.

  • Having problem with Ipod Sound

    I am having a huge problem with the sound for my Ipod. I was recently at a concert and using my car audio conversion in both my Ipod and my girlfriends, when I unplugged it from hers to mine I lost all sound to my Ipod when I plug in my headphones now or when I put the receiver back into the bottom. I have reset and restored it and run the diagnostics check to see if it could be the USB or the headphone Jack. Both are in working order but I am still not getting any sound to my Ipod. Can anyone help me with this problem? My Ipod is my life staple for my morning commuet.

    You can try to following to rule out/fix a software problem:
    - Reset. Nothing will be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory defaults/new iPod
    If still a problem you very likely have a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • I am having problem with my sound, after i updated to ios 6, apple please help

    i am having problem with my sound, after i updated to ios 6, i can hear music with headphone only, apple please help

    Try going into your settings and 'reset all settings'
    You will need to retweak your device but it's been said to help with sound issues.

  • After upgrade to ios7, few time i am having problem with my sound/speaker with terroble sound effect like machine or something.but after restart it will be fine.but how this thing can be fix? Because i never had this problem before upgrade to ios7.tq

    After upgrade to ios7, few time i am having problem with my sound/speaker with terroble sound effect like machine or something.but after restart it will be fine.but how this thing can be fix? Because i never had this problem before upgrade to ios7.tq

    Try going into your settings and 'reset all settings'
    You will need to retweak your device but it's been said to help with sound issues.

  • HT1657 Hi, I rented a movie off iTunes but the there is no sound. I've bought and rented previous movies and I've never had any problems with the sound before. Is this some kind of glitch? How can I get my money back?

    Hi, I rented a movie off iTunes but the there is no sound. I've bought and rented previous movies and I've never had any problems with the sound before. Is this some kind of glitch? How can I get my money back?

    Hey grossa2,
    First, here is a way to report an issue with your purchase:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/HT1933
    Then, I'd go through this article, which helps troubleshoot a lack of audio playback in iTunes:
    iTunes and QuickTime for Windows: Audio does not play or plays incorrectly
    http://support.apple.com/kb/TS1362
    Take care,
    Delgadoh

  • I have a problem with the sound and voice communication programs amplifier

    I have a problem with the sound and voice communication programs amplifier

    Define "voice of the device." 
    Are you referring to the ear speaker or main speaker?  Phone calls?  Rings/alerts? Music?
    What troublshooting steps did you take?

  • Problems with microphone sound in iChat

    Hello Ralph,
    (I already thought I sent this but I didn't see it as a new topic, so I am trying again). I'm new to this discussion thing, it's my first time so I hope I've submitted this correctly.
    I have similar, but extended and more complicated problems with "microphone sound in iChat". (Sorry, this email is a bit lenghty becuase I have already done a lot of my homework on trouble shooting this.)
    I began by using iChat with a high impedance microphone (from an old 1970'scassette player) PLUGGED DIERCTLY IN THE THE MICROPHONE INPUT on the back of my G4 tower. (I DO NOT have a video camera). My Mom in Canada can hear me okay on it, only if I "eat" the microphone. (My Mom DOES have a video camera).
    SO I BOUGHT AN iMic. I also bought a new condenser mic to go with my new iMic. I plugged iMic in and adjusted the sound preferences selection. I switched the iMic to "Mic". It did not work. The old cassette mic did not work at all with iMic either. My Mom could not hear me, and my "VU METER bar levels" on my iChat were not registering. (If I plug the condenser mic directly into the tower, Mom can hear me only if I "eat" the condenser microphone).
    Next, with iMic, I wanted to try my Shure 58 microphone instead. My friend (who is an audio tech) made me a 1/8" to XLR (sheilded) cable. I made sure I had adjusted the sound preferences and switched the iMic to "Mic". The Shure 58 did not work with iMic. It also did not work plugging directly into the tower.
    Next, with iMic, I wanted to try my "Plantronics telephone headset". My friend (the audio tech) then made me a 1/8"male to 1/8"mini feamle (sheilded) cable. My headset did not work with iMic. It also did not work plugging directly into the tower.
    My friend, the audio tech, then made me second cable 1/8"male to 1/8"female (sheilded) cable. This cable I had him make 50 feet long so I could move to other areas in my home while audio chatting - so I don't have to be trapped in my office while talking. We ran the cable from iMic to the Old cassette mic and the new condenser mic. They did not work with iMic.
    We also tried plugging the new 50ft cable directly into the back of the G4 Tower and it worked with the old cassette mic and the new condenser mic, BUT the volume was reduced and there was a loud baseball game being broadcast through the cable - according to my Mom. I could not hear anything from my end - not my own voice and not the baseball game! IS THERE A WAY FOR ME TO MONITOR (actually hear) THE SOUND THAT SHOULD BE COMING THROUGH THE MIC?
    I have tried to trouble shoot these issues on line, but can't seem to find the right solutions. In one of your discussions I read that you suggested to select the iChat preference for Video and select microphone. I CANNOT SEE THE FULL WINDOW UNDER iChat Video Preferences!!!! All I can see is the top half of a large empty box that says "There is no camera attached to this computer". (That's because I have no camera, but I DO HAVE a microphone).
    I also found some support about adjusting microphone levels using iMovie. I do not have iMovie on my Mac.
    Yes, I have already adjusted the AUDIO MIDI SETUP settings.
    My audio tech friend and I are both baffled. iMic is useless to me so far - perhaps you can help to get me up and chatting properly? Do I really need iMovie and/or a video camera to fix this???
    BY THE WAY: When I plug my external speakers into iMic and select iMic in preferences for output, my speakers and sound is very inferior to the using the speaker terminal on my tower. i Mic is supposed to better???????
    Thanking you for your help in advance,
    Marlene
    (Please could you, would you, email a copy of your answer to me at [email protected])
    G4, 450Mhz   Mac OS X (10.4.6)  
    G4, 450Mhz   Mac OS X (10.4.6)  
    G4, 450Mhz   Mac OS X (10.4.6)  

    Hi Ralph,
    A funny thing just happened...
    The iChat prefernce window for "VIDEO" finally opened (!!) all the way, so for the FIRST TIME EVER and I was able to see the microphone setting at the bottom of the window. (Because I have NO CAMERA, the window would never fully open before during the 100 or so times I tried to get it to open before. This must've been a fluke because now it won't fully open again).
    While it was open I set the microphone setting to iMic, plugged my condenser mic into iMic and IT WORKED. Then I tried the long (baseball game) extension cord in the iMic (attached to the condenser mic) and IT WORKED TOO - with NO BASEBALL GAME!
    I still have to have the condenser mic right up to my mouth, which shouldn't be - but considering I have spent a few weeks trying to troubleshoot this, "eating the mic" is only a minor annoyance at this point.
    I just plugged my speakers into iMic and THEY WORK GREAT!
    SO ALL MY PROBLEMS WERE BECAUSE: I could not set the microphone under Video in iChat preferences because the VIDEO PREFERENCE WINDOW DOES NOT FULLY OPEN WITHOUT A CAMERA ATTACHED. If it hadn't opened by fluke my iMic would still not be working.
    I guess I'm all set now. Unless you have a suggestion why the condenser mic isn't picking up my voice from other than right by my mouth? It should be able to be a foot or two away at least.
    Thanks Ralph,
    Marlene
    (By the way, I never did trash the com.apple.ichat.plist)
    G4, 450Mhz   Mac OS X (10.4.6)  

  • Using 10.9.2 has anyone had problems with mail sounds not sounding even when they have been selected in mail preferences?, Using 10.9.2 has anyone had problems with mail sounds not sounding even when they have been selected in mail preferences?

    Using 10.9.2 has anyone had problems with mail sounds not sounding even when they have been selected in mail preferences?

    Your download or install of the update may have been corrupt. Visit the Mac App Store and re-download the update or visit http://support.apple.com/kb/DL1726 and download the 10.9.2 update combo and re-install.
    If that fails to solve the problem please post back and post a EtreCheck Report which you can locate at:
    http://www.etresoft.com/etrecheck

  • TS3274 i have problem with the sound not working

    i have problem with the sounds not working

    Have you got notifications muted ? Only notifications (including games) get muted, so the iPod/Music and Videos apps, and headphones, still get sound.
    Depending on what you've got Settings > General > Use Side Switch To set to (mute or rotation lock), then you can mute notifications by the switch on the right hand side of the iPad, or via the taskbar : double-click the home button; slide from the left; and it's the icon far left; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085

  • My sleep/wake button is now not working and than I faced problems with my sound, now my iphone speakers aren't working? What shall I do?

    My sleep/wake button is now not working and than I faced problems with my sound, now my iphone speakers aren't working? What shall I do?

    The problem isn't solved after the restore, shall I bring my phone to the AppStore? Will they give me a new one? Or I should pay for that. Warranty is until December 2013;)

  • Nokia 5800 problem with drivers windows 7 32-bit

    Hi, i have problem with drivers for 5800 in windows 7, all drivers except modem and cdc comms work, how can i update drivers for that, i have installed lates nokia suite 3.3 and newest cable drivers, i try drivers 6.x but then my 5800 is not recognized, what is the solution?

    Hi:
    You can use the W7 x64 drivers from the 250 G2 support page.  They have the 32 bit driver files too.
    That would be for all but the graphics if your G2 has a Pentium or Celeron processor.
    If your notebook has one of those processors, then download, unzip and run the graphics driver setup exe file from the link below.
    https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=23889

Maybe you are looking for

  • Header&Footer in FCC

    how to identify Header,Footer in sending side of File adapter

  • Transport Import History save to spread sheet

    Hi, I have successfully saved the Transport import history as a spreadsheet. i.e. System > List > save > local file > Spreadsheet However, the Return code column is blank? Probably becuase the image did not convert to text? Does anyone maybe know wha

  • Why is every time I open something in safari it will always opening a new tab?

    Why is every time I open something in safari it will always opening a new tab?

  • QT Movie is 1 minute - Motion thinks it's 12 seconds

    I created a 1 minute QT movie with Motion. I'm importing it into Motion now and Motion thinks it's 12 seconds long. It only plays 12 seconds of it in the timeline. The file manager's info in Motion says 12 seconds. Open it up in QT Pro and QT Pro say

  • A few important topics

    I buaght an iPad since 4 days ago and I already have an iPhone 4 and an iPod 3rd gen. My problems are: 1- I can't create new folder in my email account. 2- when I browse Facebook through safari I can't crop the picture to make it a profile picture, o