Search found 59476 matches

by steve
Fri Oct 11, 2019 11:08 am
Forum: Windows
Topic: Scripting: Best way to time shift a track
Replies: 4
Views: 133

Re: Scripting: Best way to time shift a track

. move track2 of "x" ms to the right Select "x" ms at the start of track 2. Repeat (1 time) Select "x" ms at the start of track 2 Silence (or "Split Delete") Step to is the "Repeat effect" https://manual.audacityteam.org/man/repeat.html and that wil...
by steve
Fri Oct 11, 2019 9:33 am
Forum: Windows
Topic: audacity.exe missing icon in program files directory?!
Replies: 2
Views: 419

Re: audacity.exe missing icon in program files directory?!

You may need to rebuild the Windows "icon cache". There's a "how to" here: https://www.howtogeek.com/232779/how-to ... indows-10/
by steve
Fri Oct 11, 2019 9:27 am
Forum: Recording Techniques
Topic: Noise elemination
Replies: 2
Views: 366

Re: Noise elemination

Audacity does not do real-time processing. You could use a "Noise Gate" to silence sound below a specified level. There's a Nyquist plug-in here: https://wiki.audacityteam.org/wiki/Nyquist_Effect_Plug-ins#Noise_Gate The audio card is in recording mode from a mic. The DSP mode is Mono, 8 bi...
by steve
Fri Oct 11, 2019 9:24 am
Forum: Windows
Topic: Scripting: Best way to time shift a track
Replies: 4
Views: 133

Re: Scripting: Best way to time shift a track

I don't think it's possible to do "mouse drag" from Python, so you need to approach this a different way. If you want to move a clip to the right, make a selection to the left of the clip (or at the start of the clip) and duplicate it. If the original selection was empty space, then you're...
by steve
Fri Oct 11, 2019 9:16 am
Forum: Windows
Topic: Keeping Volume Changes on Mixed Tracks
Replies: 5
Views: 290

Re: Keeping Volume Changes on Mixed Tracks

Cancoillote wrote:
Fri Oct 11, 2019 6:33 am
Can someone confirm this ?
Yes. "Mixing" literally "adds together" the tracks.
by steve
Fri Oct 11, 2019 9:06 am
Forum: Windows
Topic: Error Dialogbox
Replies: 3
Views: 145

Re: Error Dialogbox

Are you using an old version of Audacity? The current version is 2.3.2, and it is available via the Audacity website: https://www.audacityteam.org/download/windows/
The current version will probably not solve the problem, but it should give a better error message to help us identify the problem.
by steve
Fri Oct 11, 2019 9:03 am
Forum: Windows
Topic: Hesitation When I Hit "Play" [SOLVED]
Replies: 12
Views: 554

Re: Hesitation When I Hit "Play"

But if I click the cut button, for example, I'll see the hesitation the next time I try to play. This may be providing a hint to the problem. Drawing the waveform is a relatively slow process, because Audacity has to calculate the amplitude for every waveform pixel on screen. To make this more effi...
by steve
Fri Oct 11, 2019 8:47 am
Forum: Making Music with Audacity
Topic: Which computer is best for Audacity?
Replies: 12
Views: 4803

Re: Which computer is best for Audacity?

Armando wrote:
Thu Oct 10, 2019 10:17 pm
I am still on Sierra.
If your computer supports it, it is worth updating to Mojave so that your computer does not fall too far behind, and so that it receives security fixes.
Catalina breaks a lot of software (including Audacity), so I'd recommend that you don't upgrade beyond Mojave for now.
by steve
Fri Oct 11, 2019 8:43 am
Forum: Windows
Topic: 'Unable to export' error message
Replies: 15
Views: 1542

Re: 'Unable to export' error message

folkman wrote:
Fri Oct 11, 2019 7:04 am
exporting to internal disk
What's the exact location that you are exporting to? Some directories are reserved by Windows for the system. You need to be exporting to somewhere in you "user space", such as the Desktop, or your Documents folder, Music folder, or similar.
by steve
Fri Oct 11, 2019 8:40 am
Forum: Macros and Scripting
Topic: Labeling a label track from its name
Replies: 10
Views: 1440

Re: Labeling a label track from its name

but my mental scheme is unable to produce things like that. Nyquist macros are a bit tricky, because you need some familiarity with the Nyquist programming language, and some familiarity with Audacity's Macro commands. The code itself is pretty simple, though there is a bit of "magic" goi...