Can I record two stereo tracks at once in Logic 9.1.1?

I've read many people's arguments as to why one may or may not want to do this, but I do - to replicate a specific effect. My only question (really) is: if it can be done, how?
In PT, I just press record enable on the two tracks, and I am recording as I'd like - in Logic 9.1.1 I have yet to discover if, or how.....
I've tried a number of arbitrary key commands when clicking on the second track's "record enable" button, but to no avail.
Many thanks for your replies

Joel DuBay wrote:
I want to record on two separate stereo tracks, from the same source at the same time.
Why? Copying afterwards would yield the +exact same result.+
However, you can record two files at once: Create two audio tracks, the first takes the actual input and has its output set to say *Bus 29,* the second track has Bus 29 as an input, now you can record both tracks.
You can also use bus 13, 17 or 23. Or any other not yet in use.

Similar Messages

  • Can we record two transactions and use for  a Call-transaction BDC?

    can we record two transactions and upload data using Call-transaction method in BDC ?IF not why?

    Hi Prakash,
    Here i used two transactions.
    REPORT zra_gl_cr NO STANDARD PAGE HEADING LINE-SIZE 255.
    TYPE-POOLS: truxs.
    DATA: it_raw TYPE truxs_t_text_data.
    DATA:messtab1 LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.
    DATA:messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.
    DATA: bdcdata LIKE bdcdata OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF i_mess OCCURS 0,
      l_mstring(480),
      msgnr(5),
      msgv1(15),
      END OF i_mess.
    DATA:i_mess1 LIKE i_mess OCCURS 0 WITH HEADER LINE.
    DATA: l_mstring(480),l_mstring1(480).
    DATA: BEGIN OF it_itab OCCURS 0,
          saknr(10),    "G/L a/c number.
          bukrs(4),     "Company Code.
          ktoks(4),     "G/L a/c group.
          xplacct(1),   "P&L statement account.
          xbilk(1),     "Balance sheet account.
          txt20_ml(20), "G/L a/c short text.
          txt50_ml(50), "G/L a/c long text.
          waers(5),     "Account currency.
          MWSKZ(2),
          mitkz(1),     "Reconciliation a/c for a/c type.
          xopvw(1),     "Open item management
          xkres(1),     "Line item display.
          zuawa(3),     "Sort Key.
          fstag(4),     "Field status group.
          xintb(1),     "Post automatically only.
          hbkid(5),     "House bank.
          hktid(5),     "Account id.
          vzskz(2),     "Interest indicator
          END OF it_itab.
    DATA: hdate LIKE sy-datum.
                          Selection Screen                       *****
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 5(15) text-103. " FOR FIELD P_FILE1.
    SELECTION-SCREEN POSITION 25.
    PARAMETERS : p_file1 LIKE rlgrap-filename.
    SELECTION-SCREEN END OF LINE.
                          Initialization                         *****
    INITIALIZATION.
                       At Selection Screen                       *****
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
    Perform file_selection will help to select the location of the file
      PERFORM file_selection.
                       Start-Of-Selection                        *****
    START-OF-SELECTION.
    Perform data_upload will help to upload the data from the flat file
    to the internal table.
      PERFORM data_upload.
    PERFORM open_group.
       Peform bdc_upload will help to upload the data from the internal
       table into its respective fields.
    PERFORM bdc_fspo.
      PERFORM bdc_upload.
      PERFORM exp_log.
    PERFORM close_group.
       Perform display_log will prepare a log for the data that has been
       uploaded
       PERFORM display_log.
                        End-Of-Selection                           ****
    END-OF-SELECTION.
    *&      Form  file_selection
          To select the location of the file
    FORM file_selection .
      CALL FUNCTION 'WS_FILENAME_GET'
        EXPORTING
          def_filename     = ' '
          def_path         = 'C:\'
          mask             = ',.txt,.xls.'
          mode             = 'O'
          title            = 'Open a excel file'
        IMPORTING
          filename         = p_file1
        EXCEPTIONS
          inv_winsys       = 1
          no_batch         = 2
          selection_cancel = 3
          selection_error  = 4
          OTHERS           = 5.
    ENDFORM.                    " file_selection
    *&      Form  data_upload
         To upload the data from the file location to the internal table.
    FORM data_upload .
      CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
        I_FIELD_SEPERATOR        =
          i_line_header            =  'X'
          i_tab_raw_data           =  it_raw
          i_filename               =  p_file1
        TABLES
          i_tab_converted_data     = it_itab
       EXCEPTIONS
          conversion_failed        = 1
          OTHERS                   = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " data_upload
    *&      Form  bdc_upload
    To upload the data from the internal table into its respective fields.
    FORM bdc_upload .
      LOOP AT it_itab.
    perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ACC_CRE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_KEY-SAKNR'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_KEY-SAKNR'
                                  it_itab-SAKNR.
    perform bdc_field       using 'GLACCOUNT_SCREEN_KEY-BUKRS'
                                  it_itab-BUKRS.
    perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=2102_GROUP'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_COA-KTOKS'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-KTOKS'
                                  it_itab-KTOKS.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-XPLACCT'
                                  it_itab-XPLACCT.
    perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=2102_BS_PL'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_COA-XBILK'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-KTOKS'
                                  it_itab-KTOKS.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-XPLACCT'
                                 it_itab-XPLACCT.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-XBILK'
                                  it_itab-XBILK.
    perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTER'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-KTOKS'
                                  it_itab-KTOKS.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-XBILK'
                                  it_itab-XBILK.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-TXT20_ML'
                                  it_itab-TXT20_ML.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-TXT50_ML'
                                 it_itab-TXT50_ML.
    perform bdc_field       using 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_COA-BILKT'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-BILKT'
                                  it_itab-saknr.
        PERFORM bdc_dynpro      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=TAB02'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'GLACCOUNT_SCREEN_COA-KTOKS'.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                                       it_itab-ktoks.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-TXT20_ML'
                                       it_itab-txt20_ml.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-TXT50_ML'
                                       it_itab-txt50_ml.
        perform bdc_field       using 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_COA-BILKT'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-BILKT'
                                  it_itab-saknr.
    perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=TAB02'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_COA-KTOKS'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-KTOKS'
                                     it_itab-KTOKS.
    perform bdc_field       using 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_COA-KTOKS'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-KTOKS'
                                  it_itab-KTOKS.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-XBILK'
                                 it_itab-XBILK.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-TXT20_ML'
                                  it_itab-TXT20_ML.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-TXT50_ML'
                                  it_itab-TXT50_ML.
    perform bdc_field       using 'GLACCOUNT_SCREEN_COA-BILKT'
                                 it_itab-saknr.
    perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTER'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-WAERS'
                                  it_itab-waers.
    perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-MWSKZ'
                                  it_itab-MWSKZ.
    perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-MITKZ'
                                  it_itab-mitkz.
    perform bdc_field       using 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_CCODE-XOPVW'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-XOPVW'
                                  it_itab-XOPVW.
    perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-XKRES'
                                  it_itab-XKRES.
    perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-ZUAWA'
                                 it_itab-ZUAWA.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-XPLACCT'
                                       it_itab-xplacct.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-XBILK'
                                       it_itab-xbilk.
           IF it_itab-xbilk = 'X'.
       PERFORM bdc_dynpro USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
       PERFORM bdc_field       USING 'BDC_OKCODE'
                                     '=TAB03'.
       PERFORM bdc_field       USING 'BDC_CURSOR'
                                     'GLACCOUNT_SCREEN_CCODE-WAERS'.
       PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-WAERS'
                                      it_itab-waers.
         PERFORM bdc_field USING 'GLACCOUNT_SCREEN_CCODE-XOPVW'
                                  it_itab-xopvw.
         PERFORM bdc_field USING 'GLACCOUNT_SCREEN_CCODE-MITKZ'
                                  it_itab-mitkz.
       ENDIF.
       PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-XKRES'
                                      it_itab-xkres.
       PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-ZUAWA'
                                      it_itab-zuawa.
       PERFORM bdc_dynpro      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
       PERFORM bdc_field       USING 'BDC_OKCODE'
                                     '=SAVE'.
       PERFORM bdc_field       USING 'BDC_CURSOR'
                                     'GLACCOUNT_SCREEN_CCODE-FSTAG'.
       PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-FSTAG'
                                      it_itab-fstag.
       PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-XINTB'
                                      it_itab-xintb.
       PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-HBKID'
                                      it_itab-hbkid.
       PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-HKTID'
                                      it_itab-hktid.
       PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-VZSKZ'
                                      it_itab-vzskz.
    perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=TAB03'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_CCODE-WAERS'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-WAERS'
                                  it_itab-WAERS.
    perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-MWSKZ'
                                  it_itab-MWSKZ.
    perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-MITKZ'
                                  it_itab-MITKZ.
    perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-ZUAWA'
                                 it_itab-ZUAWA.
    perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTER'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_CCODE-FSTAG'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-FSTAG'
                                 it_itab-FSTAG.
    perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=SAVE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_CCODE-FSTAG'.
    perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-FSTAG'
                                  it_itab-FSTAG.
       PERFORM bdc_transaction USING 'FS00'.
        CALL TRANSACTION 'FS00' USING bdcdata MODE 'A'
                                              UPDATE 'S'
                                             MESSAGES  INTO messtab1.
        PERFORM mess1.
        REFRESH bdcdata[].
      ENDLOOP.
    ENDFORM.                    " bdc_upload
    *&      Form  bdc_fspo
          text
    FORM bdc_fspo .
      LOOP AT it_itab.
        PERFORM bdc_dynpro      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=ACC_CRE'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'GLACCOUNT_SCREEN_KEY-SAKNR'.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_KEY-SAKNR'
                                      it_itab-saknr.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_KEY-KTOPL'
                                      '1000'.
        PERFORM bdc_dynpro      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=2102_GROUP'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'GLACCOUNT_SCREEN_COA-KTOKS'.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                                      it_itab-ktoks.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-XPLACCT'
                                       it_itab-xplacct.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-XBILK'
                                      it_itab-xbilk.
        PERFORM bdc_dynpro      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=SAVE'.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                                       it_itab-ktoks.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-XPLACCT'
                                       it_itab-xplacct.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'GLACCOUNT_SCREEN_COA-TXT50_ML'.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-TXT20_ML'
                                       it_itab-txt20_ml.
        PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-TXT50_ML'
                                       it_itab-txt50_ml.
    *perform bdc_transaction using 'FSP0'.
        CALL TRANSACTION 'FSP0' USING bdcdata MODE 'A'
                                              UPDATE 'S'
                                             MESSAGES  INTO messtab.
        PERFORM mess.
        REFRESH bdcdata[].
      ENDLOOP.
    ENDFORM.                    " bdc_fspo
    *&      Form  mess
          text
    -->  p1        text
    <--  p2        text
    FORM mess .                                                 "fsp0
      LOOP AT messtab.
        CALL FUNCTION 'FORMAT_MESSAGE'
          EXPORTING
            id        = messtab-msgid
            lang      = messtab-msgspra
            no        = messtab-msgnr
            v1        = messtab-msgv1
            v2        = messtab-msgv2
            v3        = messtab-msgv3
            v4        = messtab-msgv4
          IMPORTING
            msg       = l_mstring
          EXCEPTIONS
            not_found = 1
            OTHERS    = 2.
        CONDENSE l_mstring.
        i_mess1-l_mstring = l_mstring(250).
        i_mess1-msgnr = messtab1-msgnr.
        i_mess1-msgv1 = messtab1-msgv1.
        APPEND i_mess1.
      ENDLOOP.
    ENDFORM.                    " mess
    *&      Form  mess1
          text
    -->  p1        text
    <--  p2        text
    FORM mess1 .                                                "fs00
      LOOP AT messtab1.
        CALL FUNCTION 'FORMAT_MESSAGE'
          EXPORTING
            id        = messtab1-msgid
            lang      = messtab1-msgspra
            no        = messtab1-msgnr
            v1        = messtab1-msgv1
            v2        = messtab1-msgv2
            v3        = messtab1-msgv3
            v4        = messtab1-msgv4
          IMPORTING
            msg       = l_mstring1
          EXCEPTIONS
            not_found = 1
            OTHERS    = 2.
        CONDENSE l_mstring1.
        i_mess-l_mstring = l_mstring1(250).
        i_mess-msgnr = messtab1-msgnr.
        i_mess-msgv1 = messtab1-msgv1.
        APPEND i_mess.
      ENDLOOP.
    ENDFORM.                                                    " mess1
    *&      Form  exp_log
          text
    -->  p1        text
    <--  p2        text
    FORM exp_log .
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename = 'c:\temp\error_fsp0.txt'
          filetype = 'DAT'
        TABLES
          data_tab = i_mess1.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename = 'c:\temp\error_fs00.txt'
          filetype = 'DAT'
        TABLES
          data_tab = i_mess.
    ENDFORM.                    " exp_log
    *&      Form  bdc_dynpro
          text
         -->PROGRAM    text
         -->DYNPRO     text
    FORM bdc_dynpro USING program dynpro.
      CLEAR bdcdata.
      bdcdata-program  = program.
      bdcdata-dynpro   = dynpro.
      bdcdata-dynbegin = 'X'.
      APPEND bdcdata.
    ENDFORM.                    "BDC_DYNPRO
           Insert field                                                  *
    FORM bdc_field USING fnam fval.
      CLEAR bdcdata.
      bdcdata-fnam = fnam.
      bdcdata-fval = fval.
      APPEND bdcdata.
    ENDFORM.                    "BDC_Field
    ********Rewards some points.

  • Logic X version10.0.7 won't let me record two audio tracks simultaneously how can I rectify this please?

    I've got two mics set up through my Focusrite Scarlett 2i4 on Audio tracks 1 and 2 on Logic.  Both channels seem to be reading the signal ok.  However, when I go to record anything only  track 1 or 2 record any signal and not simultaneously.
    If anyone has had similar problems or can help me it would be very much appreciated!

    Hello, yes I am using Mono tracks.
    The input select is greyed out as can be seen in the screenshot.  It won't allow me to do anything!

  • Can alesis multimix 6 usb record two independent channels at once?

    Hello All,
    Bought the multimix 6 usb as a simple way to record two players in logic studio.
    Cannot get independent control over channel 1 and channel 2,  both are
    recorded together?
    Someone said USB cannot record independent channels that i need firewire?
    DWR

    Bryan did you look at the Firewire 410 and 1814?
    Yes, I looked at the 410. They said "2 x8 24-bit analog I/O" but I'm not sure what that means because it also says "dual mic/instruments preamps w/ gain control (66dB available gain) and phantom power". So I understand that to mean it will only run two of my SE1A mikes and I'm not clear what the other 8 analog I/Os are. Perhaps they're line inputs that can be fed from an external mixer? That would be fine.
    If I buy this gizmo, will GarageBand (or Ableton Live) allow me to choose any of the 8 inputs for a track, so I can record multiple inputs on multiple tracks simultaneously?
    These are great times for home recording, eh? The 410 is only $300 at Zzounds.
    I looked at the close-up picture at Zzounds. It shows 8 "Line Outputs" and two "Line Inputs" jacks. Surely this is a labeling mistake? I want instrument inputs.

  • Garageband w/ Mbox 2 Pro help please. Can we record in stereo? Should we buy a different interface?

    Hello all and thanks in advance for trying to help. I'll try to give all the details straight up so I can get direct answers. I appreciate your help.
    (By the way this is my first post in the comunity so forgive me if I do something wrong).
    The long story short:
    - I sing in a 3 person chorus group in Japan.
    - We recieved a Digidesign Mbox2 Pro from our manager. (She was told by an engineer in our production agency that we should be able to record easily with it)
    - We recieved the MBox 2 Pro itself ONLY. No cords, no software, just the actual interfact itself.
    - We bought: 1 Dynamic mic, 1 mic stand, 2 headphone adapter jacks, Stereo speakers, & 1 firewire cord to connect the Mbox2 to the Macbook.
    - We could not find an AC power adapter of the right size, so we have no power adapter. The only power going through the Mbox is power coming from the Mac itself.
    - We do not have an instruction manual or anything, therefor we don't have the product number or whatever we need to register the interface.
    - We can't register, so we can not call the Avid company help center.
    - We don't own Pro Tool software. We are using Garageband.
    - We downloaded drivers for the Mbox2 online.
    I think that covers it all.
    Now, we finally have everything connected and the Mbox2 is working with Garageband. We can record but now the real problem is that when we playback what we've recorded through our speakers the vocal tracks only play through the LEFT speaker. The audio track and echo effect from the vocal tracks play from both speakers, but the actual recordings of our voices only playback through the left speakers.
    What do we do now?
    Is there something we can do to make it so that we are able to record in Stereo?
    Should we look into starting from scratch and buying our own audio interface system? If so do you have any reccommendations?
    Other points of interest (that may help):
    - None of us play instruments so we won't be connecting a guitar to the interface or anything.
    -We each have a Macbook laptop computer that we use. The OS's are as follows:  OS X 10.6.8, OS X 10.5.8, & OS X 10.5.8
    - The OS X 10.6.8 Macbook won't connect with the Mbox2 Pro.
    - Mic specs: SHURE SM58 Dynamic Legendary Vocal Microphone
    We are desperate need of help. Anything at all would be appreciated.
    Thank you for your time.

    Thank you for your time and advice.
    When I set the Input Source to Mono there is no sound coming from the microphone into Garageband.
    There are 6 mono options: Mono 1 (Didgidesign MBox2 Pro) - Mono 6 (Digidesign MBox2 Pro). And 3 stereo Options: Stereo 1/2, Stereo 3/4, & Stereo 5/6.
    The only one that produces sound from the microphone is Stereo 1/2. when I choose the other options no sound appears when I press record.
    (The Mic is plugged into Input 1 if that helps at all)

  • How can I record two instances of Addictive Drums simultaneously?

    Hi, I'm having no luck with something I thought would be simple.  I want to run and record two iterations of XLN Addictive Drums in two separate tracks simultaneously in Garage Band X.  I play a Yamaha DTXtreme IIIs e-kit as the MIDI trigger.  Because Addictive drums doesn't have enough "openings" in a single kit to accomodate all my cymbals, I want to run two iterations with the extra cymbals on an iteration.  Unfortunately, no matter what I try, I can't get both tracks to record simultaneously, even though I enabled multi-track recording and armed both tracks.  Help?

    flagg1337 wrote:
    no matter what I try, I can't get both [software] tracks to record simultaneously
    unfortunately, while GB can record many audio tracks, it is restricted to a single MIDI track at a time.
    fortunately, GB offers "Cycle Recording," perhaps that will work for what you're attempting
    turn it on in GB's prefs, turn on the Cycle Region button and hit record. each pass will merge with the previous one, so you could, for example, play kick, wait till the next pass to play the snare, etc

  • Why is audition recording the stereo tracks unequally?

    I just upgrade to 3.0 from 1.5 and I must say I have been racking my brain for hours trying to figure out all my problems. I found most by scrolling old posts but this one I cant find. After installing the program I opened a beat in the first track of multiview. I tried recording and I was having latency issues so I took the advice that popped up in a message prompting me to switch to ASIO drivers. I opened the audio hardware tab and selected my mic (02s) (samsung C01U). Now, when I record in stereo the volumes dont record evenly. The left ear records just a little bit louder then the right ear. On the bottom where the mic level are the top bar stays a precise amount away from the lower bar (about 2 inches). So when I record, the top level (left ear) records normal and the bottom level (right ear) in considerable lower. Doesn't sound good. I know I could equalize it using effects but I want it to record evenly. Anyone know how to fix this. I have VIA High Def Sound Card (I think...thats what it says under device manager) and windows 7. I was messing with the settings in my ASIO4ALL control panel trying to fix the latency issues so maybe I screwed something up there. What default setting should I put in the boxes in the ASIO4ALL control panel?

    Phate008 wrote:
    Have I been recording wrong this whole time?
    Yes.
    Do people record into mono mics often or do most people use stereo mics? Also why would stereo record equally in 1.5 but not in 3.0?
    All microphones are essentially mono. If you have two of them closely adjacent but pointing in different directions in one casing (aka a 'stereo' mic), you will get some sort of stereo from them - depending on how good they are. The vast majority of people use mono mics for single voices though - there is no benefit from using a stereo one for this at all. And there is absolutely zero benefit in recording a mono mic in stereo - it just wastes file space, because both channels will contain absolutely identical information. In fact using a stereo mic pair for recording a single voice is counter-productive - you end up using the variable part of the mic's polar pattern on both mics (not so good), and the slightest physical movement of the vocalist shifts the sound in the mix considerably. This is way easier to control with a single mono mic - the only determinant of where it sounds in the mix is the pan control.
    The reason you are experiencing a difference has nothing to do with Audition at all, but everything to do with using a different driver. The present driver for your mic only outputs signal on one channel in stereo mode - which is pretty ridiculous; it shouldn't even have a stereo mode!  What you should do is select a mono input - which will say something like [01m] on it in Audition, and use that to record, using the pan control to position the sound in the mix.
    In a properly set up stereo monitoring system, a mono source wil appear in a single (vurtual) location between the speakers, depending on where the pan control is set. If this doesn't happen on your setup, then you need to fix the acoustic conditions around the speakers so that it does, otherwise you won't have the faintest clue about what your mixes really sound like.
    I'm sorry that this all sounds a bit harsh, but I'm afraid that this is the way it is...

  • Can findText find two different objects at once?

    I have written a script that finds all italicized words, then compares them to a character style that italicizes characters. If there are any italicized words that do not use the character style, the user is alerted.
    Of course, not all fonts use a fontStyle that equals "Italic." Some use a fontStyle called "Oblique."
    I was trying to figure out how the findText function could find two fontStyles at the same time. My solution was to realize that each find is an array. So I made two finds and the concatenated the arrays. The resultant array (here called myFoundItems) elements can be searched through to find any that do not have the correct character style applied.
    My question is if the findText function can find more than two different objects at once or are we stuck with concatenating arrays?
    Below is part of the script:
    var myDoc = app.activeDocument;
    initFindReplace(); [This function zeros out anything left in the find/change preferences]
    app.findTextPreferences.fontStyle = "Italic";
    var myFoundItems1 = myDoc.findText();
    initFindReplace();
    app.findTextPreferences.fontStyle = "Oblique";
    var myFoundItems2 = myDoc.findText();
    initFindReplace();
    var myFoundItems = myFoundItems1.concat(myFoundItems2);
    Thanks,
    Tom

    Tom,
    The reason why you end up with an array of arrays is this: you define an array allMyFoundItems, then you iteratively collect other arrays using findText and insert ("push") these arrays into allMyFoundItems. Instead, you should use concatenate:
    var allMyFoundItems = new Array;
    for (. . .
       var myFoundItems = myDoc.findText();
       allMyFoundItems = allMyFoundItems.concat (myFoundItems)
    If you'll allow me a further comment, you could formulate your test to check whether a fontstyle name contains oblique or italic in one line:
    >if (arrFontStyles[k].search (/(italic|oblique)/i) > -1)
    And as the script searches but doesn't change anything, there's no need to set the ChangeTextPreferences. Your script could then be stated as follows:
    var myDoc = app.activeDocument;
    var arrFontStyles = myDoc.fonts.everyItem().fontStyleName;
    aa = findFontStyle (arrFontStyles);
    function findFontStyle (arrFontStyles)
       var allMyFoundItems = new Array;
       var myFoundItems2 = new Array;
       app.findTextPreferences = NothingEnum.NOTHING;
       for(var k = 0; k < arrFontStyles.length; k++)
          if (arrFontStyles[k].search (/(italic|oblique)/i) > -1)
             app.findTextPreferences.fontStyle = arrFontStyles[k];
             var myFoundItems = myDoc.findText();
             allMyFoundItems = allMyFoundItems.concat (myFoundItems);
             }//end if
          }//end for k
       return allMyFoundItems;
       }//end findFontStyle function
    As to formatting scripts in the forum, you can do this by wrapping your code in <pre> and </pre>. Also replace < with &lt; (< causes all lines of code to be displayed on one line). You should also replace curly quotes with straight codes, and tabs with (non-breaking) spaces. I use the following script for that:
    tf = app.documents.add().textFrames.add ({geometricBounds: [0,0,'700pt','500pt']})
    tf.insertionPoints[0].select();
    app.activeDocument.textPreferences.typographersQuotes = false;
    app.paste();
    app.findGrepPreferences = app.changeGrepPreferences = null;
    sara (tf, '&', '&amp;');
    sara (tf, '<', '&lt;');
    sara (tf, '\\t', '   ');
    sara (tf, "'", "'");
    sara (tf, '"', '"');
    tf.parentStory.insertionPoints[0].contents = '<pre>';
    tf.parentStory.insertionPoints[-1].contents = '</pre>';
    function sara (tf, f, r)
       app.findGrepPreferences.findWhat = f;
       app.changeGrepPreferences.changeTo = r;
       tf.parentStory.changeGrep ()
    Copy the text of the script you want to prepare for posting, then run this above script. It creates a new InDesign document, pastes your script into it, and makes all the necessary changes. Then copy that and paste it into the forum.
    Peter

  • Can you open two seperate apps at once?

    Can you have two separate apps open at once?

    Yes and no. When you open other apps they are all still open in the back ground. You can quickly access them by double tapping the home button to display the multi tasking bar. Also you can quickly access the last used app by swiping with four fingers from right to left or accessing the multi tasking bar by doing a four finger swipe upwards.

  • HT2499 How can I watch a movie and have two subtitle tracks at once?

    How can I watch a DVD using Mountain Lion's DVD player with multiple subtitle tracks, such as english and chinese, simultaineously?

    This will depend on the media player. I do not believe DVD Player in OS X offers this, and don't think even versatile players like VLC or MPlayer support it. Most give you the option for one subtitle track at a time.
    One option is to use a transencoder like Handbrake to rip the DVD and "burn in" one of the subtitle tracks but include the others. This way the burned in one will always display, and you can then enable the second one. It's a bit of a workaround, but will ultimately do what you're looking for.

  • Can't record software instrument track to an audio track

    I'm frustrated at the moment. I'm sure this has worked before.
    I have a project that contains external MIDI tracks, software instrument tracks and Garageband instrument tracks. All tracks play when I unmute them. The external ones play thru a Roland synth and audio comes back via ADAT thru my Firestudio interface.
    I created an audio track for each MIDI track. I can record the output of each synth track as audio one at a time. But if I unmute one software instrument track, send it's output to channel 1 and 2, set the inputs of my record-enabled track to 1 and two I get no audio recorded. I know it's gotta be something simple that's wrong, but can't figger it out.

    If you want to record an internal software instrument to audio you can just select the track and use the "export track as audio" command from the file menu. Or you can select the regions and use the bounce in place feature or solo the instrument in question and use the bounce command and import the resulting file. Logics INPUTs 1 and 2 are not the same as Logic's OUTPUTS 1 and 2. If they were you'd get a feedback loop. If you are careful and MUST do it this way, you can cable from outs 1&2 to inputs 1&2 but you must first disable the output the track you are recording on to to avoid feedback.

  • HT1311 Can I have two ITunes accounts at once.  For example one for Canada and the other for France?

    Would someone be able to tell me if I can maintain two I tunes accounts at once.  We  like to downloads movies from the French Itunes movie site but would also like to keep at the same time our Canadian account.  I'm  not to keen on having to cancel one account in order to access another.

    Welcome to the Apple Community.
    You can't keep changing accounts in iTunes, you will need to wait 90 days after changing once. You would need to use two computers or use two user accounts.

  • Problem recording 2 instrument tracks at once - new user

    I want to simultaneously record an EXS24 bass with my left hand and an EVP88 piano with my right.
    So I:
    check "Auto demix by channel...." in the "Settings/Recording/MIDI" page
    set each track to its correct MIDI channel
    arm both tracks to record
    select track 1 or 2 in the arrangement window
    record the two tracks, playing both hands together on the downbeat
    The first note played on the un-selected track is always delayed noticeably, throwing my playing off. I have a couple of midi keyboards - they both do this. The only workaround I've found is to start the count-in a bar early and play a note with each hand to be thrown away.
    I'm using the latest version of Logic Pro 9 with an Apogee Duet.
    Thanks for any help.

    This is a Logic issue that needs fixing. The work-around is to record (for example) a bit of MIDI controller data like a mod wheel movement during the count-off period. That will kick start the MIDI instruments without being audible.

  • RECORDING MULTIPLE AUDIO TRACKS AT ONCE

    Hello. Looking for some help. I am using LOGIC PRO and a Presonus Project Studio 8 input AD converter. I have 6 drum mics up and Presonus is recognizing them. I have created 6 audio tracks in Logic and named them appropriately. I go to record them and all I get is the kick drum...no other mics are recording on their own tracks....
    Can someone help guide me?

    Three ways of doing this:
    In your mixer slide over the tracks with your mouse - they all turn white/grey - hit record on one of the tracks - all tracks will get armed with the red flashing R button.
    or
    Hold the shift key and select the tracks in your Arrange - arm one of them - all tracks go into record mode.
    or
    group the tracks together in a group via the grouping slot above the channel fader, in the group options menue select record enable - arm one of the tracks - all tracks go into record mode.

  • Recording two separate inputs at once

    I have a USB snowball and a plugged in acoustic guitar (using the line in/out of the macbook). I am able to record the guitar by connecting a wire that has 3.5mm head on both sides in garageband on its own. Same for the USB snowball to record vocals. How can I put the two of them together to record simultaneoously? I have tried the process of aggregate device but only the snowball has inuput.

    You may want to post your question in the GarageBand forum - https://discussions.apple.com/community/ilife/garageband - that's where the GB experts hang out.
    Good luck,
    Clinton

Maybe you are looking for

  • 0FI_AR_4 delta problem

    We have recently implemented the 0FI_AR_4 extract of AR customer items into BW in conjunction with some of the Collections Management targets.  This appeared to be working well and was giving the data we expected.  However, after we started loading i

  • Add Item using REST and populate People field (SharePoint 2010)

    I am trying to add an item to a list that has a People type field using REST API.  For some reason, I am getting 400 (Bad Request) error.  Can anyone show me how to add a list item and populate the user field? Here's the code snippet I am using - var

  • K9N6PGM2-V

    Can anyone confirm me which cpu's this board takes?  By what I read on MSI's website it looks like it can go all the way up to a Phenom II. Thx

  • How to include website made by another program in iWeb?

    A program I have created a set of web pages for me that are connected. If I click on the index page, it opens in safari. How do I import these pages into iWeb so they work on my .mac website?

  • Paint for nokia 5800

    Good morning. I wanted to ask if the model 5800 is something like a paint.