Search found 59476 matches

by steve
Sun Aug 20, 2017 4:41 pm
Forum: Audio Processing
Topic: How random are the generated White, Pink and Brownian noises
Replies: 3
Views: 640

Re: How random are the generated White, Pink and Brownian no

nelsona wrote:So just to be certain, Audacity's developers are simply using C++'s rand function, correct?
If by "C++'s rand function" you mean "std::rand", then yes.

You can see the code in EffectNoise::ProcessBlock here: https://github.com/audacity/audacity/bl ... /Noise.cpp
by steve
Sun Aug 20, 2017 4:34 pm
Forum: Windows
Topic: Adding randomized silence (Windows 10, Audacity 2.1.3)
Replies: 86
Views: 7072

Re: Adding randomized silence (Windows 10, Audacity 2.1.3)

How about something like this (in pseudo code): DO [from pitch-type = 0 to pitch-type = 1] { IF [pitch-type == 0] pitch = 1000 ELSE pitch = 4000 DO [from gain = 0 to gain = -45 | gain = gain -5] { DO [10 times] { PUT (pitch, gain) INTO parameter-list } } } RETURN parameter-list So what we end up wit...
by steve
Sun Aug 20, 2017 4:15 pm
Forum: macOS
Topic: Changing volume 30 times per second
Replies: 1
Views: 376

Re: Changing volume 30 times per second

The effect that you are describing is called "amplitude modulation" or "tremolo" (two names for the same effect). "dB" is a ratio rather than an absolute measure. "80 dB" is meaningless without defining a reference level. For audio signals, the usual reference...
by steve
Sun Aug 20, 2017 3:18 pm
Forum: Windows
Topic: Audacity crashes 3-5 seconds after opening
Replies: 9
Views: 405

Re: Audacity crashes 3-5 seconds after opening

FL2070 wrote:I'm sorry, I forgot to mention I don't use the installer due to permissions issues.
Perhaps that's the problem. What are the "permission issues"?
by steve
Sun Aug 20, 2017 3:16 pm
Forum: Windows
Topic: Adding randomized silence (Windows 10, Audacity 2.1.3)
Replies: 86
Views: 7072

Re: Adding randomized silence (Windows 10, Audacity 2.1.3)

PiTeRr wrote: my final issue is to create a sequence of 100 tones at frequency of 1000 Hz and 100 tones at frequency of 4000 Hz and all of this should be shuffled.
What are your thoughts about how to do that?
by steve
Sun Aug 20, 2017 12:58 pm
Forum: Windows
Topic: How to split several tracks at once? [SOLVED]
Replies: 4
Views: 359

Re: How to split several tracks at once?

Select the part that you want to delete in one of the tracks (see here for various ways of selecting audio: http://manual.audacityteam.org/man/auda ... ction.html)
Then press "Ctrl + Shift + K" (or "Edit menu > Select > In All Tracks")
Then press the Delete key.
by steve
Sun Aug 20, 2017 11:18 am
Forum: Windows
Topic: How to split several tracks at once? [SOLVED]
Replies: 4
Views: 359

Re: How to split several tracks at once?

BobLSL wrote:I have a 6 track loaded audio file.
Are the 6 tracks stacked one above the other, all starting at "time = 0"?
by steve
Sun Aug 20, 2017 11:16 am
Forum: Windows
Topic: Problems with sample data import/export
Replies: 6
Views: 829

Re: Problems with sample data import/export

With Audacity 2.1.3, to import stereo sample data: 1) Add a stereo track (Tracks menu > Add New > Stereo Track) 2) Select part of the track (click somewhere near the middle of the track and drag to the start so that there is a highlighted selected region. 3) You should now be able to use Sample Data...
by steve
Sun Aug 20, 2017 9:29 am
Forum: Windows
Topic: Problems with sample data import/export
Replies: 6
Views: 829

Re: Problems with sample data import/export

If you are using Audacity 2.1.3 you may be hitting a bug in Nyquist.
A result of the bug is that for stereo, it is necessary to have an actual time selection in the stereo track.

The bug is fixed in the current development code.
by steve
Sun Aug 20, 2017 9:08 am
Forum: Audio Processing
Topic: How random are the generated White, Pink and Brownian noises
Replies: 3
Views: 640

Re: How random are the generated White, Pink and Brownian no

nelsona wrote:I was wondering if someone (an Audacity developer preferably) could tell me what sort of random number generator / seed is being used to generate the White, Pink and Brownian noises within Audacity?
std::rand