Search found 59476 matches
- Thu Jun 25, 2020 3:15 pm
- Forum: GNU/Linux
- Topic: .aud file bloat
- Replies: 6
- Views: 236
Re: .aud file bloat
Thanks, got it. Those "control points" are "envelope control points" (https://manual.audacityteam.org/man/envelope_tool.html) You have millions of them (8,388,610 to be precise), and they are all completely redundant (they all have the value "1.0"). There's certainly fa...
- Thu Jun 25, 2020 2:39 pm
- Forum: macOS
- Topic: Achieving LUFS Normalization on 2.3.3
- Replies: 6
- Views: 562
Re: Achieving LUFS Normalization on 2.3.3
There's a very good chance that Audacity 2.4.1 will work on El Capitan. It's certainly worth trying, and if it doesn't work out you can go back to 2.3.3 (which is still available for download). Audacity 2.4.1 includes a "LUFS Normalization" effect: https://manual.audacityteam.org/man/loudn...
- Thu Jun 25, 2020 10:15 am
- Forum: Windows
- Topic: Retrieving cursor position in the same track
- Replies: 2
- Views: 120
Re: Retrieving cursor position in the same track
It's possible with Nyquist, but not simple. The method would be much like this: viewtopic.php?p=398629#p398629
- Thu Jun 25, 2020 10:13 am
- Forum: Windows
- Topic: Error: reference to invalid character number at line 6
- Replies: 1
- Views: 18
Re: Error: reference to invalid character number at line 6
Please post your ".aup" file (see: https://forum.audacityteam.org/viewtopic.php?f=49&t=64936) I expect the problem is that the .aup file is irreparably damaged, so you will need to resort to your most recent backup, but there's a slim chance that it could be repairable. It will probabl...
- Wed Jun 24, 2020 10:22 pm
- Forum: Windows
- Topic: Keeping Multiple Versions of Audacity Under a Single User
- Replies: 6
- Views: 152
Re: Keeping Multiple Versions of Audacity Under a Single User
I do almost the opposite from waxcylinder on Windows. I use the ZIP versions (except for testing the EXE) and use "Portable Settings" for each so that I have separate plug-ins, modules, macros and settings.
- Wed Jun 24, 2020 9:55 pm
- Forum: Windows
- Topic: Creating new commands to select tracks
- Replies: 2
- Views: 170
Re: Creating new commands to select tracks
To extend a selection from the current (focussed) track to the first track, you could do something like this in Nyquist: (defun getfocus () (let ((count 1) (info (aud-get-info "tracks")) hasfocus) (dolist (tr info nil) (setf hasfocus (assoc 'focused tr)) (when (and hasfocus (= (second hasf...
- Wed Jun 24, 2020 7:36 pm
- Forum: Nyquist
- Topic: Downloaded plug-ins not working
- Replies: 1
- Views: 771
Re: Downloaded plug-ins not working
You've not said where you got Audacity 2.4.1 from, but I'd guess this is the problem: viewtopic.php?f=48&t=111501
- Wed Jun 24, 2020 7:34 pm
- Forum: Audacity 2.x Feedback and Reviews
- Topic: Macro Switches Track Focus
- Replies: 14
- Views: 859
- Wed Jun 24, 2020 7:32 pm
- Forum: Nyquist
- Topic: Conditional Replacement by Silence
- Replies: 9
- Views: 1181
Re: Conditional Replacement by Silence
Continued again... To generate our "control signal" we will use PWLV-LIST (see: https://www.cs.cmu.edu/~rbd/doc/nyquist/part8.html#index410) This function can handle hundreds (thousands?) of breakpoints, so should be adequate for our purpose. Note that the breakpoints are a list in the for...
- Wed Jun 24, 2020 5:51 pm
- Forum: Nyquist
- Topic: Conditional Replacement by Silence
- Replies: 9
- Views: 1181
Re: Conditional Replacement by Silence
... Continued: For simplicity, I'll assume that the track is mono. It may be adapted for stereo tracks later, but mono is easier to work with during development. I'm also going to assume that we don't need to apply this code to massively long selections, so we don't need to worry about optimisations...