Search found 59476 matches

by steve
Mon Jul 15, 2013 3:58 pm
Forum: Audio Processing
Topic: How do I get track numbers to show on playback?
Replies: 3
Views: 825

Re: How do I get track numbers to show on playback?

What settings are you using in Export Multiple?
How many labels are there in the project?
by steve
Mon Jul 15, 2013 3:54 pm
Forum: macOS
Topic: Mix and Render problems
Replies: 37
Views: 8517

Re: Mix and Render problems

One thing I don't quite understand. If you use the Track Drop-Down Menu to change the sample format of that track to 16-bit then play the project, the noise goes away (whether real-time dither is on or not). When changing the bit format from the drop down menu, the "High Quality" conversi...
by steve
Mon Jul 15, 2013 11:27 am
Forum: Windows
Topic: Keyboard volume at Max but output in Audacity soft
Replies: 4
Views: 674

Re: Keyboard volume at Max but output in Audacity soft

Your recording level looks reasonable considering that you are not playing very loudly. The recording level should never touch the top or bottom of the audio track while you are recording, even if you play as loud as possible. I would guess that if you played a big chord as loud as possible that the...
by steve
Mon Jul 15, 2013 11:13 am
Forum: Windows
Topic: RECORDING PROBLEMS - LOW LEVEL - NOISE et al (SOLVED)
Replies: 6
Views: 1237

Re: RECORDING PROBLEMS - LOW LEVEL - NOISE et al

dancaudio wrote:microphone is Audio Technica P48 cardiod condencer
I've not been able to find a "P48" microphone in the Audio Technica product range. Could you post a link to where we can find information about this microphone.
by steve
Mon Jul 15, 2013 3:40 am
Forum: New Plug-Ins
Topic: Tone and beat syncgenerator with customized fields
Replies: 7
Views: 3572

Re: Tone and beat syncgenerator with customized fields

As a starting point, try out the hzosc command in the Nyquist Prompt effect . As an example, try the following code: (setq frequency 440) (setq amplitude 0.8) (mult amplitude (hzosc frequency)) Can you work out what the above code is doing? Are you able to make it into a plug-in? Can you add control...
by steve
Sun Jul 14, 2013 11:35 pm
Forum: Nyquist
Topic: Contributing a Plug-in
Replies: 1
Views: 1063

Re: Contributing a Plug-in

I have created a bass-tilt plug-in My first question is, am I violating the GNU public license by modifying existing code to make it work differently? No you are not. The GPL version 2 specifically allows modifying GPL v2 code. http://www.gnu.org/licenses/old-licenses/gpl-2.0.html My second questio...
by steve
Sun Jul 14, 2013 10:09 pm
Forum: New Plug-Ins
Topic: Karaoke, Rotation, Panning & more
Replies: 109
Views: 45403

Re: Karaoke, Rotation, Panning & more

I can understand that the average user only demands that a tool does just what its title promises without a higher grade in physics. But don't you think that the decision about downloading a plug-in should remain by the user? I find it rather questionable to dumb-filter plug-ins before they can be ...
by steve
Sun Jul 14, 2013 9:44 pm
Forum: General Audio Programming
Topic: Reading Audacity Projects
Replies: 8
Views: 6260

Re: Reading Audacity Projects

This is an invitation to freely develop compatible software and I think the Audacity team should keep encouraging this philosophy. It is true that trying to retrieve audio from an Audacity project is not exceptionally easy, but it is far from being impossible for a C programmer. Just a comment: Dev...
by steve
Sun Jul 14, 2013 9:17 pm
Forum: Nyquist
Topic: problem with SAL
Replies: 34
Views: 8283

Re: problem with SAL

(setf modstep (hz-to-step (* (/ 3.0 5.0) (step-to-hz C4)))) This means: Set the value of modstep to a specified value. The value that is specified is: (hz-to-step (* (/ 3.0 5.0) (step-to-hz C4))) The above code is written in LISP syntax. In SAL syntax it would be written as: set modstep = hz-to-ste...
by steve
Fri Jul 12, 2013 3:01 pm
Forum: macOS
Topic: bit depth/sample rate: Audacity vis-a-vis Audio Midi Setup
Replies: 4
Views: 4181

Re: bit depth/sample rate: Audacity vis-a-vis Audio Midi Set

is there any downside to recording and exporting 32-bit float 96kHz, opening the file in something like Izotope to run decrackle, then exporting as 24-bit 96kHz? According to your suggestions above, one should use 32-bit if any processes are going to be run; thus I assume recording 32-bit rather th...