How do I record audio, and listen to it through headphones at the same time? Macbook Pro

When using midi, everything works great!
But now I want to record the audio from a piano.. I can't work out how to listen to what I'm recording?
The same slot is used for the output and the input, so I'm a bit stuck.

Hi, Jake.
Are you using an external sound card?
If so, go to system preferences under the apple in the top RH corner of the menu bar. Open sound and select thus device as your audio output.
OS X automatically defaults to the laptop's internal speakers ans mic input.
Hope this helps,
Regards,
Scorpii.

Similar Messages

  • How can I record an Audio Instrument (saxophone) and listen to a reference track at the same time?

    How can I record an Audio Instrument, and listen to a reference track at the same time?

    Are you using an external audio controller or the line-in and headphone jacks on the side of your computer? You shouldn't have an issue using headphones when you're recording through the line-in but you may want to make sure you have monitoring on and it's going to the right place.
    If you're using an external audio controller, try making an aggregate device combining the controller and the "built-in output" into the same device. Go to Applications/Utilities/Audio MIDI Setup, click the "+" sign at the bottom left to make a new device and check the "use" boxes to the left of the physical devices you want to use as part of that aggregate device. That is how I use the computer's speakers or headphones to monitor my input as opposed to only being able to use the output on my audio controller.
    Now that I see some of the questions on the side of this page I realize that the 13" MBPs seem to have only one combined input/output jack... That is an incredibly stupid feature. What on Earth could possibly justify that design decision? I suppose if that's the problem you're having you'll have to buy some sort of splitter (if they even make them) or get an external audio controller like an Apogee Duet or something along those lines. I would be furious if they combined those two jacks on all of the MBPs.

  • I would like to connect both my iphone and ipod to my bluetooth headphones at the same time. Is there anything that I can buy to accomplish this

    I am trying to connect both my ipod touch 5h gen and also my iphone 5c to my bluetooth headphones at the same time. I have been told because of the way the operating system works this is not possible. I used to be able to do this on my old  non apple handset.
    The reason I would like to do this is because when I am listening to my ipod and have my phone in my pocket it is not connected to bluetooth and I am missing important phone calls some of which are business calls.
    Is there any type of device that i can get from apple to allow this to work.
    Regards
    Bodi

    The iOS implementation of the Bluetooth Protocol does not permit use of a Bluetooth device with more than one source at a time.

  • How can I show "Playlists" and "My music" side by side at the same time?

    This was possible in the previous version of iTunes. When showing Playlist and My music at the same time it was easy to draw tunes from My music to the right Playlist.
    My version of iTunes is 12.0.1.26.

    Thanks for reply
    ya ~ i've got a solution ~
    actually i am doing a server for mobile phone to get data. Sometime 1 single ID will send twice a message (usually nokXX mobile phones) .. i use milli sec to check those message ....
    n it seems working ....

  • How do I share photos and music between different user accounts on the same macbook

    How do I share photos and music between different user accounts on the same Macbook? i.e. I want all to be able to access family photos when logged into their respective accounts. Same goes for the iTunes library. Hope this is possible...
    Thanks!

    To give other users read-only access to your iTunes library, use the Sharing features of iTunes. Sharing works over the local network as well as on the same computer. See the built-in help for details.
    To give others selective access to your iPhoto library, you have the option of using iCloud Photo Sharing, if the privacy implications don't bother you. The images will be stored temporarily on Apple servers.
    If you want to give full read/write access to more than one user, see the support articles linked below.
    iTunes: How to share music between different accounts on a single computer
    iPhoto: Sharing libraries among multiple users
    There is a way to share the library without moving it to a secondary volume. If you really need to do that, ask for instructions.

  • In windows how do we install and activite multiple versions of tuxedo at the same time ?

    Hi All,
    In windows how do we install and activate multiple versions of tuxedo at the same time ?
    Advance wishes

    You can run different versions of Tuxedo on the same server, as long as they are installed in different directories.
    See PeopleTools 8.53 installation manual Task 3-1: Installing Oracle Tuxedo
    You can install Oracle Tuxedo once for each release on a machine, regardless of the number of PeopleSoft
    applications or databases the server supports. For example, if you are a PeopleSoft 9.1 customer and have
    Oracle Tuxedo 6.5 installed, you may install Oracle Tuxedo 6.5 and Oracle Tuxedo 11gR1 on the same
    machine in separate directories. For example:
    On Windows, you may install into C:\oracle\tuxedo11gR1_VS2010 and C:\tux65.
    On UNIX, you may install into /home/oracle/tuxedo11gR1 and /prod/tuxedo/6.5.
    E-TUX: Can Multiple Versions of Tuxedo Coexist on One Physical UNIX or Linux Server? (Doc ID 607828.1)

  • When im facetiming with someone and im watching a youtube video at the same time, the volume for the youtube video is lowered and the facetime volume stays the same, how can i change that?

    When im facetiming with someone and im watching a youtube video at the same time, the volume for the youtube video is lowered and the facetime volume stays the same, how can i change that?

    Have you ever even used skype on an iphone or ipod?  We tried it and there is no way to type to each other while you are video chatting.  You can do the typing during the video on a COMPUTER, but not on an iphone or ipod.

  • How to open and save pictures from 1 folder at the same time?

    Is there a way to open and save pictures from 1 folder at the same time?
    I'm creating a vi that resizes the picture but I want to do it with 1 folder at a time... Is this possible?
    greetings!

    Hi Kway,
    Here you are. I wrote a file a customer times ago & It did what you want!
    Just see the attachements and keep me inform.
    Regards,
    Julien Roland - District Sales Manager
    NI Belgium - Technical Support
    Don't forget to rate a good answer
    Attachments:
    Test existing Files.vi ‏23 KB
    Delete files from array of files (SubVI).vi ‏16 KB

  • Error : Old and new exceptions cannot be used at the same time.

    HI ALL,
    i build a new exception class with message class and i want to replace the
    old exception that i had in the method ,what i did is delete the exception from the method
    signature and add the exception class .
    the problem is that when i try to activate the method i get error :
    Old and new exceptions cannot be used at the same time.
    CALL FUNCTION 'CALCULATE_HASH_FOR_CHAR'
          EXPORTING
            alg            = 'MD5'
            data           = iv_iss
          IMPORTING
            hash           = lv_issu
          EXCEPTIONS
            unknown_alg    = 1
            param_error    = 2
            internal_error = 3
            OTHERS         = 4.
        IF sy-subrc <> 0.
          RAISE EXCEPTION TYPE cx_user_mng EXPORTING
          textid = cx_user_mng=>wrong_isrs.
        ENDIF.
    I want to use the new exception class ,
    how can i avoid this error ?
    Best Regards
    Edited by: Joy Stpr on Jul 22, 2009 2:56 PM
    Edited by: Joy Stpr on Jul 22, 2009 3:16 PM

    Hi Joy,
    Check this link.
    [Old and New Exceptions Cannot be used at same time|Urgent problem, give me a hand;
    Old and new exceptions cannot be used the same time, what does this mean???
    Regards,
    Lakshman.

  • How do i go about deleting a large number of files at the same time?  where's the easiest place to do it?

    how do i go about deleting a large number of files at the same time?  where's the easiest place to do it?

    A bit vague as to what you intend, but the simple answer is to select all the files you want to delete then either drag to the Trash or CTRL- or RIGHT-click on the selection and choose Move to Trash from the contextual menu.

  • HT1442 install and run mac os 10.4 at the same time mountain lion 10.8

    nstall and run mac os 10.4 at the same time mountain lion 10.8

    I was able to install Intel Tiger into VMWare Fusion 2.0; I was never successful at installing it in VMWare Fusion 4.
    If you have had success in version 4, please let us know how to do it!  Thanks!

  • Sound playing through speakers and Headphones at the same time...

    Hi everyone, I have a Toshiba Satellite A215 S5849. It is only about 6 months old. Now whenever I plug my headphones into the headphone jack, sound keeps playing through the speakers and in the headphones at the same time. Also the speakers do always have a crackling sound like they are blown. I have been trying to fix it for awhile now but no luck. Any help would be appreciated.

    Hello again, sorry that the driver did NOT resolve the issue. What I suggest we try is the Support Assistant. This will do a scan on your entire computer and if the computer does have a issue it will find it and show you how to resolve the issue. Please click on the following link to get to the download.  http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-110990-1&cc=us&dlc=en&lc=en...
    Thanks again.
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • Remote and direct update of master data at the same time

    Hello
    Is it possible to do remote and direct update of master data at the same time? If yes where it could be used?
    Thanks

    Hi,
    What do you mean by Remote Update ?
    regards
    Happy Tony

  • Is it possible to connect the iPad to an Infocus and a remote for ppt presentations at the same time?

    I've always used PC and I'm planning on making the transition to Mac.  That's why I'm considering buying an iPad. Today I went to Best Buys and the Mac guy told me that it isn't possible to connect the iPad to an Infocus and a remote for ppt presentations at the same time. Is that true?  I'm a speaker and that was the main reason I was considering buying an iPad, so I didn't have to carry my laptop. Thanks for your help!

    Thanks for your reply. Looks like it can as I have just found this https://www.youtube.com/watch?v=nKp02y4JXVs

  • HT3275 Time Machine on Macbook Pro and iMac both running 10.7.4 don't react the same. Macbook Pro runs back every hour even if asleep, and iMac only when it's awake. Why?

    Time Machine on Macbook Pro and iMac both running 10.7.4 don't  react the same. Macbook Pro runs back every hour even if asleep, and iMac only when it's awake. Why?

    I thought the backup whilst asleep was only used on Mountain Lion.. but perhaps it was also introduced with Lion.. anyway it is only enabled on later firmware.. in latest laptops.
    http://reviews.cnet.com/8301-13727_7-57480490-263/mountain-lions-powernap-featur e-requires-firmware-update/
    A quick google finds all sorts of info.. remember google is your friend.

Maybe you are looking for

  • Creation of new field

    Hi Alll, Can you give me some help in this area--- Requirement is 5 decimals in amot which i cant go with std sap------(Ie. I cant go with chnages in global settings) I want chnage the field KONP-KBERT) as with 5 decimal if its not possible can we ma

  • Acrobat won't print to installed printer, only to adobe pdf file

    This is a sudden problem, started about a week ago.  When I open or download a pdf file - any file - and try to print, the print box reads "adobe pdf."  No matter which installed printer I try to print to, the entry flashes back to adobe pdf.  This h

  • Conversion mapping is losing time zone data during daylight saving time

    We have a problem with conversion of Calendars to timestamp with timezone for the last hour of Daylight Saving Time (e.g. 01:00 EDT - 01:59 EDT) where it is being interpreted as Standard Time which is in reality 60 minutes later. We've written a JUni

  • ITunes will quit working mid-song and will skip around entire library.

    In the most recent iTunes version running on windows 7, iTunes will not play through an entire song and skips around the entire library of music. Sometimes only the first few seconds of a song will play, and sometimes a little over a minute will play

  • Deleting photos will not work, and my iPhone crashes

    Please help! Every time I attempt to delete a single or multiple photos, the "Photos" app crashes and takes me back to the home screen. If I check to see the results of the action, the photo(s) has not been deleted yet. I need to delete these photos