Search found 59476 matches

by steve
Thu Oct 01, 2009 1:16 am
Forum: Windows
Topic: C00D10D9 WAV error
Replies: 5
Views: 741

Re: C00D10D9 WAV error

CDBurnerXP ? (free, open source, nothing to loose, I like it - just Google it).
by steve
Thu Oct 01, 2009 12:54 am
Forum: General Audio Programming
Topic: the next version of audacity
Replies: 11
Views: 2767

Re: the next version of audacity

Windows Binaries
* Unicode Release
by steve
Thu Oct 01, 2009 12:52 am
Forum: Windows
Topic: C00D10D9 WAV error
Replies: 5
Views: 741

Re: C00D10D9 WAV error

I really don't have a reason to get another burning probram because WMP works fine for what I do. Except that on this occasion it doesn't. I was going to suggest the same as Koz, but if that is not working....? You're using Audacity 1.2.6 ? You are exporting with "File menu > Export As WAV&quo...
by steve
Thu Oct 01, 2009 12:37 am
Forum: General Feedback and Discussion
Topic: Compressor effect
Replies: 3
Views: 2227

Re: Compressor effect

It's not broken, it's just a bit strange. "Peak" compression is an "upward compression" which boosts low signal levels to compress the high level dynamics. When "Peak" is not selected it bases the compression on rms levels and is the more familiar "downward compres...
by steve
Wed Sep 30, 2009 10:13 pm
Forum: Windows
Topic: Recording format
Replies: 5
Views: 628

Re: Recording format

Audacity records and saves "Audacity Projects". Audacity Projects are not compatible with anything else. To produce an MP3 file, you record into an Audacity Project, then Export the audio as an MP3. MP3 export requires that you have the compatible version of Lame installed. See the Audacit...
by steve
Wed Sep 30, 2009 10:08 pm
Forum: Windows
Topic: autotune for audacity
Replies: 1
Views: 2531

Re: autotune for audacity

Antares AutoTune may work with the latest version of Audacity 1.3.x It did not work with earlier versions of Audacity, but there have been some big advances in plug-in support recently. Autotalent by Tom Baran is compatible, but it is only available as source code and instructions are limited. (if y...
by steve
Wed Sep 30, 2009 9:32 pm
Forum: Windows
Topic: Exporting amplitude/time data for each sample
Replies: 2
Views: 332

Re: Exporting amplitude/time data for each sample

If you need a version that does not destroy the samples: (setf s-in (snd-copy s)) ;; Read 1000 samples into array (setf samplearray (make-array (snd-length s-in 1000))) (do ((n 0 (setq n (1+ n))) (nextsample (snd-fetch s-in) (setq nextsample (snd-fetch s-in)))) ;; Exit when we run out of samples (ne...
by steve
Wed Sep 30, 2009 9:14 pm
Forum: Windows
Topic: Exporting amplitude/time data for each sample
Replies: 2
Views: 332

Re: Exporting amplitude/time data for each sample

For a MONO track only. Select a bit of the track, then from the Effects menu choose the "Nyquist Prompt" Enter this code into the box ;; Read 1000 samples into array (setf samplearray (make-array (snd-length s 1000))) (do ((n 0 (setq n (1+ n))) (nextsample (snd-fetch s) (setq nextsample (s...
by steve
Wed Sep 30, 2009 8:48 pm
Forum: Mac OS X
Topic: Loud noise when exporting WAV to GarageBand.
Replies: 1
Views: 404

Re: Loud noise when exporting WAV to GarageBand.

44100Hz 16 bit WAV should work in just about anything. Do they play in your usual media player?
Does GarageBand require mono or stereo?