Question about cropping multiple tracks at the same time

Ok, here is the situation. My band jams reguarly, and I am recording 8 tracks concurrently.... each instrument gets their own mic/input.... typical band fare.
The recording will last a solid 45-60 minutes before we break. In the meantime, there is plenty of downtime, and multiple songs.
After the jam, I like to cut out the crap, bad takes, etc....
I do this by editing the waveform of each track individually, selecting the 'good region'.... copying the section ... and pasting into a new track... I repeat this 8 times... once for each track....
I then mute the original 8 tracks, move all the clips to timecode 0 and export to disk....
Needless to say, this is very, very time consuming, and I would like some input about a better way to do this.
Is it possible to select the same region across multiple tracks and copy/paste them into several new tracks? Or is it possible to define the 'playable region' of a larger region so that when I export, I am only exporting the region I am interested in?
Ultimately, I want to produce an exported .m4a for each 'good take' which is nothing more than a subset of the larger 60 minute take....

Have you tried selecting all tracks, then split at the beginning and ending of the "good take" then copy and paste it into a new GB file?

Similar Messages

  • Mulitple controllers and multiple tracks at the same time

    I have multiple keyboard controllers and rack modules. I would like to have each of them individually control their own midi tracks(connected to external rack modules) at the same time, so I can record live performances. Right now I create a track set the port and channel and I can play the desired external module one track at a time, but the second I try to use more than one controller they all play the same module.
    I come from Pro Tools.... and in that program for each channel I am able to select an input port/channel and an output port/channel and it works fine, but in logic I can't seem to select an Input port/channel for the individual tracks, they all seem to be the same. Where or how would I do this so I can streamline my setup?

    http://discussions.apple.com/thread.jspa?messageID=8065879&#8065879
    Eddie

  • Question about using multiple iPods on the same PC

    I've read the FAQs on this subject but I still have a couple of questions about multiple users with separate iPods using the same PC.
    I want to use my family's desktop (A new Gateway with Vista, if it matters) for my new iPod Classic, but my father already has an iTunes account on there for his iPod. I know I can create a new user account on the PC and move iTunes to a shared folder so that we can share music, but will this second account be able to purchase music from the iTunes store or am I going to have to switch between Windows User accounts to make purchases and then move new songs into my separate iTunes account via the shared folder? Will it be its own separate iTunes account (separate user name, separate credit card used, etc.) or will it just be a second library that's dependant on the first?
    I want to be able to have my own iTunes account, make my own purchases in it, and maybe occasionally share tv shows or something with my father.
    If this can't be done, would I be better off just creating new playlists for our two iPods from the same library, or creating a second library on my Father's account?
    Also, if I want to access things I've purchased from iTunes on this desktop in iTunes on my notebook, will I be able to?
    I hope that made sense.
    Sorry if these seem like silly questions. This will be my first iPod as I'm really excited about the 160gig and want to know if these things are possible.
    Thanks in advance for any help

    Hi, Wes.
    Congratulations on your new iPod Classic and Welcome to the Apple Discussions.
    For no particular reason, let's answer your last question first ...
    ... if I want to access things I've purchased from iTunes on this desktop in iTunes on my notebook, will I be able to?
    The iTunes Store operates on a one download per purchase policy so you will have to copy the purchases from one computer to the other and make sure that you authorize the laptop to play the songs.
    As to your first question ...
    ... will this second account be able to purchase music from the iTunes store or am I going to have to switch between Windows User accounts to make purchases ...
    Whatever XP User Account you are logged in to doesn't really matter. What's important is which Apple Account you sign in to ... yours or your Dad's or - if you had my Apple ID and password - The Mimico Kid's for that matter. You can sign in to any Apple Account on any XP User Account. Or any computer for that matter.
    Where the XP User Account comes into play is that it will determine where on your computer the purchases are downloaded. Files will be sent to the iTunes Music folder as specified in the iTunes Edit menu > Preferences > Advanced tab > General sub-tab. Default settings will have a different location for each User Account - C:\Documents and Settings\ user name \My Documents\My Music\iTunes - but if you've read this article in the Apple Knowledge Base, you will know you can change the location of the iTunes Music folder in each XP Account to a common location such as C:\Documents and Settings\All Users\Documents\My Music\iTunes.
    Post back if all this hasn't been as clear as mud and you need anything clarified.

  • Fast/most efficient way to cut out of multiple tracks at the same time

    I try to select by dragging around but it lights up the entire length of each tract- I can use the scissors to manually cut the tracks but there has to be a better way...any ideas?
    Thanks, Don

    I don't know if this is most efficient but here's my "home grown" way:
    I place the section locator bars located at the top in the area I want to cut. You can fine tune this by zooming in close. I then right click on the track and use the split at locator function. I then can cut, drag or copy just that new, separate area. If you want to cut multiple tracks you can leave the locators where they are and repeat on all the tracks you want to split. I haven't tried selecting multiple tracks, and I'm not at my computer to try it right now.
    Maybe there's a quicker way but that has worked for me!

  • Help with recording 2 tracks at the same time

    Basically I recently purchased an Audio Interface (BEHRINGER XENYX Q802 USB) and I'm having trouble recording multiple tracks at the same time while using it.
    When I set up 2 MONO tracks in my DAW (one using input 1, the other using input 2) all that happens is that I get a recording of one mic over both tracks in my DAW.
    This is probably a beginner post and I have looked it up on YouTube etc. but it just doesn't work for me... Maybe it has something to do with my Interface, but any help will be much appreciated.

    Hi Pancenter,
    Unfortunately I don't have the manual as I purchased it from a friend who failed to provide me with the Manual.
    But thank you for answering as this was what I needed to do.
    Many thanks
    Olie.

  • How would I go about adding multiple rectangles using the same lines of code?

    How would I go about adding multiple rectangles using the same lines of code? I would prefer to just run through a set of code every time I need a polygon. If I just have to create multiple polygon adding statements that's fine but I'd prefer just 1.

    >>How would I go about adding multiple rectangles using the same lines of code?
    You could create a method that creates and returns x number of Rectangle elements:
    public IEnumerable<Rectangle> CreateRectangles(int numberOfRectsToCreate)
    for (int i = 0; i < numberOfRectsToCreate; ++i)
    Rectangle rect = new Rectangle();
    rect.Fill = Brushes.Blue;
    rect.Width = 100;
    rect.Height = 100;
    yield return rect;
    ..and then call this method from anywhere in your code:
    IEnumerable<Rectangle> rects = CreateRectangles(5);
    foreach (Rectangle rect in rects)
    //add to StackPanel or do whatever with the Rectangle elements:
    yourStackPanel.Children.Add(rect);
    >>If I just have to create multiple polygon adding statements that's fine but I'd prefer just 1.
    When adding Point objects to a Polygon you can only add one per call to the Add method but you could call the Add method inside a loop, e.g:
    for(int i = 0; i < 10; ++i)
    //add to StackPanel or do whatever with the Rectangle elements:
    Polygon p = new Polygon();
    p.Points.Add(new Point());
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question. Please don't post several questions in the same thread.

  • Every time i play a song in my i-tune 10.6, about up to half way mark, i-tune will automatically skip to the next track and playing it (next track) at the same time as the current track.

    Every time i play a song in my i-tune 10.6, about up to half way mark, i-tune will automatically skip to the next track and playing it (next track) at the same time as the current track. i don't know if anyone has the same problem, but i haven't sync my ipod touch 4 gen to my i-tune playlist for the longest time, cus i was afraid to transfer the problem to it since i have a pc (win 7) but not MAC.

    i am sorry, guys, but  I really really really need you guys' help. if u know ANYTHING...

  • Preview multiple video tracks at the same time.

    This may have already been covered at some point on here but I was unable to find it. Please forgive me if it has.
    I'm editing a 2 camera presentation for a company. I've laid both cameras in the sequence. Camera 1 is on V1 and Cam 2 on V2. They are in sync and ready to go. My questions is, "Can I preview or monitor both tracks at the same time as if I was switching this live?" I want to be able to preview cam 1 at the same time cam 2 is playing on the canvas so I know when to cut V2 and switch to V1. Is this possible to do in FCP? Thanks in advance for any help you can give me.
    Thanks!
    Mike

    It's not your only option, though you could do that if you wish.
    You can still finish the edit with multiclip...(provided your clips are still in sync)
    With your playhead at your last cut point, option-click on V1 to activate it's track selector as the only one active, then hit the 'f' key (this will load clip one in the viewer at that point in time). Set an inpoint on clip 1, the do the same for V2 (clip 2)
    Next select both clips in the browser and hit control-click / Make Multiclip. Choose 'Synchronize using: In Points', click ok.
    Now dbl-click the new multiclip in the browser, make V3 active and hit F-10 (overwrites the multiclip onto V3)Next, dbl-click the V3 multiclip in the timeline, go to the top/center button of the viewer and set the Sync to 'Open'. Then, single-click in an open space in the timeline, place your playhead at the head of the new V3 multiclip and hit the space bar. You should see both clips rolling in sync in the viewer.
    Check the manual for Multiclip button bars and any additional settings like activating 'Multiclip Playback'.
    K
    PS - you might want to duplicate your working timeline to test this procedure, then you can always delete the old clips and drop your V3 multiclip on to V1 to finish the edit.

  • Multiple Inst tracks recorded @ the same time

    I AM TRYIN TO RECORD TWO INST TRACKS AT THE SAME TIME USING TWO SEPERATE MIDI DEVICES. IS THIS POSSIBLE, AND IF SO HOW IS IT DONE ?
    THANKYOU.

    Ok, let's try step-by-step.
    I'm assuming you already have in the arrange window two instrument tracks for Inst1 and Inst2 such that you can play/record each instrument individually.
    Now proceed as follows
    1. Open the environment and choose the Audio layer. From the New menu choose the Channel Splitter. It appears on the window. Make sure that its Icon box is checked in the parameter box. Then draw cables from output1 to Inst1 and output2 to Inst2.
    2. Open the arrange window. Create a new track. Click and hold the track name, from the popup menu select (Channel Splitter). Voila, now we have the channel splitter track!
    3. Make sure the channel splitter track is selected.
    4. Make sure your midi devices are sending on midi channels 1 and 2.
    Now you should be able to play and record both devices at the same time. The recorded notes will first appear on the channel splitter track. After recording select the region and apply 'Demix by Event Channel'. This will create two new tracks containing the recorded notes of each instrument. For playback drag both regions to the original instrument tracks.
    Good luck! Feel free to ask if something doesn't work as expected.

  • Does af:commandButton submit multiple requests at the same time?

    Hi experts,
    I have a question about af:commandButton behavior.
    I have two commandButtons in a page. They are button1 and button2.
    Button1 takes a few seconds to complete its request process.
    So when I click button1, I can click button2 although button1 request is still being processed.
    I checked how ADF faces handled this situation with servlet filter.
    And I saw that button2 request was always submitted after button1 request was completed.
    Due to this behavior, I would assume that commandButton is designed not to submit multiple requests at the same time and guarantees click order.
    However I couldn't found any documents specifying this feature of commandButton.
    If anyone knows it, could you share?
    I know ADF Faces has busyStateListener to prevent user inputs during request round trip.
    But I'd like to make it sure that I don't need to use busyStateListener if I just want to keep processing order.
    Regards,
    Atsushi

    Hi,
    Does anyone know the document specifying the behavior of af:commandButton in case I click two buttons in a page almost simultaneously?
    Any help will be much appreciated.
    Thanks in advance,
    Atsushi

  • How do you apply a master page to multiple documents at the same time?

    How do you apply a master page to multiple documents at the same time?

    Hi friends,
    Thank you for trying to help me out.
    Let me explain it a bit to remove the ambiguity.
    I have 10 documents nested under a book. Each of these documents have 'n' number of pages. I want to apply my custom made master page "First" to the first page of all these 10 documents in one go. The remaining pages of the documents have to be in default "Right" master page format. How will I do it?
    I tried selecting all the documents and importing the formats from another document with the custom made "First" master page. The master page format is getting imported but the first page of all the documents still remain with the default "Right" master page format.
    I think now my question is more clear...

  • WDS 2012 R2 - Cannot PXE multiple clients at the same time

    Hello All,
    This is my first post on here so I apologize if this is the wrong place.  I work for a school district and we are implementing WDS 2012 R2.  We've been extremely satisfied with the speeds and ease of use through unattend files.  However, for
    the past month I've been looking for a possible answer to a problem that has plagued us from day one of implementation.
    So here's the problem:
    I have a stand alone WDS server which is not a domain controller and is not our DHCP server.  I have IP helpers and broadcast forwarders setup on the network.  As well as option 66 and 67 in DHCP.  So far so good right!
    Well that's partially right.  When we boot one client at a time to the WDS server.  Everything works as intended.  We can TFTP the necessary files from the WDS server.  Everything boots up and we're off and running.
    However, if we boot up two or more clients at the same time.  The WDS server never responds to the traffic.  The clients get their DHCP information.  They start the referral and download from the WDS server, but get no response.  I'm
    really hoping that someone on here would have some insight of something I can try.  I've about exhausted my list of peers and contacts.  They're all stumped as well and were smart enough to stay with 2008 WDS.
    I would prefer to stick with 2012 R2 since it's setup and working for the most part.  With only this one hiccup.
    Thanks in advance for any guidance!

    Hello Daniel,
    I appreciate the reply and apologize for taking so long to get back to this.   Things have been a little hectic over here.
    I have tried everything on this forum and I am still unsuccessful in PXE booting multiple clients at the same time.
    Multicast is enabled on the server, and it works for the clients.  However, as stated in the original post.  I cannot boot multiple machines at the same time.  I can start them from the image selection screen around the same time though.  So,
    that appears to be working fine.

  • How to display multiple reports at the same time

    Hi,
    I'm trying to display multiple reports at the same time, each one in separates tabs or windows using Forms 11g 11.1.1.6
    I have a button which has a call to a procedure which makes use of rp2rro library to show the specific reports, for example:
    call_report('report1');
    call_report('report2');
    call_report('report3');
    call_report('report4');
    The main problem is that, just the last report is been displayed.
    Is there some way to display report1, report2 etc in separate tabs or windows ??
    Regards
    Carlos

    You shouldn't have a problem calling different reports at once. As long as you're using Forms 11g they show up in different windows.
    The question is how you are calling the report.
    Here is how I manipulate it.
    After I pass parameters with the ADD_PARAMETER built-in I set some key values (destype, desformat, desname) with the RP2RRO's procedures.
    Finally calling RP2RRO.RP2RRO_RUN_PRODUCT and then WEB.SHOW_DOCUMENT passing the correct procedure parameters the report comes up in a window. If you repeat the above changing the appropriate variables (the report_name in the RP2RRO_RUN_PRODUCT and so on) you can get multiple reports in different windows.

  • I bought a bluetooth Bose speaker so I could listen to music from my imac in multiple rooms at the same time. I wanted to use BOTH my existing speakers using the headphone jack and add additional bluetooth speakers in other rooms, but the imac wants me to

    I bought a bluetooth Bose speaker so I could listen to music from my imac in multiple rooms at the same time. I wanted to use BOTH my existing speakers using the headphone jack and add additional bluetooth speakers in other rooms, but the imac wants me to pick one or the other, is there a way to have both?

    I asked same question
    Any answers

  • Can I export multiple folders at the same time, keeping the album structure

    I'm exporting all of my photos from 2010 so far. Is there a way to export multiple folders at the same time, while keeping the existing album structure? It seems that when I try it, iPhoto exports them all to the same folder.
    I really don't want to do this one album at a time, and here's why -
    I'd like to select all of the albums, then export, using the plugin, to WalMart so that I can order prints.

    Check out [iPhotoToDisk|http://www.iphototodisk.com/index.html]
    I'd like to select all of the albums, then export, using the plugin, to WalMart so that I can order prints.
    Why not upload to Walmart from iPhoto? Check out the first option here:
    There are many, many ways to access your files in iPhoto:
    *For Users of 10.5 and later*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and later* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    For users of 10.6 and later:
    You can download a free Services component from MacOSXAutomation which will give you access to the iPhoto Library from your Services Menu. Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and later:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Regards
    TD

Maybe you are looking for

  • How to find the ID of the text item of the column in an tabular form

    Hello, I have created a tabular form report on emp table and made ONE OF THE COLUMN department_id as an text item using APEX_ITEM.TEXT APIs. My select query is select "EMPLOYEE_ID", "EMPLOYEE_ID" EMPLOYEE_ID_DISPLAY, "FIRST_NAME", "LAST_NAME", "HIRE_

  • How to use check box in SQL Query

    Hi I have a reagion with check boxes. Now I am creating another region which is PL/SQL function/block returning query. here' the block. When I save it give me error Query cannot be parsed within the Builder. If you believe your query is syntactically

  • IEnumerable T Property as parameter in Lambda Expression

    Hi, I have following construction which returns selected items from the list: public IEnumerable<Country> SelectedProducts get return this.Countries.Where(c => c.ContinentName.Equals("Product Catalog") && c.IsSelected); }The following construction fo

  • SOAP receiver adapter digest authentization

    Hallo, I have scenario with SOAP receiver adapter configured as follow: Adapter Type: SOAP Transport Protocol: HTTP Message Protocol: SOAP 1.1 Adapter Engine: Integration Serer Target URL: http://localhost:8099/webservices/test_v1_1_2 Configure User

  • XL Reporter gives Error after updating from PL 25 to SBO 2005 B PL 38

    Thnaks Shridhar, I have tested it in PL 38, its work fine but it has occoured one more problem i.e. XL Reporter is not working now. However I have updated XL Reporter to PL30, but it gives error. It has reamed used userdefined fields of the report. I