Search found 59476 matches

by steve
Thu Sep 26, 2019 2:15 pm
Forum: Adding Features to Audacity
Topic: Flip Audio/Flip Note
Replies: 2
Views: 539

Re: Flip Audio/Flip Note

I think that effect has been done by flipping the notes in a "MIDI sequencer" rather than any "audio" effect. Audacity is an "audio" editor, with only very minimal support for MIDI, so this effect would not be possible in Audacity - you would need a MIDI Sequencer. (The...
by steve
Thu Sep 26, 2019 2:11 pm
Forum: Windows
Topic: Speech Inversion Code
Replies: 1
Views: 267

Re: Speech Inversion Code

I don't know which code you are referring to, but from the error message, my guess is that in the Nyquist Prompt, "Use legacy (version 3) syntax" is enabled. Deselect that option. See: https://manual.audacityteam.org/man/nyquist_prompt.html
by steve
Thu Sep 26, 2019 1:08 pm
Forum: Making Music with Audacity
Topic: Fake Double Tracking with Pan and Time Shift
Replies: 12
Views: 1217

Re: Fake Double Tracking with Pan and Time Shift

pennyroyaltea94 wrote:
Thu Sep 26, 2019 12:59 pm
DOWNLOAD Link is not working ?
Download link works fine for me. Here it is:
dualtapedecks.ny
(1.25 KiB) Downloaded 35 times
by steve
Thu Sep 26, 2019 12:36 pm
Forum: Nyquist
Topic: Calculate quantiles of audio data
Replies: 14
Views: 1195

Re: Calculate quantiles of audio data

What I'm trying to do here is to determine at the outset how many passes (say P) I'm going to do, and then calculate approximately the Pth root of the number of samples, and use that for the block size, so that each pass is doing about the same amount of work. That's based on concerns that might be...
by steve
Thu Sep 26, 2019 8:49 am
Forum: macOS
Topic: Paste Special?
Replies: 4
Views: 205

Re: Paste Special?

So Punch Copy makes a clipboard in my abundant, spacious RAM and Punch Paste lets me select a tiny place in a show and replace it precisely. Yes. But also, if you want to replace a long section, Paste will loop the copied audio to fit the space. This means that copying just a few seconds of room to...
by steve
Thu Sep 26, 2019 8:42 am
Forum: Nyquist
Topic: Calculate quantiles of audio data
Replies: 14
Views: 1195

Re: Calculate quantiles of audio data

Or for tracks longer than a couple of months, three passes I may be wrong, but I worked out 3 passes at around 64 hours. Regardless of the exact figure, the code will never get that far. The second argument for SND-LENGTH is "maxlen" - the maximum number of samples to be calculated (https...
by steve
Wed Sep 25, 2019 11:29 pm
Forum: macOS
Topic: Paste Special?
Replies: 4
Views: 205

Re: Paste Special?

It's a pair of plug-ins. viewtopic.php?p=208312#p208312
by steve
Wed Sep 25, 2019 11:25 pm
Forum: macOS
Topic: Macro commands
Replies: 9
Views: 223

Re: Macro commands

Please post a screenshot.
by steve
Wed Sep 25, 2019 11:23 pm
Forum: macOS
Topic: Macro Export destination
Replies: 8
Views: 305

Re: Macro Export destination

You could check in:
User control panel (click on your name near top right corner of page) > Overview > Manage Subscriptions
by steve
Wed Sep 25, 2019 7:21 pm
Forum: Nyquist
Topic: Calculate quantiles of audio data
Replies: 14
Views: 1195

Re: Calculate quantiles of audio data

(setf numpasses (round (+ 0.5 (/ (log (float (snd-length s ny:all))) (log 100000.0))))) Doesn't that give you: For tracks less than 100000 sample (~ 2.27 seconds @44100 Hz), 1 pass For tracks greater than 2.27 seconds, 2 passes. What are you actually trying to do there? PS. For readability, I'd rec...