Trim and Automatically Reposition
Forum rules
This forum is for Audacity 2.x.x on Windows.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.

Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Trim and Automatically Reposition
Is there a way to trim audio and have Audacity automatically move the resulting audio to 0:00? Right now I'm using CTRL+X, CTRL+A, CTRL+V to do essentially the same thing, but I didn't know if there was something more efficient.
Windows 10
Audacity 2.4.2
Thanks.
Windows 10
Audacity 2.4.2
Thanks.
-
- Forum Staff
- Posts: 68267
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: Trim and Automatically Reposition
The DEL key?Is there a way to trim audio and have Audacity automatically move the resulting audio to 0:00?
Koz
Re: Trim and Automatically Reposition
That removes the selected audio and repositions it. I'm looking to keep what is selected and reposition it. I could select the audio on either side of what I want to keep and remove it using the DEL key, but that's a bit more troublesome than the workaround I currently use.
-
- Forum Staff
- Posts: 14316
- Joined: Tue Jul 31, 2007 11:03 am
- Operating System: Windows 10
Re: Trim and Automatically Reposition
You can remove selected audio and have it place on the clipboard with Edit > Cut or its shortcut Ctrl + X
You can then choose where you want to past it (much as you would with Word or Excel etc,)
Peter.
You can then choose where you want to past it (much as you would with Word or Excel etc,)
Peter.
________________________________________FOR INSTANT HELP: (Click on Link below)
* * * * * FAQ * * * * * Tutorials * * * * * Audacity Manual * * * * *
* * * * * FAQ * * * * * Tutorials * * * * * Audacity Manual * * * * *
Re: Trim and Automatically Reposition
Yeah, that's essentially what I'm doing now, but I'm wondering if there's something similar to CTRL+T, but it automatically time shifts the trimmed audio to 0:00 without having to do it manually.
-
- Forum Staff
- Posts: 68267
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: Trim and Automatically Reposition
Oh. Right. Yes, I've run into that. That's a lot more fuss. You want the inverted DEL key.I'm looking to keep what is selected and reposition it.
Koz
-
- Forum Staff
- Posts: 14316
- Joined: Tue Jul 31, 2007 11:03 am
- Operating System: Windows 10
Re: Trim and Automatically Reposition
You could probably write an Audacity Macro to do that ...
Peter.
________________________________________FOR INSTANT HELP: (Click on Link below)
* * * * * FAQ * * * * * Tutorials * * * * * Audacity Manual * * * * *
* * * * * FAQ * * * * * Tutorials * * * * * Audacity Manual * * * * *
Re: Trim and Automatically Reposition
Good Idea.waxcylinder wrote: ↑Sat Jan 16, 2021 10:59 amYou could probably write an Audacity Macro to do that ...
Peter.
Code: Select all
Cut:
SelectAll:
Paste:
Re: Trim and Automatically Reposition
Ah, that works well. Thanks, all.
Re: Trim and Automatically Reposition
That may not do what you want if the project has more than one track (it will attempt to replace all tracks with the selected audio).
If you want the macro to only act on the selected tracks, try:
Code: Select all
Copy:
SelTrackStartToCursor:
SelCursorToTrackEnd:
Paste:
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)