Search found 59476 matches

by steve
Mon Jan 15, 2018 1:04 pm
Forum: Compiling Audacity
Topic: Compiling with XCode 9.2 (9C40b) - float.h filenot found
Replies: 5
Views: 2068

Re: Compiling with XCode 9.2 (9C40b) - float.h filenot found

I can confirm that Audacity build will fail if you use the wrong version of XCode.
by steve
Mon Jan 15, 2018 1:02 pm
Forum: Windows
Topic: overdub track recording slow, lower pitch 2.12
Replies: 5
Views: 887

Re: overdub track recording slow, lower pitch 2.12

Please try updating to the current version of Audacity (available here: https://www.audacityteam.org/download/

Locking this topic because it is about an obsolete version of Audacity.
by steve
Mon Jan 15, 2018 12:54 pm
Forum: macOS
Topic: Cant find vocal isolation in effects
Replies: 5
Views: 1367

Re: Cant find vocal isolation in effects

I have a newer MacBook Pro with Sierra (10.12.6) and I am using 2.1.0 for audacity. The current version of Audacity is 2.2.1 and is available here: https://www.audacityteam.org/download/mac/ Remove your current version of Audacity completely, then install the new version. Ensure that you follow the...
by steve
Sun Jan 14, 2018 7:36 pm
Forum: Windows
Topic: is there a plot spectrum without time limit?
Replies: 7
Views: 1068

Re: is there a plot spectrum without time limit?

but i would like to know if i can edit and change the preference for plot spectrum It's not a setting, so you would need to modify the source code and recompile. i need it too to check and compare recording with my external dacs Is it not enough to compare a couple of minutes? If you really need an...
by steve
Sun Jan 14, 2018 7:28 pm
Forum: Windows
Topic: Trouble exporting "Audacity failed to read from a file in:."
Replies: 1
Views: 658

Re: Trouble exporting "Audacity failed to read from a file i

Please state which version of Windows you are using,
and the exact three-section version of Audacity from "Help menu > About Audacity".

Is this a saved project? If so, where is it saved?
Does the project play correctly?
by steve
Sun Jan 14, 2018 3:59 pm
Forum: Making Music with Audacity
Topic: What configuration can achieve this audio quality?
Replies: 4
Views: 1145

Re: What configuration can achieve this audio quality?

gwsk wrote:the voice quality is kinda different and too clear
Do you mean that you want your recording to sound like that, or are you saying that you want your recording to NOT sound like that?
Is that your recording?
by steve
Sun Jan 14, 2018 11:55 am
Forum: macOS
Topic: MP3 Export time is insane [SOLVED]
Replies: 2
Views: 336

Re: MP3 Export time is insane

Which version of Audacity are you using? (look in: "Audacity menu > About Audacity")
by steve
Sun Jan 14, 2018 11:50 am
Forum: Windows
Topic: Terrible output quality even at 320 [SOLVED]
Replies: 2
Views: 183

Re: Terrible output quality even at 320

coryc453534 wrote:even a FLAC file does the same thing
That strongly suggests that the problem is not what you think it is. FLAC is a lossless format.

How are you playing the exported audio file?
by steve
Sat Jan 13, 2018 1:38 pm
Forum: Windows
Topic: Weird that mute/unmute all are unavailible during playback.
Replies: 6
Views: 347

Re: Weird that mute/unmute all are unavailible during playba

With the "multi-track" mode solo button, if multiple tracks are soloed, you can unsolo all of them with Shift+click on one of the "down" solo buttons. (Click without the Shift key to unsolo just one track)
by steve
Sat Jan 13, 2018 1:29 pm
Forum: Nyquist
Topic: follow up How to generate arbitrary waveforms
Replies: 20
Views: 4167

Re: follow up How to generate arbitrary waveforms

I don't know what you are trying to achieve (you've not said). If you want to produce two lists, one containing the numbers 0 5 10 15 and the other containing the numbers 1 6 11 16, then this will do it: (let ((list-a ()) (list-b())) (dotimes (i 4) (push (* i 5) list-a) (push (+ 1 (* i 5)) list-b)) ...