Search found 59476 matches

by steve
Sun May 10, 2009 11:27 pm
Forum: Windows
Topic: Doubling of Audio Tracks
Replies: 6
Views: 707

Re: Doubling of Audio Tracks

You need to check the signal path. My guess is that Vista has decided to record the stereo mix rather than the actual input that you are using.
by steve
Sun May 10, 2009 11:24 pm
Forum: Audio Processing
Topic: How to get the frequency/hz of a give audio signal?
Replies: 4
Views: 2229

Re: How to get the frequency/hz of a give audio signal?

The hz signals I'm trying to figure out will be in the 30,000 to 60,000 hz range (lol) Those are not audio signals. "Audio" by definition refers to sound, and as anything above 20kHz is inaudible to humans... Signals in the 30-60kHz range require a sample rate greater than 120kHz. Does yo...
by steve
Sun May 10, 2009 11:20 pm
Forum: Windows
Topic: token error at line 5725
Replies: 1
Views: 196

Re: token error at line 5725

You need a text editor that has line numbering. Try Notepad++ http://notepad-plus.sourceforge.net/uk/site.htm it also seems to not find the audio files when i now try to open the song (before the error in 5725) That does not sound good. Make WAV exports of each track as soon as possible so that you ...
by steve
Sun May 10, 2009 11:09 pm
Forum: Audio Processing
Topic: Nyquist in Audacity - order of applying functions
Replies: 3
Views: 553

Nyquist in Audacity - order of applying functions

I would have assumed that when using the code: (setq mysound (mult s 10)) (setq newsound (clip mysound 0.5)) that the variable "s" would have its sample values multiplied by 10, and then the resulting sound ("mysound") would be clipped (hard limited) to 0.5 However, that does not...
by steve
Fri May 08, 2009 1:07 pm
Forum: Audio Processing
Topic: Molding a tone to a given audio sample (matching silences)
Replies: 20
Views: 4785

Re: Molding a tone to a given audio sample (matching silence

Here's a single line of code that should do the job:

Code: Select all

(mult (aref s 1)(sum 0.5 (scale 50 (clip (aref s 0) 0.01))))
by steve
Fri May 08, 2009 12:58 pm
Forum: Windows
Topic: voice recording over mp3
Replies: 30
Views: 4751

Re: voice recording over mp3

Very strange. I've examined it and as far as I can tell it is a perfectly normal 16bit 44100Hz stereo WAV file. I've tried recording another track after importing this file and it works with no problem. When you say "it's with just the one WAV file" - have you tried with similar kinds of f...
by steve
Thu May 07, 2009 6:42 pm
Forum: GNU/Linux and Unix-like
Topic: [email protected]
Replies: 1
Views: 593

Re: [email protected]

Are you using the default Ubuntu build? It's known to be buggy. I gave up on it and built Audacity 1.3.7 from the source code, and it works far better. There is now a better solution. I've just updated Ubuntu to 9.04 and Audacity works great. In fact, I decided to be a bit ambitious and installed th...
by steve
Wed May 06, 2009 7:46 pm
Forum: General Feedback and Discussion
Topic: Longer preview or real-time effects? Are either possible?
Replies: 3
Views: 4621

Re: Longer preview or real-time effects? Are either possible

Theres an option in "Preferences" (Ctrl + P) to adjust the preview time.
(sorry, I'm not on a computer with Audacity installed at the moment and I can't remember exactly where you will find the option, but it's somewhere in Preferences).

Update: It's on the Audio I/O tab
by steve
Wed May 06, 2009 7:43 pm
Forum: Windows
Topic: Huge file - can't see or delete, but created by Audacity
Replies: 7
Views: 660

Re: Huge file - can't see or delete, but created by Audacity

One way to find "invisible" files is to boot a Live Linux CD, then have a look. Knoppix is pretty good for that sort of thing - it may be invisible to Windows, but it will be visible to a NIX operating system.
by steve
Wed May 06, 2009 7:39 pm
Forum: Audio Processing
Topic: Molding a tone to a given audio sample (matching silences)
Replies: 20
Views: 4785

Re: Molding a tone to a given audio sample (matching silence

Sorry I missed this one - been off-line due to a broadband fault :( Interesting to see the solution that you guys have come up with. An alternative method would have been to modify the low frequency wave by using a combination of multiplying, and addition / subtraction and the "clip" funct...