Search found 59476 matches

by steve
Fri May 28, 2021 5:57 am
Forum: GNU/Linux
Topic: Audacity 3.0.2 on Fedora 34 saves "Empty" projects
Replies: 25
Views: 3657

Re: Audacity 3.0.2 on Fedora 34 saves "Empty" projects

ebeling wrote:
Thu May 27, 2021 7:49 pm
/dev/mapper/fedora00-home ext4 862G 531G 288G 65% /home
This is the one that I was particularly interested in.
It is formatted as "ext4".
That's blown one theory out of the water - that's not the problem.
by steve
Thu May 27, 2021 9:42 pm
Forum: Windows
Topic: Tracks Off Amazon Music
Replies: 7
Views: 124

Re: Tracks Off Amazon Music

If a track has a large dynamic range, then the overall "loudness" must be relatively low, because the loudest parts cannot go over 0 dB peak. To make multiple tracks the same "loudness", you must ensure that none of the tracks go over 0 dB peak - in other words you have to allow ...
by steve
Thu May 27, 2021 9:34 pm
Forum: macOS
Topic: Macros not working
Replies: 5
Views: 116

Re: Macros not working

Which version of Audacity are you using? (look in "Audacity menu > About Audacity").
by steve
Thu May 27, 2021 9:29 pm
Forum: GNU/Linux
Topic: ✓ Converting point labels to regions
Replies: 19
Views: 1407

Re: ✓ Converting point labels to regions

If anyone wonders why I take so long to look for any replies to my own posts, it's because I thought I'd get an email every time someone replies, but apparently that doesn't happen, and is maybe not supposed to happen, but I'm used to that in other forums, so I just assumed it's the same here. Way ...
by steve
Thu May 27, 2021 6:19 pm
Forum: macOS
Topic: Audacity 3.0.2 for Big Sur 11.4
Replies: 16
Views: 2491

Re: Audacity 3.0.2 for Big Sur 11.4

Did you "install" Audacity, or are you attempting to run it directly from the DMG?
Audacity needs to be installed (See the instructions here: https://www.audacityteam.org/download/mac/)
by steve
Thu May 27, 2021 6:14 pm
Forum: Nyquist
Topic: Plugin to get duration percentages of tracks
Replies: 22
Views: 822

Re: Plugin to get duration percentages of tracks

Aha, are you saying that if a var is initialized with a decimal place, Lisp will automatically make it a float? In Nyquist / Xlisp, we do not declare types for variables. (setf val 4) ;val has an integer value of 4 (setf val (+ val 0.5)) ;val has a float value of 4.5 (setf val (* val 2)) ;val has a...
by steve
Thu May 27, 2021 5:07 pm
Forum: Nyquist
Topic: Plugin to get duration percentages of tracks
Replies: 22
Views: 822

Re: Plugin to get duration percentages of tracks

Just for fun, here's a short version of your code. It is a little less easy to read, but much shorter: ;type tool (setf audio-track-len (let ((audio-track (first (aud-get-info "Tracks")))) (- (second (assoc 'END audio-track)) (second (assoc 'START audio-track))))) (let ((labels (second (fi...
by steve
Thu May 27, 2021 4:22 pm
Forum: Nyquist
Topic: Plugin to get duration percentages of tracks
Replies: 22
Views: 822

Re: Plugin to get duration percentages of tracks

1) I got there Congratulations :ugeek: Your code is actually slightly shorter than mine (27 lines vs 29), though I'm using 7 lines to calculate the longest audio track. (defun audio-end () (let ((tracks (aud-get-info "tracks")) (max-end 0)) (dolist (track tracks max-end) (when (member (li...
by steve
Thu May 27, 2021 3:21 pm
Forum: Nyquist
Topic: Plugin to get duration percentages of tracks
Replies: 22
Views: 822

Re: Plugin to get duration percentages of tracks

I've written a version that has a few additional features: Get the end time of all audio tracks (not just the first track) Ignore labels that are beyond the end of the audio tracks. If a label overlaps the end of the audio, only count the part that is overlapping the audio. Like your version, if the...
by steve
Thu May 27, 2021 3:04 pm
Forum: Windows
Topic: Noise Gate Question
Replies: 2
Views: 60

Re: Noise Gate Question

NTesla369 wrote:
Thu May 27, 2021 2:54 pm
I'm having a problem downloading a plug in called "Noise Gate" to Audacity.
You don't need to download "Noise Gate". The latest version is already included in Audacity 3.0.2: https://manual.audacityteam.org/man/noise_gate.html