Search found 59476 matches

by steve
Fri Sep 14, 2012 2:02 am
Forum: Windows
Topic: Can audacity be used as a synthesizer?
Replies: 5
Views: 2103

Re: Can audacity be used as a synthesizer?

The trouble with TV is that people see some guy in a film say "computer... enhance" and magically the voice that was hidden by all of the noise is suddenly revealed in crystal clarity. The important word here is "magically". Physics does not work like that. If you have a recordin...
by steve
Fri Sep 14, 2012 1:48 am
Forum: Windows
Topic: Importing raw data in sooner time
Replies: 7
Views: 1298

Re: Importing raw data in sooner time

Get a faster computer? You've not said what format the files are in, but assuming 128 kbps MP3, you are wanting to decode around 840 MB of data to around 8.5 GB uncompressed. [update: my mistake - you did say "raw data" - but what is that? PCM? Mono/Stereo? Sample rate? Bit depth? Whatever...
by steve
Fri Sep 14, 2012 1:31 am
Forum: Nyquist
Topic: How to determine a track's Bit depth
Replies: 6
Views: 3981

Re: How to determine a track's Bit depth

10 years - doesn't time fly while you're having fun :) but yes in this context I prefer "peak".
by steve
Fri Sep 14, 2012 1:25 am
Forum: Recording Techniques
Topic: punching in
Replies: 12
Views: 8957

Re: punching in

dan3h wrote:I figured out a super-easy way of doing this, without having to mess around with labels.
You are absolutely correct - but why bother moving / copying everything to the same track? Audacity has multi-track capability, so why not use it?
by steve
Fri Sep 14, 2012 1:10 am
Forum: New Plug-Ins
Topic: Append Import
Replies: 57
Views: 39392

Re: Append Import

I would still rather give people a bit more help here, given Windows and Mac hide extensions by default. How about .... Yes I can go for that, but it's an extra line and we're already up to the 25 line limit for 800 x 600, so we'll need to lose a line somewhere - perhaps the blank line between: loa...
by steve
Thu Sep 13, 2012 7:36 pm
Forum: Nyquist
Topic: How to determine a track's Bit depth
Replies: 6
Views: 3981

Re: How to determine a track's Bit depth

Its maybe worth mentioning that you don't have to analyse the whole sound, 1100 samples should be enough. The function snd-maxsamp should probably be replaced with the function peak as the Nyquist manual states that snd-maxsamp "will probably be removed in a future version (http://www.cs.cmu.e...
by steve
Thu Sep 13, 2012 7:29 pm
Forum: Feature Request Archive
Topic: Harmonic Number Scale for Frequency Analysis
Replies: 11
Views: 7199

Re: Harmonic Number Scale for Frequency Analysis

Yes, for low frequencies it would be very useful. What sort of sounds are you thinking of? The most common is probably "mains hum" (50 or 60 Hz) which is unlikely to be visible at all in linear view. An alias is not a sub-harmonic Yes and no - it is "below" the harmonics, hence &...
by steve
Thu Sep 13, 2012 6:24 pm
Forum: Windows
Topic: Need help I'm a begginer
Replies: 6
Views: 694

Re: Need help I'm a begginer

Drag with the time shift tool: http://manual.audacityteam.org/o/man/to ... #timeshift
Generate a beep with "Generate menu > Tone".

More information about handling audio tracks and clips in Audacity: http://manual.audacityteam.org/o/man/au ... clips.html
by steve
Thu Sep 13, 2012 4:42 pm
Forum: Windows
Topic: Need help I'm a begginer
Replies: 6
Views: 694

Re: Need help I'm a begginer

You're asking a video editing question. Audacity does not edit video, only audio. Most video editors will allow you to insert, delete and move the audio track. Consult your video editing software manual for details.
by steve
Thu Sep 13, 2012 4:32 pm
Forum: Nyquist
Topic: How to determine a track's Bit depth
Replies: 6
Views: 3981

Re: How to determine a track's Bit depth

Very nice. Thanks for sharing. To make it more easily readable for the rest of us, I've reformatted your code with indentation (below). ;;; mix to mono if stereo (defun mono (sig) (if (arrayp sig) (sim (aref sig 0) (aref sig 1)) sig)) ;;; test against powers of 2 (defun bit-test (sig bits) (snd-maxs...