If you are making audio CDs, export from Audacity as WAV not as MP3.
If you are making an MP3 CD (rather than a standard "audio CD", set the MP3 options in the Export dialogue (click on the "Options" button) to suit your CD burning program, or use a better CD burning program.
Search found 59476 matches
- Mon Jan 21, 2013 9:34 pm
- Forum: Windows
- Topic: Elapsed time
- Replies: 6
- Views: 1228
- Mon Jan 21, 2013 9:16 pm
- Forum: Nyquist
- Topic: A Study in Pink
- Replies: 26
- Views: 10491
Re: A Study in Pink
Not "forgotten", I "didn't bother". It's not stereo either, but it works well enough as a proof of concept. Anyway, I think you'll like this. It's based on Paul Kellet's "instrumentation grade" pink noise. (defun pink (dur amp) (mult amp (db-to-linear (- (+ 15 (power du...
- Mon Jan 21, 2013 7:11 pm
- Forum: Windows
- Topic: Exportm ultiple not saving tracks
- Replies: 14
- Views: 1382
Re: Exportm ultiple not saving tracks
Check that no tracks are muted.
Also, see here for other possibilities and hints: http://manual.audacityteam.org/o/man/sp ... racks.html
Also, see here for other possibilities and hints: http://manual.audacityteam.org/o/man/sp ... racks.html
- Mon Jan 21, 2013 5:29 pm
- Forum: Windows
- Topic: monitoring audio while recording
- Replies: 5
- Views: 1134
Re: monitoring audio while recording
With what equipment? USB headsets? A microphone plugged into a mixing desk connected to the line-in socket of the computer? Something else?gssmriley wrote:I am importing a background track, and then my students play an exam over that track
- Mon Jan 21, 2013 5:26 pm
- Forum: Windows
- Topic: Exportm ultiple not saving tracks
- Replies: 14
- Views: 1382
Re: Exportm ultiple not saving tracks
Are they really numbered 1 to 11? You can run into trouble with some non-alphanumeric characters as described here: http://manual.audacityteam.org/o/man/sp ... racks.htmlSmartyfartblast wrote:say numbered 1 to 11
- Mon Jan 21, 2013 5:23 pm
- Forum: Nyquist
- Topic: A Study in Pink
- Replies: 26
- Views: 10491
Re: A Study in Pink
Or are there some coeffs updated during execution? The coefficients change depending on the sample rate. By calculating them at run time the filter frequency can be kept the same. I feel a slight headache coming up when I am looking at your code... At least I didn't write it object-oriented :grin:
- Mon Jan 21, 2013 4:38 pm
- Forum: macOS
- Topic: Recording starts normal then fades and later returns
- Replies: 10
- Views: 2294
Re: Recording starts normal then fades and later returns
Topics merged.
- Mon Jan 21, 2013 4:32 pm
- Forum: Windows
- Topic: Windows 7 audacity recording
- Replies: 6
- Views: 678
Re: Windows 7 audacity recording
For a USB cassette player it's pretty much the same as a USB turntable. See here: http://manual.audacityteam.org/o/man/re ... ables.html
- Mon Jan 21, 2013 3:23 pm
- Forum: GNU/Linux
- Topic: Audacity with qjackctl-Zynadsubfx-qsynth-rosegarden
- Replies: 2
- Views: 6635
Re: Audacity with qjackctl-Zynadsubfx-qsynth-rosegarden
When you open Audacity, in the Device Toolbar, select "Jack Audio System" as the host and select "System" for playback and recording.
- Mon Jan 21, 2013 3:10 pm
- Forum: Nyquist
- Topic: A Study in Pink
- Replies: 26
- Views: 10491
Re: A Study in Pink
I think I'm getting the hang of this biquad stuff now :grin: So here is a really inefficient (slow) way to generate bandwidth limited brown noise: (setf sarray (make-array 44100)) (setq hz 20 q 0.707) (setq w (* 2.0 Pi (/ hz *sound-srate*)) cw (cos w) sw (sin w) alpha (* sw (sinh (/ 0.5 q))) a0 (+ 1...