Search found 59476 matches

by steve
Thu Jan 09, 2020 9:14 pm
Forum: Windows
Topic: searching forum topics, and setting Audacity to be default for .mp3
Replies: 6
Views: 566

Re: searching forum topics, and setting Audacity to be default for .mp3

KenThuHuong wrote:
Thu Jan 09, 2020 8:20 pm
1) How can we (hey, we're a family of 3!) search the forum topics???
Top right corner of the web page:
search.png
search.png (38.49 KiB) Viewed 561 times

Alternatively, use a search engine (such as Google) and include the search term:

Code: Select all

site:https://forum.audacityteam.org
by steve
Thu Jan 09, 2020 5:16 pm
Forum: macOS
Topic: Sampling tools needs to take control of another process
Replies: 5
Views: 2589

Re: Sampling tools needs to take control of another process

You could try updating Audacity. The current version is 2.3.3 and you can get it via the Audacity website: https://www.audacityteam.org/download/mac/
I don't know if that will help - it sounds like the updated Ozone plug-ins are incompatible with Audacity.
by steve
Thu Jan 09, 2020 5:03 pm
Forum: Windows
Topic: Recording and RunAs
Replies: 1
Views: 137

Re: Recording and RunAs

It's probably a permissions problem. Why not run as the account that you're logged in with?
by steve
Thu Jan 09, 2020 2:37 pm
Forum: Nyquist
Topic: Generating chords
Replies: 8
Views: 2379

Re: Generating chords

Could how create separate standalone script for 2.4.0 so that one doesn't have to run the script every time, go through the debug window for the preview... Nyquist scripts can be turned into installable Nyquist plug-ins by adding a few "header" commands. No need to wait for Audacity 2.4.0...
by steve
Thu Jan 09, 2020 1:23 pm
Forum: Podcasting with Audacity
Topic: H1n not being recognised by laptop
Replies: 2
Views: 293

Re: H1n not being recognised by laptop

Try a different USB lead.
by steve
Thu Jan 09, 2020 12:54 pm
Forum: Nyquist
Topic: Nyquist Wish List
Replies: 40
Views: 55698

Re: Nyquist Wish List

Posts about generating chords has been moved into it's own topic here: viewtopic.php?f=39&t=108394
by steve
Thu Jan 09, 2020 12:50 pm
Forum: Nyquist
Topic: Generating chords
Replies: 8
Views: 2379

Re: Generating chords

Why can't I input note h4 ? The available note names are: A, B, C,D, E, F, G S = sharp F = flat Characters are not case sensitive (you can use capital letters or lower case letters) The German notation "H" ("B" for other countries) is not used. Is it possible to implement graphi...
by steve
Thu Jan 09, 2020 10:58 am
Forum: Nyquist
Topic: Generating chords
Replies: 8
Views: 2379

Re: Generating chords

Here's the code with a C major chord: ;version 4 ;type generate (defun note (pitch duration) (stretch duration (mult (env 0.05 0.1 0.5 1.0 0.5 0.4) (osc pitch)))) (mult 0.3 ;scaling factor (sim (note c5 1.4) (note e5 1.4) (note g5 1.4))) and here's the code with a C minor chord: ;version 4 ;type gen...
by steve
Thu Jan 09, 2020 10:51 am
Forum: Nyquist
Topic: Generating chords
Replies: 8
Views: 2379

Re: Generating chords

Where do I input this ? You can run that code in the "Nyquist Prompt" https://manual.audacityteam.org/man/nyquist_prompt.html What does 1.4 mean ? That's the duration in seconds. A quick explanation of the code: ;version 4 ;type generate This tells Audacity to use "version 4" sy...
by steve
Thu Jan 09, 2020 10:11 am
Forum: Adding Features to Audacity
Topic: Drawing sounds
Replies: 6
Views: 510

Re: Drawing sounds

You can create a waveform with the Draw tool like this: Second Track000.png Then select the drawn waveform like this: Second Track001.png Then repeat it lots of times with the " Repeat " effect, like this: Second Track003.png To get a sound that is long enough to play, you will need to rep...