Sound input and output not working

Last night my audio was working fine. I was going to record some stuff in garage band and had a microphone plugged into the input line-in on my macbook. everything was working fine still, turned on the "auto leveling" and then put in my headphones. i then turned on the "monitor" to get the sound to actually come to my headphones. I didnt realize until after it was done but you cant have the auto level and monitor on at the same time. There was a short blast of sound in the headphones and then everything cut out. I couldnt get sound from anything, headphones, built in speakers. No sound going in either.
I restarted my computer and if I remember correctly (maybe i'm imagining it) there was the start up chime. when I started up garageband again I got an error message reading "selected driver not found. error 10202" still no sound input or output. When trying to adjust the volume all I got was the grayed out volume thing with the little cross thingy at the bottom. I checked the sound settings and there was nothing in the input or output sound.
I did some searching around and saw people with similar problems (none with an answer).
This is what I've already tried:
I reset the permissions
I reset the PRAM
I did a hardware check (hold d which restarting) i even did the hour long check and there was no problems.
I tried putting headphones in an out (there was no red light in the headphone jack)
I updated all my software (there was an update to OS X to 10.5.8)
After the update there was no longer a startup chime, and i got no error messages when opening garage band. however there was still no input or output sound. when adjusting the volume on the screen it appears to be normal, but there is still no sound from built in speakers or headphones. I did notice there was a very faint "clicking" noise when i try and adjust the volume... like the speakers are getting power or something... but then nothing comes out. In the sound settings there everything appears to be back to normal.
I know this is long, but I wanted to be thorough in describing my problem. I'm posting this on several boards as well.

I'm having the exact same problem. I did install the newest version of Skype the last time my computer was running (with sound)... so not sure if the new Skype had something to do with it.
Also, when I try to change volume with the keyboard keys, there is a little icon (circle with slash) indicating that the sound has been disabled or not allowed to be changed.
I can't find any answers on any forums.

Similar Messages

  • Sound Input and Output Disappeared

    I am considering a purchase of a used Macbook Pro (4,1) from early 2008 with Snow Leopard 10.6.8 installed. When I first tried the machine, the sound input and output were absent. After removing preference files, resetting NVRAM, etc., I finally got them to work. They worked for a few weeks, but recently they disappeared again. This time, my efforts to ressurrect them have been fruitless.
    Here is what I have done in an attempt to remedy the situation:
    •Delete com.apple.audio.DeviceSettings.plist and com.apple.audio.SystemSettings.plist
    •Jiggle a digital headphone jack in the headphone port
    •Verifiy Disk and Repair Permissions
    •Reset NVRAM
    •Reset SMC
    I have read online that some people have replaced the AppleHDA.kext file with the one from 10.6.7 - however, every effort I have made to find this file has resulted in failure. I am not able to locate MacOSXupdCombo 10.6.7.pkg anywhere on the web
    Any recommendations? I was able to fix this once before - why not now? Thanks for any and all constructive input...

    Did you recieve the install disk(s) when you purchase the machine? I would try doing a back up of your data then a fresh install of the OS. Insert the disk into the mac then click restart and hold the c key, ten follow the prompts.
    If you wish to take this route, I would try the 10.6.8 combo update first (it should be fine to run it again), then if you wish you may try the 10.6.7 update. Altough I would just do a OS X reinstall and then run software update till you bring it up to date. On disk 2 there should be the AHT (Apple Hardware Test) that you can run by booting the disk holding the D key to check for a hardware fault.
    You may also make a Genius bar appointment for a free evaluation, they have more extensive diagnosis tools and would then tell you what your otions would be. (hey it's free)
    Genius Bar appointment http://support.apple.com/kb/DL1361
    10.6.8 Combo update
    http://support.apple.com/kb/DL1399
    10.6.7 Combo Update:
    http://support.apple.com/kb/DL1361
    All the Best

  • Sound input and output gone

    After i updated to 10.5.4, my sound input and output disappeared. I've tried to update my quicktime once and i've also reinstalled the 10.5.4 update without any luck. I have a Leopard dvd, but i'm not sure whether i'm able to only install the sound drivers once again? Any other suggenstions?
    thanks in advance

    Thanks.
    I did reinstall the combo, if you mean this one; http://www.apple.com/support/downloads/macosx1054comboupdate.html. And it didn't help, there isn't anything in input or output in the sound preferences panel.
    Isn't it possible to perform an install of the sound drivers without having to do a total format? I've looked through my leopard disk content and checked all the optional installs and haven't been able to find them.. Can i download them seperately somewhere?

  • Sound input (line-in) not working after upgrade to Leopard

    I have upgraded my iMac Intel Core 2 Duo (white plastic frame version) to Leopard on Friday when it released. The upgrade process went very well with one MAJOR exception: Audio input through "Line-in" connection does not work anymore. I have tried everything that comes to mind so far from rebooting, to unplugging and replugging, to checking back all system settings, etc. Nothing works. At this point, I can't use my headset anymore for making calls with Skype or using voice chat in games. I would seriously need some help as I refuse to have paid $129 only to have Apple themselves break something in their products.
    For this reason, I have to currently consider Leopard a failure. Reason being, in MS Windows or Linux, there always is a way around to make things work... I can't find anything at all with this release of the OS.

    The OP reported their line-in input "broke" after upgrading to Leopard, however my MBP stopped recognising input from the mic on my headset a few weeks ago when I was still running Tiger. This might possibly indicate that the change in OS X's handling of the line-in input was present in a Tiger update, but I can't remember the exact correlation between the dates of my last update and this problem. All the same, I'm pretty annoyed that a headset that worked perfectly for several months is now suddenly unusable without a USB adapter.
    Prior to stumbling across this thread, I visited two Apple stores, who both tested with an output from an iPod and told me that the input was working fine, leading me to buy a brand-new headset (even though I'd tested other working headsets without success) which, naturally, produced the same results.
    Seems to me that the hardware is fully capable of processing a mic input through the line-in port, as it's never had any problems with any unpowered source until recently, so Apple must surely be able to undo the change they made?

  • Different family class used for input  and output when working with sockets

    I have seen more or less everywhere the following code to open a socket and to receive input and send output through it:
    Socket server = new Socket("anyservername", 25):
    OutputStream out = server.getOutputStream();
    PrintWriter pout = new PrintWriter (out, true);
    pout.println("Hello");
    InputStream in = server.getInputStream();
    BufferedReader bin = new BufferedReader (new InputStreamReader(in));
    String response = bin.readLine();
    What I do not understand is:
    Why the BufferedReader needs InputStreamReader as an argument whereas printwriter does not want the OutputStreamReader as an argument but it is OK with just the OutPutStream?
    I would tend to believe that they should be more or less at the same level and use the same arguments?.
    In that sense if I use BufferWriter instead of PrintWriter I bet It should be OK the following code?:
    OutputStream out = server.getOutputStream();
    BufferedWriter bout = new BufferedWriter (out);
    String myOut = bout.writeLine();
    Cheers
    Umbi
    Edited by: Imbu on Jun 2, 2008 2:40 PM

    1. Does it even compile?
    2. While there is a fair amount of symmetry between reader and writer classes, don't assume it's exhaustive. Your best friend is the API:
    [http://java.sun.com/javase/6/docs/api/]
    3. Those were just examples. Code it the way you feel is best. I would specify charsets to make sure the encodings were platform independent. Networking and all that, don't you know...

  • Sound, headphones, and vibrator not working on 4s after ios 7.0.6 update

    So after i updated my phone last night it started doing this thing where the ear piece speaker, the loud speaker, the vibrator, and headphone jack all stop functioning. As soon as i put the phone in silent after awhile or restarting it in silent it will start working again. I don't know what's causing this, but its annoying. Anyone else having a similar issue?

    I also have an iPhone 4S everything was fine then I realized my speaker wasn't giving no sound restarted switch to
    Mute then back again then it was all good. Thought it was only me

  • Audio Line-in input and BT Headset output not working

    Hi,
    I'm trying to run the Line-in into my MBPro and route the output to my Logitech H800 BT Headphones at the same time (a pass through), but can't get it to work.
    I have tried to run the line-in to the Internal Speakers and can not get this to work either.
    Steps to taken:
    1. Go to the Sound window by selecting the Sound icon from System Preferences.
    Next, I route the Line-in by:
    2. Selecting the Input button from Sound Effects, Output, Input buttons.
    3. Select "Line In" from the Select a device for sound input list.
    4. Select "Sound Input" from the Use audio port for drop down list
    5. you should see activity on the Input Level.
    6. Next, select the Ouput button from Sound Effects, Output, Input buttons.
    7. Select "H800 Logitech Headset Stereo (or Internal Speakers) from the Select a device for sound output list.
    8. Verify that "Sound Input" from the Use audio port for drop down list is still selected.
    9. Also, verify that the Mute checkbox is not selected in either the Input or Output window.
    10. NO SOUND :-(
    11. If I pull up a radio station in a webbrowser, I can listen to it without issue. So, I think audio out is set correctly.
    12. If I install Audacity: 1) It shows the audio input and output to be set as above (Built-in Input/H800 Headset). 2) If I record and then playback, it records the audio going in the Line-In and plays back accross the H800. 3) Also looked for a Monitor function in Audacity but could find one to test simulataneous I/O. 
    Any idaes welcome ?

    ahh sry, thats how the line in works on my Mac Pro, I guess the Macbook is different. This is a program I use in conjunction with another called 'soundflower' to route my audio to all the places it needs to go:
    http://www.macupdate.com/app/mac/11333/linein
    If you need to run multiple instances, you can open up terminal and type
    open -n /Applications/[PUT PROGRAM NAME HERE].app/
    It will open up another instance every time you run that script.

  • Input and output audio not working and no startup chime

    The audio, both input and output, on my MacBook Pro has stopped working as well as the startup chime. Otherwise the computer starts up and seems to be working normally. Any ideas as to what the problem is and solutions?  

    Hey, my MacBook Pro has been doing the EXACT same thing off and on for a few weeks now.
    I'm just now having time to browse the forums, so I've not even asked about it.
    Yesterday it all started working normally - all sounds.
    I'll follow this discussion for sure.
    There definitely seems to be enough 'Mac-Daddy' Mac Helpers on here to be able to easily resolve this issue.
    i.e.: Andreas!  Just reading her stuff lets me know she REALLY knows what she's talking about & is able to explain the highly advanced info in terms people actually get!
    Thanks for asking that question!
    ~dOiTdiGiTaL~

  • I installed windows 7 on my macbook pro. all is working but lan adaptor and sound od laptop is not working. please help me or send the link where i can download the these drivers.

    I installed windows 7 on my macbook pro. all is working but lan adaptor and sound od laptop is not working. please help me or send the link where i can download the these drivers.I have lost my resource cd .

    If you are running Lion or Mountain Lion, the drivers are downloaded from within Bootcamp Assistant. If you are running Snow Leopard the drivers are on your Snow Leopard install disk.
    Read the Bootcamp Install Guide for your version of OSx. http://www.apple.com/support/bootcamp/
    Bootcamp questions should be asked in the Bootcamp forum where the Bootcamp gurus hang out https://discussions.apple.com/community/windows_software/boot_camp

  • I had a repair done on my MacBook Pro and had to have a new hard drive installed. The Apple Auth Repair Shop then updated the OS from 10.6.8 to 10.7.5. Now my iPhoto v 9.2.3 will not open and it sounds like it will not work with this OS. Can you plea

    I had a repair done on my MacBook Pro and had to have a new hard drive installed. The Apple Auth Repair Shop then updated the OS from 10.6.8 to 10.7.5. Now my iPhoto v 9.2.3 will not open and it sounds like it will not work with this OS. Can you please advise?

    You may need many other updates to retain compatibility with Lion. I suggest you reinstall Snow Leopard. Unfortunately, you will need to erase the drive first. Be sure to backup your data if you haven't done so already.
    Clean Install of Snow Leopard
    Be sure to make a backup first because the following procedure will erase
    the drive and everything on it.
         1. Boot the computer using the Snow Leopard Installer Disc or the Disc 1 that came
             with your computer.  Insert the disc into the optical drive and restart the computer.
             After the chime press and hold down the  "C" key.  Release the key when you see
             a small spinning gear appear below the dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, click on Options button
             and select GUID, click on OK, then set the format type to MacOS Extended
             (Journaled, if supported), then click on the Apply button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. After you finish Setup Assistant will complete the installation after which
             you will be running a fresh install of OS X.  You can now begin the update process
             by opening Software Update and installing all recommended updates to bring your
             installation current.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.

  • Input and output varaiables are not shown

    Hi,
    I am using BICS connectivity to connect to a BeX query from Xcelsius. I am able to logon to SAP use datamanager conn and also able to select a query. But after that the query input and output variables are not shown. Instead all those fields are greyed out. I am not sure whether am missing any configuration. Please let me know if anyone have workaround for this issue.
    Thanks,
    Sivakami - SEMC SAP team

    That is interesting.  The first (AES) is producing a 128-bit key, the second (aes) is producing a 256-bit key.
    Producing a 256-bit key should not be possibe without the JCE/JCA Unlimted strength policy files installed, I have those files, installed, do you?
    If someone who doesn;t have ththe policy files installed tried it, what do they get?
    I would suspect that the case-sensitive nature of the underlying JVM is causing it to choose a different Crypto Provider when you use aes than when you use AES. The JVM that ColdFusion ships with (and the standard JVM) have severa crypto providers to choose from, plus ColdFusion Enterprise and Developer addition also include the BSafe Crypto-J provider), I think there are 10-11 total.
    I would log a bug for this.
    FYI, you can control this by using the optional keylength argument in generateSecretKey()
    These two statements will produde keys with the same length.
    #arrayLen(binarydecode(generateSecretKey("AES", 128),"base64") )#
    #arrayLen(binarydecode(generateSecretKey("aes", 128),"base64") )#

  • I bought a new IPHONE from apple reseller and the earpiece is not working . There is no sound .Speaker and headfone are working but earpiece is not working . How can i get it replaced.

    I bought a new IPHONE from apple reseller and the earpiece is not working.
    There is no sound .Speaker and headfone are working but earpiece is not working.
    How can i get it replaced.

    You can get service information on this web page.
    Regards.

  • Sound on iPad is not working and I've tried all

    sound on iPad is not working and I've tried all.. Someone HELP me

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Check your settings. The iPads have a small switch on the right edge. It can be used as a rotation lock to keep the screen from automatically reorienting itself as you move around, but you need to have the tablet’s settings configured properly. That same switch, right above the volume buttons, can also be set to function instead as a mute button to silence certain types of audio.
    If the switch is set to work as a mute button, you can change its purpose to “screen-rotation lock” by tapping the Settings icon on the home screen. On the Settings screen, tap General on the left side, and on the right side of the screen flick down to “Use Side Switch to.” Tap to select Lock Rotation or Mute to set the button’s function. Even if you set the side switch for your preferred use, you can still mute the Mini or lock the screen. Just double-click the Home button, and when the panel of apps appears along the bottom edge of the screen, flick the row from left to right with your finger. Tap the icon on the far left side of the row to either lock the iPad’s screen or mute the iPad’s alerts, notifications and sound effects. Music, podcasts and video are not muted unless you turn the volume all the way down.
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/ts1630
    http://www.atreks.com/app-no-sound-on-ipad-4-%E2%80%93-what-to-do/
     Cheers, Tom

  • I'm trying to record in Adobe Audition and it keeps saying my the sample rates for my input and output devices do not match.  How do I correct this?

    I'm trying to record in Audition and it keeps saying my sample rates for the input and output devices don't match.  How do I fix this?

    I finally have communication between the ISA One and Audition. I moved the optic cable to another SPDIF on the computer and from the SPDIF to ADAT on the ISA One and it finally agreed that the communication was at the same clock speed. The audio was not intelligible so I moved the optic cable back to the original configuration and I can record voice that is clean.          

  • I have a 2007 iMac connected via WiFi. It has been working fine until I turned it on after a recent vacation. Network preferences indicates that it is correctly connected to my WiFI system but the data input and output rate is virtually zero. I know that

    I have a 2007 iMac connected via WiFi. It has been working fine until I turned it on after a recent vacation. Network Preferences indicates that it is correctly connected to my WiFI system but the data input and output rate is virtually zero. I know that the WiFI signal is reaching the iMac since both my iPhone and iPad are working perfectly at that location. I have rebooted the router and the iMac to no avail. Any suggestions would be greatly appreciated. Thank you very much. Geoff

    Hi Geoff,
    Hi, this has worked for a few...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    10.4 instructions...
    Is that Interface dragged to the top of Network>Show:>Network Port Configurations.
    If using Wifi/Airport...
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    Click OK.

Maybe you are looking for

  • Netscape 7.02 and Mozilla

    Dear Angels, This is a re-post from Using Mac OS 9.x. I have used Netscape 7.02 as my regular browser (with I.E.5.1.7.1 smi) as a backup. It seemed time to add new choices. I downloaded Mozilla from Mr. Knutson's wonderful site. After installing it,

  • My itunes cant open?!

    About two months back was the last time I remember my itunes working correctly. It was around the same time I downloaded Limewire. Whenever I tried to open it it would just show the user agreement page with "I agree" or "I decline" answers for about

  • Extremely inconsistent font sizes--tiny on page and huge in textboxes

    Hello, I am running Firefox 23 on Slackware Linux. My computer is an ultrabook with an relatively small, high resolution screen, so I have had to set a high dpi (190) to get font sizes rendered appropriately. The value of 190 was obtained by calculat

  • Security Pref Pane crashes System Prefs

    the details i've listed here haven't changed, but i finally had time to follow Kappy's instructions to use Pacifist: https://discussions.apple.com/message/12867147#12867147 while interesting and helpful for other, future needs this did not solve my i

  • I have CS 5.5 suite on my old iMac. I just purchased a new one.

    I have CS 5.5 suite on my old iMac. I just purchased a new one. Do I need to set up Creative Cloud on my old mac first, then access it on the new one?