Sound cracking and other (Pulseaudio) problems

I have pulseaudio installed and sound is all crackling in some aplications. In ekiga when I try echo test when instructions are read sound is good but when it starts actual test it becomes unbarable. I cannot recall if these problems were present before pulseaudio installation.
In open arena the sound is cracking from the start but its still berable. In Windows there arent any problems with this. I have created openaltc as stated in Pulse howto and there is no changes with either options (esd or alsa)
Sounds in movies (gnome-mplayer) and firefox (flash) are great.
BTW I cannot test mic in gnome sound recorder cause of the two errors: Could not negotiate format and than Could not get/set settings from/on resourse
Last edited by christooss (2008-12-02 13:37:46)

LTSmash wrote:
christooss wrote:
I have pulseaudio installed and sound is all crackling in some aplications. In ekiga when I try echo test when instructions are read sound is good but when it starts actual test it becomes unbarable. I cannot recall if these problems were present before pulseaudio installation.
In open arena the sound is cracking from the start but its still berable. In Windows there arent any problems with this. I have created openaltc as stated in Pulse howto and there is no changes with either options (esd or alsa)
Sounds in movies (gnome-mplayer) and firefox (flash) are great.
BTW I cannot test mic in gnome sound recorder cause of the two errors: Could not negotiate format and than Could not get/set settings from/on resourse
Why don't you try to install OSSv4? It has WAY better sound than ALSA, and uses lot less CPU:
http://wiki.archlinux.org/index.php/OSS
Ekiga doesn't work with OSSv4.

Similar Messages

  • "No Sound Blaster card detected.." and other driver problem SOLUTION

    Hi. I promised to myself that I wont give up and I looked for a solution to all SB Li've! 5. OEM (0220 and others) problem not detecting the card by the new drivers ! AND HERE IT IS !! I tested it and works almost PERFECTLY !!! Also for peaple who HAVE the original drivers but have problem with EAX in such games like GTA San Andreas THIS IS THE SOLUTION FOR YOU !! I hope creative doesn't mind me posting this:http://kxproject.lugosoft.com/Enter here and download the drivers !! TRY IT !! Any questions please write ! Sory but i think this is important inough to start a new topic.. Hell yeah now I can play San Andreas even when it's raining (in game ofkozz :P) ... Oh and PS. For Win XP users read this first : http://kxproject.lugosoft.com/xp.php?language=en I used the second method (on the bottom of the page) Renaming the files and installing normally. You will be asked to insert the winXP CD couse it wont be able to find some files but you can just SEARCH for them on the system and you can find them (In c:\windows\system32 and system32\drivers). Then after reboot you go to Device Manager and update drivers for Sound Blaster Li've Series (or Multimedia audio device) mark "Don't look for drivers.." And choose KX from the list. Thats all I thinkPs 2 - set the mixer for your card couse basically it's set for 5. dolby surround. If you have 2 Speakers or headphones do this: run the KX mixer (tray) and click Speaker setting (the icon with "?") set it to 2. and in Surround set COPY. Then mark the "Use subwoofer output" and "Use bass redirection". Everything should work well. There I think I helped :PMessage Edited by Cubix on 07-09-2005 08:26 PM

    Gee, I think it's catching on. I was VERY dissapointed when I wasted my money on the SB Li've! 24bit PCI. That card apparently isn't a Li've! card, it's got a different chipset. It performs horribly with games and there are no other drivers to use for it. Not even the Audigy 2 hack and the kX audo project will work with it. This is like the **bleep** child of all Sound Blasters. No support, no reasonable performance, and horrible drivers. I just joined this forum today and this is the 5th topic related to SB Li've! 24 bit issues that I've seen yet. And what does creative take into initiati've about it's Nothing. They ignore us and expect us to pay 20+ dollars US on an Audigy 2 ZS.Message Edited by BoRaiChu on -03-2005 07:33 PM

  • FocusListener and other listener problem

    I don't know why i can't catch Deactivated and LostFocus and other relevant event.
    I try to make a simplepanel as Popup because Jpopupmenu have some problem.
    please take a look.
    regards thanks
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.ComponentEvent;
    import java.awt.event.ComponentListener;
    import java.awt.event.FocusEvent;
    import java.awt.event.FocusListener;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowFocusListener;
    import java.awt.event.WindowListener;
    import javax.swing.JApplet;
    import javax.swing.JButton;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.JWindow;
    * Created on Jun 1, 2006
    * TODO To change the template for this generated file go to
    * Window - Preferences - Java - Code Style - Code Templates
    * @author varamthanapon
    * TODO To change the template for this generated type comment go to Window -
    * Preferences - Java - Code Style - Code Templates
    public class SampleMain extends JApplet implements ActionListener,
              WindowFocusListener, ComponentListener, WindowListener {
         private JButton m_objJButton = null;
         private PopupPanel m_objPopupPanel = null;
         public SampleMain() {
              this.getContentPane().setLayout(new BorderLayout());
              JPanel mainPanel = new JPanel();
              mainPanel.setSize(500, 500);
              mainPanel.setLocation(500, 500);
              mainPanel.add(new JLabel("XXX"), BorderLayout.NORTH);
              this.getContentPane().add(mainPanel);
              JButton xbutton = new JButton("xxx");
              this.getContentPane().add(xbutton, BorderLayout.WEST);
              xbutton.addActionListener(this);
              m_objPopupPanel = new PopupPanel(this);
              this.addFocusListener(m_objPopupPanel);
              this.show();
         public class PopupPanel extends JWindow implements FocusListener {
              public PopupPanel(SampleMain obj) {
                   this.addWindowFocusListener(obj);
                   this.addComponentListener(obj);
                   this.addWindowListener(obj);
              * (non-Javadoc)
              * @see java.awt.event.FocusListener#focusGained(java.awt.event.FocusEvent)
              public void focusGained(FocusEvent e) {
                   // TODO Auto-generated method stub
                   JOptionPane.showMessageDialog(new JPanel(), "XXX");
              * (non-Javadoc)
              * @see java.awt.event.FocusListener#focusLost(java.awt.event.FocusEvent)
              public void focusLost(FocusEvent e) {
                   // TODO Auto-generated method stub
                   JOptionPane.showMessageDialog(new JPanel(), "XXX");
         * (non-Javadoc)
         * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
         public void actionPerformed(ActionEvent e) {
              // TODO Auto-generated method stub
              m_objPopupPanel.setSize(200, 50);
              m_objPopupPanel.setLocation(200, 50);
              m_objPopupPanel.show();
         * (non-Javadoc)
         * @see java.awt.event.WindowFocusListener#windowGainedFocus(java.awt.event.WindowEvent)
         public void windowGainedFocus(WindowEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "windowGainedFocus");
         * (non-Javadoc)
         * @see java.awt.event.WindowFocusListener#windowLostFocus(java.awt.event.WindowEvent)
         public void windowLostFocus(WindowEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "windowLostFocus");
         * (non-Javadoc)
         * @see java.awt.event.ComponentListener#componentResized(java.awt.event.ComponentEvent)
         public void componentResized(ComponentEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "componentResized");
         * (non-Javadoc)
         * @see java.awt.event.ComponentListener#componentMoved(java.awt.event.ComponentEvent)
         public void componentMoved(ComponentEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "componentMoved");
         * (non-Javadoc)
         * @see java.awt.event.ComponentListener#componentShown(java.awt.event.ComponentEvent)
         public void componentShown(ComponentEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "componentShown");
         * (non-Javadoc)
         * @see java.awt.event.ComponentListener#componentHidden(java.awt.event.ComponentEvent)
         public void componentHidden(ComponentEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "componentHidden");
         * (non-Javadoc)
         * @see java.awt.event.WindowListener#windowOpened(java.awt.event.WindowEvent)
         public void windowOpened(WindowEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "windowOpened");
         * (non-Javadoc)
         * @see java.awt.event.WindowListener#windowClosing(java.awt.event.WindowEvent)
         public void windowClosing(WindowEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "windowClosing");
         * (non-Javadoc)
         * @see java.awt.event.WindowListener#windowClosed(java.awt.event.WindowEvent)
         public void windowClosed(WindowEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "windowClosed");
         * (non-Javadoc)
         * @see java.awt.event.WindowListener#windowIconified(java.awt.event.WindowEvent)
         public void windowIconified(WindowEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "windowIconified");
         * (non-Javadoc)
         * @see java.awt.event.WindowListener#windowDeiconified(java.awt.event.WindowEvent)
         public void windowDeiconified(WindowEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "windowDeiconified");
         * (non-Javadoc)
         * @see java.awt.event.WindowListener#windowActivated(java.awt.event.WindowEvent)
         public void windowActivated(WindowEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "windowActivated");
         * (non-Javadoc)
         * @see java.awt.event.WindowListener#windowDeactivated(java.awt.event.WindowEvent)
         public void windowDeactivated(WindowEvent e) {
              // TODO Auto-generated method stub
              JOptionPane.showMessageDialog(new JPanel(), "windowDeactivated");
    }

    I believe it's because Windows which don't have a visible parent frame are, by default, not focusable. Therefore they're never activated or focused.
    For the window to become focusable it needs a visible parent. Have a look at Window.isFocusableWindow method's Javadoc for information about how this works.
    There's also no point trying to force the window to be focusable using setFocusableWindowState - it still won't work without the visible parent frame.
    What's the problem with JPopupMenu? It seems unlikely that you'll write something better than that.
    Alternatively, you could try using an undecorated JDialog. Personally, I'd try resolving your differences with JPopupMenu!
    Hope this helps.

  • Having issue recompiling alsa, missing sound.h and other headers

    Is there a way I can pacman in these headers into /usr/include/sound and other header files?
    I'd like to recompile alas to hopefully fix my sound issues,

    Yeah I can't seem to download them via packman and my mirror
    Ist is intact. Is that the package name?

  • Crashes, sound loss, and other problems

    Hello,
    I have been having some serious problems over the past several months. In the past it was fairly manageable, but recently things have been getting worse.
    I have a 12-inch PowerBook G4, I bought it at the McGill bookstore in October 2004. The first problem was the apparently random crashes that Mac OS X (v.10.4.8) would experience from time to time. It was fairly infrequent at first so it didn't bother me too much (and I thought it was just some sort of glitch). But it persisted and came to be expected.
    What would happen is that my screen would darken and center box would appear telling me, "You need to restart your computer. Hold down the Power button for several seconds or press the Restart button." (it would display this message in English, French, German, and Japanese for my convenience). After I restart the computer I get the message, "The computer was restarted after Mac OS X quit unexpectedly". At first it seemed to be linked to time; after a while it would just crash, sometimes after an hour or so, sometimes after as little as five minutes. (I fear as I write this that I will have to start over). More recently I've come to associate the crashes with movement of the computer; perhaps the battery (which is pretty much dead after so much use) is affecting the performance, I don't know.
    The next problem, which coincided with the crashes, was my clock being reset. I assumed this was directly associated with the spontaneous shutdown of the computer, yet though the crashes continued, the clock was not always reset (just about a third of the time). This was a pretty frustrating inconvenience given the frequency of the crashes at the beginning.
    The major problem that prompted me to take action was the lose of sound. One day, about a month ago now, my sound suddenly stopped working. At first I thought it was a hardware problem, but then I noticed the sound was still working with some things and just not others. For example, the sound increase/decrease indicator (the 'pop' sound when turning up or down the sound) stopped working, yet the startup sound still worked. I've found that Realplayer, MPlayer X 2, and Windows Media Player work fine but iTunes, VLC, and Quicktime don't. Most of the applications simply don't make sound but when I try to video in VLC I get the following error: "auhal: we cannot find our HAL component" or "auhal: audio-device var does not exist. device probe failed."
    Other minor errors I have come across include inability to detect the Airport card (remedied upon restarting the computer) and occasional seizing up of the keyboard (the letter keys, exclusively, were unresponsive for sometime before working again suddenly without need of restart).
    I've run diagnostic tools such as Disk Utility and the 'fsck' command in single-user mode, but nothing has been detected. It consistently comes up saying that everything is alright.
    I have backed-up all important files and programs (with the exception of my Firefox bookmarks, do you know how I can save those?) and am prepared to do whatever it takes to bring my computer back to working order. I need my computer for schoolwork and assignments so if I can fix it myself in anyway... I would prefer to avoid lengthly repairs if possible.
    Please let me know what my options are, and/or possible things I can do to repair these problems. This whole affair is, unsurprisingly, driving me crazy.
    One last thing, upon launching Microsoft Word, I get the following pop-up:
    Application Launch Failure
    The application "Word" could not be launched because of a shared library error: "3<Microsoft Word><Microsoft Word><MicrosoftLSLibZ>"
    I do not know whether this is linked to my other problems or not. This too, is something that has recently come up and is significantly affecting my work (I have had to switch to writing my essays on TextEdit).
    Any help is greatly appreciated.
    Thank you,
    Eric Oosenbrug
    PowerBook G4   Mac OS X (10.4.8)  

    try shutting down, remove the battery, carefully pull out AirPort card and reinstall it.
    maybe run hardware test included with CD kit

  • Every time I click a folder arrow to open...finder reframes my window view. And other finder problems

    When using the finder windows sorted either by name or date modifed, when I click a folder arrow, the window reframes to the center (or some other spot) that means I need to scroll back to the folder. When I change an item in a folder when sorted by date modfied, it of course moves to the top, but my window view stays centered where I am, and I have to scroll to the top to find the folder I'm working on. Both situations have the feel of "what I'm working on just dissappeared". I have become used to it, but it is one of the things in Lion that I hate. Is there a workaround...a way to keep the finder window view where it is when I click the open folder arrow, or to reframe to the top if I make a folder change and have the sort set by date modifed?
    Mail behaves in the same manner where the view of read and unread wildly scrolls itself when clicking an unread mail. I have tamed this by creating a smart mailbox of unread e-mail, but it seems to be some system wide preference for an unknown sort view that I would like to fix.
    Also, when I choose the sort by label option in the finder window, all the red pops to the top, but then all the other labels are scattered and not sorted as a for instance...
    Perhaps this is fixed in Mountain Lion?
    Thanks for any help.
    I am preparing to upgrade to Mountain Lion this weekend, but if I have some system problem, I would like to resolve it before I go forward.
    John

    Hello Josegued,
    Thank you for using Apple Support Communities.
    It sounds like you may have a customized keyboard shortcut created. You can take a look at this article to see how to remove it. 
    OS X Yosemite: Create keyboard shortcuts for apps
    Regards,
    Jeff D. 

  • Sound Driver and Driver Installment Problems

    I have been having trouble trying to get my sound driver to work on my
    MacBook Pro in Windows XP. After updating my MacBook with all it current
    upgrades, I loaded up Bootcamp to install Windows XP now, I have followed
    all the instructions in the guide and have succefully installed Windows XP but,
    when I run Windows and start to install the Drivers from my Mac unto
    Windows, close to the end I get a message that it could not finish properly.
    Now, I find that all runs well except an important thing like my sound. I go
    into the sounds control menue to see if there is a driver and as i suspect
    nothing. I also check for my network and nothing and same for my eject
    button, that doesnt work either. Please if someone can assist me on this
    problem it would be much apprecitated and that way I can use my music
    programs which I have not been able to use.

    Your question has nothing to do with the installation of OS X. Post it in the Boot Camp discussions:
    http://discussions.apple.com/forum.jspa?forumID=1165

  • Menu bar and other weird problems

    Hi,
    re: 'Lampshade' iMac, OS 10.4.11
    I think I may well need a new battery, but please tell me if there's another, more obvious problem:
    all of a sudden, time, volume control and keyboard language indicator have all disappeared from the right hand side of the menu bar;
    Appleworks won't open;
    mail messages won't display top part (sender/attachments etc) and have to scroll down for hundreds of feet before I get to text at bottom.
    Any suggestions anybody please?
    Thank you.

    PRAM battery issues would likely make the incorrect date/time, possibly other settings go awry, especially between restarts. I don't think it would make the menu bar disappear, though. It sounds like you are having more serious general issues with your system.
    If it was just the menu bar I'd refer you to [Menu bar reset|http://discussions.apple.com/message.jspa?messageID=7897455#7897455] topic. Since you say Appleworks is not working it suggests more than just the menu bar.
    First, if at all possible make a backup of the drive in its present configuration. If something goes wrong during repair attempts and makes things worse you will have a backup. You will have to decide how to work this in the light of any present backups you may have, for example, a backup that may be a few days out of date. In that case you may want to keep that one and make a second backup of this as they are now, though I realize people often don't have a lot of empty drives sitting around.
    Two slightly different directions to go now. One is to use [Applejack|http://sourceforge.net/project/showfiles.php?group_id=79562]
    Very informative [Macworld Applejack article|http://www.macworld.com/article/135377/applejack15.html]
    It does a bunch of things that check the drive and files and do a bit of a spring cleaning.
    The other is to do some of these things on your own by starting in Safe Mode and/or running Disk Utility plus repairing permissions.
    Boot from the installer disk, select language if applicable, choose utilities, run Disk Utility and verify (and repair if necessary) the drive. You can verify a drive from DU on your main drive while booted but I have found this can result in incorrect reporting of errors. To repair your drive you have to run it from a drive other than the boot drive anyway.
    Next, boot from your drive in [Safe Mode|http://docs.info.apple.com/article.html?artnum=107393] and repair permissions. You can repair permissions while booted from the installer disc but this uses the permissions configuration on the installer disc which may be out of date if you have run any updates on your computer. Booting your computer to Safe Mode restricts the number of things running on your computer while permissions are being run and does a bit of spring cleaning at the same time.
    [Resolve startup issues and perform disk maintenance with Disk Utility and fsck|http://docs.info.apple.com/article.html?artnum=106214]
    [Using Disk Utility in Mac OS X 10.4.3 or later|http://docs.info.apple.com/article.html?artnum=302672]
    [Disk Utility's Repair Disk Permissions|http://docs.info.apple.com/article.html?artnum=25751]
    From BDaqua (couldn't have said it better):
    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer (Edit: Do not use this disc if it is not the same general version as what you have currently on your computer, e.g. use a Tiger disc for a Tiger drive, not a Panther disc), then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk.
    Then Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes."

  • Safari stops responding when I try to bookmark (and other slow problems!)

    Two weeks ago my logicboard died, so I sent my ibook out to Apple for it to be fixed. Ever since I got it back this past Tuesday, my Safari has been extremely slow, but nothing else is wrong with my computer. Here are the problems:
    - The biggest issue is that Safari stops responding when I try to make a bookmark. The popup appears to select the bookmark's destination and to enter the name, but when you hit ok, the rainbow wheel comes up and it stops responding, so I have to reset Safari, and now I can't make new bookmarks at all.
    - It lags when it tries to open new windows, especially new tabs.
    - If a new page loads that scrolls at all, and then I try to scroll down, the wheel appears for several seconds until it can load the rest of the page. It's as though it gets stuck before it can scroll.
    - Sometimes when typing, it will also start to lag behind my typing speed, or if I try to click on a new field, it will not immediately allow me to type on occasion.
    All these things have never happened before I sent it out. I have reset my cache, and I have tried entering the open DNS addresses in my networks, which has improved loading speed, but hasn't fixed any of these problems. Does anyone have any idea what could be wrong and how I can fix anything?
    Message was edited by: canyon to the sky

    Try verifying the hard disk.
    Boot from your restore disk while holding down the C key until you see the Apple logo, then let go of the C key. You'll see an Installation window, select English. From the Menu Bar, select Utilities/Disk Utility. Select MacintoshHD 10.x.x in the panel on the left, select the FirstAid tab, then click Verify. If DU reports errors, click Repair. If Disk Utility cannot repair the disk you have several options. One is DiskWarrior or
    TechToolPro If Disk Utility can repair any errors, go back to the Menu Bar, click Utilities/Startup Disk. In the Startup Disk window select MacintoshHD 10.x.x and click Restart.
    If you don't have a restore disk, try booting into Safe Mode
    Carolyn

  • Mail app keeps crashing (and other related problems)

    A few days ago, my Mail app began crashing on seemingly unrelated events, so I assume my data got corrupted. I won't explain all the scenarios because it's a complete mess. To keep it simple, I have only 2 accounts and they are both on Gmail, so no backups are needed. I'd like to try doing a complete wipe of all data that the Mail app uses and that should fix it.
    What files/folders does Mail use? So far, I've found:
    ~/Library/Mail
    ~/Library/Containers/com.apple.mail
    I've also seen someone mention ~/Library/Preferences/com.apple.mail.plist, but I don't have this file.
    After deleting the above and creating my mail accounts, the crashes are back. The only possibilities I can think of are:
    1. I haven't deleted EVERYTHING owned by Mail yet. <-- What other files/folders belong to the Mail app?
    2. Mail is depending on something else on my system that is broken.
    3. Mail app itself somehow became corrupted.
    4. Something being synced from my Gmail is not properly being handled, resulting in a crash.
    When this started happening (if it helps):
    1 day after installing the OS X update 10.8.3 as well as MacBook Pro Retina SMC Update v1.1, my MBP froze as soon as I loaded League of Legends. This was followed by a reboot as I couldn't Cmd+Tab out of the game. I wasn't aware of the Force Close App shortcut at the time, so I used the power button. That was the only time this happened, and it has worked fine a few times after the updates were applied and also worked after the reboot following the freeze. Since that time, I have encountered another issue where just about all of my apps crashed simultaneously -- no 3D-accelerated apps were even running this time.
    Since then, I've updated VirtualBox from 4.2.8 to 4.2.10 (seemed like something that could cause this weirdness as I always have a VM running) and have not had any problems except Mail crashing all the time.
    This question is primarily about fully resetting the Mail app to clean settings/data, but any thoughts on what may have happened are also welcome

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    Still in the Console window, look under User Diagnostic Reports for crash reports related to the process. The report name starts with the name of the crashed process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

  • Midpan is not mid pan after output and other minor problems...

    Ok, so I have this procjet I am working on.
    I have one sync with a man and one background audiotrack with a choir.
    In my headphones I hear a perfect midpan.
    The audiobar/VUmeters in FXPX shows exactly the same levels as eachother, since I have been using dual mono.
    When I export to a movie directly from FCPX I get about 75% left and 25% panning of audio in the exported file.
    After a couple of exports it magically starts working....
    However even If it is me that has done something wrong. I do not like the "what you hear is not what you get" feature...
    Anyone had this problem?
    Ohh and another thing that is realy annoying is that when I try to resize a window in the UI by dragging the middle bar I only grabs the window 1/3 of the times. I have to clich 2 to 3 times and reapeat, and then it works. Same goes with renaming clips that just refuses from time to time.
    Is this normal?

    OK. I found it. The project was set to surround by default. Setting it to stereo took care of pan problem.

  • Windows 8 Laptop Boot Issue (and other related problems)

    My Toshiba Satellite S855D-S5148 laptop was bought about a month ago, but it's been giving me issues for the last week.
    The most significant one was a boot issue, where out of nowhere, the PC would not start, and after a hard restart, I received an error message saying Windows was not able to start. So I called tech support and they guided me through a PC refresh. That seemed to have solved the issue until twenty minutes later, when my system froze and I could not move the cursor let alone use any applications. So I did a hard restart again, and tried to do another PC refresh until the laptop 'clicked' and shut off. I restarted again, and my system seemed to be working normally until two days later (I did not shut it off or restarted it during this period, only kept it in hibernate when not in use).
    Upon trying to use my laptop, it said Windows was reconfiguring. Afterwards, I received an error message saying that Windows had to restart due to 'this problem,' though the problem was not specified. The error message included a list of file addresses that presumably contained a description of the problem, but I can't access the files because they don't show up when I search their addresses. They are .dmp and .xml files, respectively.
    Is anyone familiar with this problem? I wish I could return the laptop but it's a couple of weeks shy of the return period (Staples has a measely 14-day return period, but I didn't think I'd have to use it). I don't want to go through the hassle of shipping it off to Toshiba for repairs. Would reformatting the laptop solve the problem? I wish I could attach the .dmp and .xml files to this post but I can't locate them. I'd try using the recovery disks, but they were recently destroyed in a flood.  
    Any comments, advice, and/or suggestions are very much welcome!

    Happy to learn the hardware is fixed.
    I was told they could not do so without the product key.   ...   Any ideas as to how I can get my product key?
    Everybody should know by now that there is no product key for preinstalled Windows. The OEM has it locked into the motherboard.
    As I've said over and over, recovery media will restore the hard disk to its original out-of-the-box contents. Windows will be activated.
    Windows is not installed during this process. Everything on the hard drive is restored. It's an important distinction.
    -Jerry

  • IWeb won't open and other related problems ....

    I saw other posts regarding this but not sure if there is a fix
    that works.
    I worked in iWeb all day yesterday. This morning, I cannot open iWeb 08.
    When I try, it says "iweb can't open "xxxx.html" file"
    (this is a file I created yesterday)
    So I searched and i found the Domain.sites2 file in the
    User/library/application support/... folder,
    but when i double click to open i get this message:
    Cannot open file «~/Library/Application Support/iWeb/Domain.sites2».
    And I don't see any of the new pages i built in yesterday anywhere.
    I was saving my work every 10 minutes yesterday while i worked,
    however I did not publish the pages I built, I just saved them.
    I do not have a backup,(my bad)
    can someone please advise?
    thanks!

    Unless you choose otherwise, iWeb builds all your sites on one domain file.
    For those of us who have more than one or two sites its more convenient to have your sites on separate domain files so that you can load them into iWeb and publish them separately.
    See...
    http://iwebfaq.org/site/iWebMultiplewebsites.html
    You'll see that you can manage multiple domain files using a third party application or do it manually.
    I use the latter method.
    Splitting domain files is not a brilliant idea but most people seem to have no problems.
    In future, I would advise you to start new sites from a new, blank domain file to avoid corruption.
    See....
    http://discussions.apple.com/thread.jspa?threadID=1365344&tstart=0
    http://11mystics.com/2007/09/08/how-do-you-manage-multiple-domain-files-for-iweb /
    Starting new sites on a blank domain file and keeping them in separate folders makes life a lot simpler if you do get corruption in any one.

  • Lumia 620 and other storage problem

    Hi,
    I own a L620 and I'm having a lot of problems with the "Other" storage. Currenty it is occupying 2GB. I have reflash it and hard reset it a lot of times but it always keep growing...
    Is there any fix? What can I do?
    I'm thinking in but another mobile phone because of this...

    Have you tried copying many files to the intrenal storage? this should make the phone release space from other storage and once freed it will remain so. After this you can simply remove the files you copied.
    Otherwise a reset would be the only thing I can think of. This is an OS issue and it's MSFT who will (and should) be fixing this.
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • Dupes and other small problems

    I originally did not want to use iPhoto after buying my new SD800. I wanted to use the Canon software because of the way it allows you to save photos from dates into specific folders. However, I had problems getting the software installed (read, it wouldn't) so now I am using iPhoto.
    I have a few videos on my camera (.avi's) and I used Image Capture to bring everything onto my harddrive. I opened iPhoto and it asked if I wanted to import, which I did. It imported everything up till the videos and then crashed. I reopened iPhoto and it wanted to import again, and I did. This time I canceled the import before it reached the videos and found that there were dupes everywhere.
    Now iPhoto keeps telling me that there are 345 photos to import (which there aren't). I know that it will crash again when it reaches the videos but don't want to hide them or put them on a different harddrive. Any suggestions?
    Also, is there any way to import my pictures/videos the way the Canon software does, by creating a sub-folder with the date and throwing all relevant photos in there? I keep all of my photos on external harddrives and cannot imagine doing this manually.
    I am a little disappointed because I have heard so much about how easy things are on the Mac, but being a more technical person I like my data in places that are organized by me and not the software.
    Is there any way to clear out iPhoto and start over? I can just hook it up to my externals and import all over again (till it hits videos it doesn't like)
    Any ideas on organizing (for easy backup) photos on a Mac would be a great help!
    Thanks!

    Of course, you know what I'm going to say...
    I want something that allows me to set the folder structure that will be used and doesn't try to manipulate things in transfer.
    Well, that's iPhoto.
    If you're coming from a Windows Image Viewing background, it's easy to misunderstand what iPhoto is. It's not an image viewer, but a photo organiser. That is, it's a database, with a built-in image viewer, version control and lightweight editing.
    By default, when you import pics into iPhoto they are imported into the iPhoto Library Folder. Then you manipulate them in the iPhoto Window - that is, create your folder structure, albums, smart albums, books calendars etc. All in the iPhoto Window - and iPhoto keeps track of the files for you. In essence, iPhoto says, why bother with file management, do the fun part and let the application do the dull bit. Also, another advantage is this: It's easy to create a date based folder structure in the Finder for yourself - Folder for each month etc. But what if you also want a 'Best of...' folder? Now you've got duplication, endless duplication. In iPhoto albums are "virtual", so that a single pic can be in 50 albums with no duplication.
    If you want to, you can create your own folder structure and not copy the files into the iPhoto Library Folder (iPhoto -> Preferences -> Advanced: Uncheck 'Copy Files to the iPhoto Library Folder...). I don't recommend this for a couple of reasons: it makes importing and deleting pics multi-stage operations, plus, things like migrating to a new computer or moving things around becomes more complicated too. And to no specific advantage.
    But how can I find my pics, I hear you wonder: There are three ways (at least) to get files from the iPhoto Window.
    1. Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. Show File: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Plus, the Film Rolls (View -> Film Rolls) correspond exactly to the Film Rolls in the iPhoto Library Folder / Originals folder.
    There's only a single catch in all of this. Like any database, iphoto requires that you manipulate the data via the iPhoto Library Window, rather than a back door like the Finder. The good news is that everything you need to do can be done via the iPhoto Window - and I do mean everything.
    If you want to consider another app, have a look at Graphic Converter. It has an excellent file browser, and is a really good editor. You will use Image Capture to get your pics onto the Mac - or if you use a USB card reader instead of your Canon, it will just mount on the desktop and you can drag and drop the pics to whereever you want them.
    Have a think about iPhoto. It really is a very good and safe app. And you'll find there's a very supportive community here to help.
    Regards
    TD

Maybe you are looking for

  • HELP ON HOW TO STORE OUTPUT IN TEXT FILE

    Hello, I am trying to output the results from queties into an output text file does anyone knows how to do that please? For example i want to do : Select SYSDATE from dual; and output the result of it in a text file called output.txt does anyone know

  • Billing document for cash discount

    Dear all, It was observed in GL Cash discount that billing document  bearing no: xxxxxxxxxx  was posted in paisa etc, client want to make it round please advise, where we have to change. Thanks & Regards, satishkumar.m

  • Set unused column

    Sir i am new to database.I am doing an oracle course on 051.My oracle faculty is saying Set unused column option will hide the column for-ever.user can't retrieve it again. what i believe if a statement is hiding a column there must be some option to

  • Iphone 6 stays in 3G

    I traded in my iphone 5 for an iphone 6.  My new iphone 6 remains in 3G.  I have tried everything - called apple support, called Verizon tech support, exchanged the phone and sim card, and tried all the network reset options.  It will stays in 3G..sp

  • Excel queries to MSN MoneyCentral Investor Stock Quotes stopped working

    I update stock quotes in 3 spreadsheets using a query to MSN MoneyCentral Investor Stock Quotes. Three days ago (after using for 2 years) , the Refresh for Data Connection would not work, giving me a pop-up with "Unable to open...http://moneycentral.