Annoying distortion-sound when using Org. N95 Head...

Is it only me that has this distortion when using the original head-set?
Button pressed: *spszzzz*
I thought this was the 21-century and distortion was long gone? maybe Nokia reinveted it?

so no one here can help me ?
We can't see your laptop or read your mind. Which model do you have?
There's a new BIOS which purports to fix sound problems for these.
Satellite A500-ST5602, A500-ST56X4, A500-ST56EX, A500-ST6622, A500-ST5601, A500-ST56X3, A500-ST5605, A500-ST5606, A500-ST6621, A505-S6996, A505-S6995, A505-S6994, A505-S6992, A505-S6991, A505-S6990, A505-S6985, A505-S6982, A505-S6981, A505-S6980, A505-SP7930R, A505-SP7930C, A505-SP7930A, A505-SP7913R, A505-SP7913C, A505-SP7913A, A505-SP7914R, A505-SP7914C, A505-SP7914A, A505-SP6996R, A505-SP6996C, A505-SP6996A, A505-S6979, A505-S6976, A505-S6975, A505-S6971, A505-S6972, A505-S6970, A505-S6973, A505-S6969, A505-S6967, A505-S6966, A505-S6965, A505-S6960, A505-SP6986R, A505-SP6986C, A505-SP6986A, A505-SP6988C, A505-SP6988A, A505-S6997, A505-S6998, A505-S6999, A505-S6986, A505-S6993, A505-S6984, A505-S6983, A505-S6989, A505-SP6988R, A505-S69803,
 M500-ST5405, M500-ST54E2, M500-ST54E1, M500-ST5401, M500-ST6421, M500-ST54X1, M500-ST6422, M505-S4949, M505-S1401, M505-S4945, M505-S4947, M505-S4940, M505-S4982, M505-S4980, M505-S4985-T, M505-S4990-T, M505D-S4970RD, M505D-S4970RD, M505-S4972, M505-S4975, U500-ST5302, U500-ST6321, U500-ST6322, U500-ST5305, U505-S2925P, U505-S2925BN, U505-S2925W, U505-S2930, U505-S2935, U505-S2940, U505-SP2916A, U505-SP2916C, U505-SP2916R, U505-S2950PK, U505-S2950RD, U505-S2950WH, U505-S2960, U505-S2960PK, U505-S2960RD, U505-S2960WH, U505-S2961, U505-S2970, U505-S2965, U505-S2965RD, U505-S2965WH, U505-S2980-T, U505-S2975, U505-S2002, U505-SP3018M, U505-SP3018L, U505-S2950, U505-SP2990A, U505-SP2990R, U505-SP2990C
Satellite Pro U500-EZ1321, U500-EZ1311
-Jerry

Similar Messages

  • Detecting transform errors when using org.xml.sax.XMLFilter

    I am using javax.xml.transform.sax.SAXTransformerFactory.newXMLFilter to transform xml against a pipeline of stylesheets (See function testPipelineTransform in the example below). The process works okay, excepting that I cannot figure out how to detect errors in the transformation process.
    I would like to achieve the same result for the pipeline process as I would for a single transformation using javax.xml.transform.Transformer.setErrorListener. The example below demonstrates how the call to javax.xml.transform.Transformer.setErrorListener does not generate the same result when using org.xml.sax.XMLFilter as it does when using a single transformation.
    import javax.xml.parsers.ParserConfigurationException;
    import javax.xml.parsers.SAXParser;
    import javax.xml.parsers.SAXParserFactory;
    import org.xml.sax.SAXException;
    import org.xml.sax.InputSource;
    import org.xml.sax.XMLReader;
    import org.xml.sax.XMLFilter;
    import javax.xml.transform.ErrorListener;
    import javax.xml.transform.Source;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.TransformerConfigurationException;
    import javax.xml.transform.sax.SAXTransformerFactory;
    import javax.xml.transform.sax.SAXSource;
    import javax.xml.transform.stream.StreamSource;
    import javax.xml.transform.stream.StreamResult;
    import java.io.*;
    public class FilterChain {
        static private final String newline = System.getProperty("line.separator");
         public static void main(String argv[]) {
              System.out.println("Testing pipeline transform");
              testPipelineTransform();
              System.out.println("Testing single transform");
              testXsltSingleTransform();
         } // main
         static private void testPipelineTransform() {
              try {
                   // Set up the input stream
                   BufferedInputStream bis = new BufferedInputStream(
                             new ByteArrayInputStream(getExample().getBytes()));
                   InputSource input = new InputSource(bis);
                   // Set up to read the input file
                   SAXParserFactory spf = SAXParserFactory.newInstance();
                   SAXParser parser = spf.newSAXParser();
                   XMLReader reader = parser.getXMLReader();
                   // Create the filters
                   SAXTransformerFactory stf = (SAXTransformerFactory) TransformerFactory
                             .newInstance();
                   XMLFilter filter1 = stf.newXMLFilter(new StreamSource(new StringReader(getStylesheet1())));
                   XMLFilter filter2 = stf.newXMLFilter(new StreamSource(new StringReader(getStylesheet2())));
                   // Wire the output of the reader to filter1
                   // and the output of filter1 to filter2
                   filter1.setParent(reader);
                   filter2.setParent(filter1);
                   // Set up the output stream
                   StreamResult result = new StreamResult(System.out);
                   // Set up the transformer to process the SAX events generated
                   // by the last filter in the chain
                   Transformer transformer = stf.newTransformer();
                   transformer.setErrorListener(new ErrorListener() {
                        public void error(TransformerException te)
                                  throws TransformerException {
                             System.out.println("Transform generated Transform Error");
                             System.out.println(te.getMessage());
                        public void fatalError(TransformerException te)
                                  throws TransformerException {
                             System.out
                                       .println("Transform generated Transform Fatal Error");
                             System.out.println(te.getMessage());
                        public void warning(TransformerException te)
                                  throws TransformerException {
                             System.out.println("Transform generated Transform Warning");
                             System.out.println(te.getMessage());
                   SAXSource transformSource = new SAXSource(filter2, input);
                   transformer.transform(transformSource, result);
              } catch (TransformerConfigurationException tce) {
                   // Error generated by the parser
                   System.out.println("\n** Transformer Factory error");
                   System.out.println("   " + tce.getMessage());
                   // Use the contained exception, if any
                   Throwable x = tce;
                   if (tce.getException() != null)
                        x = tce.getException();
                   x.printStackTrace();
              } catch (TransformerException te) {
                   // Error generated by the parser
                   System.out.println("\n** Transformation error");
                   System.out.println("   " + te.getMessage());
                   // Use the contained exception, if any
                   Throwable x = te;
                   if (te.getException() != null)
                        x = te.getException();
                   x.printStackTrace();
              } catch (SAXException sxe) {
                   // Error generated by this application
                   // (or a parser-initialization error)
                   Exception x = sxe;
                   if (sxe.getException() != null)
                        x = sxe.getException();
                   x.printStackTrace();
              } catch (ParserConfigurationException pce) {
                   // Parser with specified options can't be built
                   pce.printStackTrace();
         static private void testXsltSingleTransform() {
              try {
                   BufferedInputStream bis = new BufferedInputStream(
                             new ByteArrayInputStream(getExample().getBytes()));
                   // Set up the output stream
                   StreamResult result = new StreamResult(System.out);
                   InputSource input = new InputSource(bis);
                   TransformerFactory factory = TransformerFactory.newInstance();
                   Source source = new StreamSource(new StringReader(getStylesheet2()));
                   Transformer stylesheet = factory.newTransformer(source);
                   stylesheet.setErrorListener(new ErrorListener() {
                        public void error(TransformerException te)
                                  throws TransformerException {
                             System.out.println("Transform generated Transform Error");
                             System.out.println(te.getMessage());
                        public void fatalError(TransformerException te)
                                  throws TransformerException {
                             System.out
                                       .println("Transform generated Transform Fatal Error");
                             System.out.println(te.getMessage());
                        public void warning(TransformerException te)
                                  throws TransformerException {
                             System.out.println("Transform generated Transform Warning");
                             System.out.println(te.getMessage());
                   SAXSource transformSource = new SAXSource(input);
                   stylesheet.transform(transformSource, result);
              } catch (Exception exc) {
                   exc.printStackTrace();
         private static String getStylesheet1() {
              return
                     "<?xml version='1.0' encoding='ISO-8859-1'?>" + newline
                   + "<xsl:stylesheet" + newline
                   + "xmlns:xsl='http://www.w3.org/1999/XSL/Transform'" + newline
                   + "version='1.0'>" + newline
                   + "<xsl:output method='xml'/>" + newline
                   + "<xsl:template match='/'>" + newline
                   + "<DontCareAboutContent></DontCareAboutContent>" + newline
                   + "</xsl:template>" + newline
                   + "</xsl:stylesheet>" + newline;
         private static String getStylesheet2() {
              return
                     "<?xml version='1.0' encoding='ISO-8859-1'?>" + newline
                   + "<xsl:stylesheet" + newline
                   + "xmlns:xsl='http://www.w3.org/1999/XSL/Transform'" + newline
                   + "version='1.0'>" + newline
                   + "<xsl:output method='html'/>" + newline
                   + "<xsl:template match='/'>" + newline
                  + "<html><body>" + newline
                 + "<xsl:message>" + newline
                 + "Error Message for the xslt processor" + newline
                 + "</xsl:message>" + newline
                 + "Dont care about the xslt content," + newline
                 + "The only significant part is the xsl:message element" + newline
                 + "which results in a error to be handled by the xslt" + newline
                 + "processor" + newline
                   + "</body></html>" + newline
                   + "</xsl:template>" + newline
                   + "</xsl:stylesheet>" + newline;
         private static String getExample() {
              return
                     "<?xml version='1.0' encoding='ISO-8859-1'?>" + newline
                   + "<DontCareAboutContent>" + newline
                   + "</DontCareAboutContent>" + newline;
    }

    I made the following change which solves the problem but the sollution is tightly coupled to Xalan. If anyone has any ideas, I would still like to find a way to achieve the desired result using JAXP API's.
                   XMLFilter filter1 = stf.newXMLFilter(new StreamSource(new StringReader(getStylesheet1())));
                   if (filter1 instanceof org.apache.xalan.transformer.TrAXFilter) {
                        ((org.apache.xalan.transformer.TrAXFilter)filter1).getTransformer().setErrorListener(...);
    ...

  • My Apple TV lacking sound when using iplayer etc

    Can get sound when using Airplay from some web sources but not others. Any reasons why?
    Nick

    Hmm, rebooted the mac and now works! had only tried rebooting Apple Tv before. strange, as sound was fine on mac when not using airplay
    thanks all
    Nick

  • How do I stop system sounds when using AirPlay on my MacBook Pro?

    Hi all,
    Probably a quick question, but I'm fairly new to Macs. I've a Macbook Pro 13 Late 2011 and now I've got an Apple TV, I use AirPlay. But how do I stop system sounds when using AirPlay?
    Many thanks in advance, Jon.

    Open AirPort Utility located in HD > Applications > Utilities
    From the AirPort Utility menu bar click AirPort Utility > Preferences
    Deselect:   Monitor AirPort base stations for problems

  • I have a HP610-1150f. not recording sound when using webcam in touchsmart screen.

    I have a HP610-1150f. not recording sound when using webcam in touchsmart screen.  I have looked thru this forum and I don't see anyone else having this problem. (unless I missed it).  The recording works in Notes, but not when I open Webcam and try to record from there. video recording works fine. I have had this computer less than a month and I am having a couple of problems with it. Still loving it though.

    Hello schae731: Welcom to HP Forum and your new Touchsmart. You need to contact HP Direct Support on line your Touchsmart comes  with one year warranty so use it why you can. You can contact them through your HP Support Assistant or on line. They will help you with trouble shoot the web-cam software. Goto your computers model and make support web-site. They will also help you with your other issues as well.
             I am using the older version software so I won't be much help. Please repost if HP direct support is un able to help you resolve your issues. While you are chatting with them have them check out your computer do it before your 1 year warranty expires. Have fun with your new computer.

  • How do I have my phone Make sound when using "Find my phone" app

    How do I have my iPhone make sound when using "find my. Phon" app?

    You can have the app send you an email when it is found, and you can set your email tone under settings-> sounds

  • Fizzy and hissing sound when using earphone...

    I have a Macbook Pro 13 inches 2009. I use my earphone to listen music. However, when I don't play music, I can hear a fizzy and hissing sound from my earphone. I tried to use another one but there is still fizzy and hissing sound when no music is playing. I can hear that even clearer when my room is silent. I feel really annoyed about that sound.
    If anyone knows how to fix it, please let me know. Any helps are appreciating...
    Thanks.
    Vu Dinh
    P/S: I'm not sure if it's a software issue or hardware issue.

    The problem is when I dont play music, there is still fizzy and hissing sound on my earphone. Only when I play music, the music is louder than that sound so I just hear music in that time. However, when I dont play music, there is always fizzy sound on my earphone. I already said it always happens when I put my earphone jack on Macbook Pro.
    I want to know if there are any ways to fix that... It's really annoying. It's not silent at all even there is no music. Always a fizzy sound on my earphone.

  • Won't unmute / annoying clicking sound when adjusting volume

    Hi, I'm using an HP Pavillion dv5 Notebook PC.
    After muting then unmuting in Windows Vista (or using the touch button) I will have no sound.  It returns when I restart or sometimes after a random amount of time.  I've had this problem since purchasing the computer.
    Another extremely annoying issue is that when using the touch volume slider there will be a clicking sound to go with the onscreen graphic of the volume changing.  The clicking lags and sometimes goes on for several seconds after I've stopped touching the slider (sometimes 30seconds+ if I use the slider a lot).
    If anyone has a solution or suggestion for either of these issues it would be muchly appreciated, thanks.

    I have an HP Pavilion dv7-1003ea Entertainment Notebook but had the same problem which HP were unable to resolve for me. I solved it by replacing one of the infuriating sounds with a short period of silence. If you look in C:\Program Files\Hewlett-Packard\HP QuickTouch you may find 3 WAV files and a program SelectiveSound.exe which if you run it will enable you to switch between the 3 WAV files.
    I recorded a brief period of silence using a recording program called Polderbits but you could use any similar program. I renamed one of the 3 WAV files (in case I ever needed to revert) and saved my silent file with the original name of the WAV file in the HP Quick Touch directory. Incidentally simply deleting or renaming one of the WAV files didn't work. The system seems to remember the sound it last used. You actually need to replace the sound with a period of silence. Windows had a built in recorder in XP (C:\Windows\System32\sndrec32.exe)which produced WAV files. The similar program in Vista can be found in Start\All Programs\Accessories\Sound Recorder but alas for some reason known only to the Nerds at Microsoft this will only produce WAV files if you have Vista Home Basic. If you have the Premium version it will only produce WMA files which don't work in HPs QuickTouch.
    I don't know who takes the prize for the most infuriating here. The idiot at HP who thinks its a good idea for a volume control to click at you everytime you use it or the idiot at Microsoft who decided what type of sound clip can be produced with your version of Vista. Good luck

  • Loud distorted noise when using STP Noise Reduction

    Another very strange STP glitch.
    When using Noise Reduction, I set the noise print. Then open the Noise Reduction dialog (or HUD, I guess). The first time I play the mono audio file I'm editing, sound comes out of the left speaker at perhaps slightly reduced volume. Stop playback. Then hit the Play button again (still in the Noise Reduction dialog). Playback is now INCREDIBLY LOUD AND DISTORTED. So loud that it probably damaged my speakers (not to mention making me jump out of my chair). Thinking there was a problem with the file, I recorded some audio (again a single mono track). Same result. Deleted all the plists I could think that might be involved. No luck.
    Next, I actually went to a different computer - my G5 2.0 GHz DP. Same result, so I am completely puzzled on this one. Any ideas.
    Both machines were running STP v 2.02. The original problem was discovered on a MacBook Pro, 2.4 GHz. Both have 4GB RAM and are running Mac OS X 10.5.1.

    APPLE!!! FIX THIS!!!!!! IT IS PHYSICALLY DAMAGING TO THE USER. COULD EASILY BLOW SOMEONE'S HEARING.
    I just went to play a preview of the file while adjusting the settings in reduce noise print WITH HEADPHONES ON! I was attempting to take out a very loud running generator in the background of an interview and nearly blew my hearing in my left ear. I threw the headphones across the room. Painful to say the least. My sound was only on the first notch and the result was louder than I can get my headphones to play with the volume all the way up.
    JamesGray, if you file a lawsuit, let me know, no joke. This is a dangerous and irresponsible game Apple is playing with their professional user's hearing, and therefore their livelihood and quality of life.

  • Corrupted Sound When Using IM Programs

    I have a HP Pavilion DV5z-1000.  When I use IM programs (so far I have tried Windows Live Messenger and Yahoo Messenger), they seem to work fine for a while with both sound and video.  However, after a few minutes, the audio becomes "corrupted".  I hear a horrible rushing, static-like sound.  This will stop after a few minutes but then reoccur.  I have a broadband connection, so I don't think the problem comes from a slow connection.  Additionally, the corrupted sound does not sound like the typical broken or distorted sound you get from a slow connection.  Interestingly, the person on the other end can still hear me and does not hear any of this cacophony.
    Any idea what may cause this?  I thought it might be Windows Live Messenger but then tried Yahoo and I get the same result.
    Thanks.

    Thanks for the link but it doesn't really solve the problem.
    I know it works in VLC, my problem is that I absolutely need to be able to use the clip(s) in iMovie HD because I'm filming a documentary and this is one of the most important interviews.
    Even if it means finding a way to split the audio in some other program then importing the audio file I'd be ok with that, but I so far I haven't been able to figure it out...any other suggestions?
    Thanks

  • No Sound when Using HDMI from ATT DVR to TV

    I have a 52xv645u TV.  When I connect it to my ATT UVerse DVR using HDMI I get picture but no sound.  Using Composite everything works fine.  I've tried several HDMI cables.  If I use HDMI to my Surround Sound amp, I get both picture and sound (even with the amp volume muted).  The problem seems to be the connection between the DVR and the TV.  Does this TV support HDSC?  I believe that the DVR requires it to support it on the TV.  
    I see that there is an upgrade for the firmware for this TV.  I have a Mac so the instructions don't work right.  I've downloaded the files to a flash drive but I am not sure if they are correct because there is no list of files available.  Does anyone know what files are needed so I can be sure that my flash drive has everything it needs?
    Any help with these problems would be appreciated!  
    Thanks,
    Mark 

    Is there a list of things that are fixed in the update?   I can get sound and picture through component but I fear that it's not the same quality as it would be through HDMI.  But again, it's only when I watch TV without going through my surround sound amp.  I can watch TV through my apm and watch my Bluray DVDs through the amp and it goes via HDMI.  

  • How do i change default sound when using AirPlay Display on Mavericks

    So i am using a TV with Apple TV attached as a second display for watching movies etc in the background
    Everytime i turn on the setting to enable to the display, it sets the Apple TV as my default sound and i have to go to settings to manually re-select my speakers attached to my iMac. Is there anyway to change this so it leaves the sound from my Mac as the default sound when enabling the screen.

    I looked into this a little more carefully.  It's not the Guest account.  It clearly indicates "Managed".
    Searching for more information, this is something related to Parental Control, but I can't seem to get this account to take on the characteristics of either an administrator or user role.

  • No sound when using programs

    My curve does not make any sounds when i'm using VZ Nav or when i'm using AIM.  it rings for phone calls and text and BB messenger. It won;t even make a sound in vz nav when i press the talk button.   any ideas??

    Backup your Blackberry and Wipe Handheld and test again before restoring from the backup. If its still failing, you may need to upgrade or reload the current o/s.
    New to a Blackberry? Check out http://www.discoverblackberry.com

  • How do you turn off sounds when using phone?

    I know this question is not appropriate for this forum but I cannot find where it should go. I want to turn off the sounds when I am using my phone, e.g., when I am texting, each time I press a key it make a sound. If I turn down the volume then I cannot hear it ring so this is not the answer.
    I have the Nokia 7020 phone. I cannot find any help in the userguide, only how to change ring tones. Anyone have any idea? Thank you.
    Solved!
    Go to Solution.

    On my Lumia 900, it's under Settings -> ringtones+sounds, scroll to the bottom where there is a list of check boxes, and uncheck "Key press".  Not sure it's the same for your phone, though.

  • Problem quality of sound when use the microphone

    Hello,
    I have big problem.
    I have today buy the headphone HS-1000 gaming.
    My problem is when use the microphone (skype or mumble) my sound in game in very very poor !!!!
    I have latest drivers availible on creative website
    You have any idea ?
    Sorry for my bad english
    Regard
    Fifane

    Try converting to .mp3. You will almost always get some loss when converting one compressed format to another. It shouldn't be that noticeable though.
    What bit rate are your .wma files?

Maybe you are looking for

  • How do I add a second hard drive to my dv7-3060us​?

    I'm very short of space on my HP originally installed 500GB hard drive and need more storage space. I have a new Seagate 750GB drive, 7200 rpm, and would like to install it. When I opened the case to access the second hard drive compartment, I was st

  • Can we use BCS component  in ECC 6.0, without installing BI 7.0?

    We have a unique situation. We have planned to migrate from 4.6B to ECC 6.0. We have FI- LC and we want to move to SEM-BCS 6.0 in ECC 6.0, without installing separate BI (netweaver 2004s) instance. Is that possible? If possible, will there be any per

  • Crystal report for authorization

    Hi Experts, I have BW query which belongs to authorization relevant it is working fine  so if i execute this query in crystal it is showing all the data  and authorization variable is not working so if any worked on this issue and please pass your in

  • How to find db file scatered read in trace file?

    Hi All, Was just going through basic concepts... 1. Created table T1with 1000 rows in LMT of 8k block size. 2. enabled tracing - alter session set events '10046 trace name context forever, level 12'; 3. performed - select * from T1; 4. ALTER SYSTEM S

  • Why does the iphone5 battery drain so quickly

    My iPhone 5 is great; unfortunately the batter drains in no time.  I end up recharging it twice to 3 times a day.  I wish I had kept my iPhone4.