Search found 59476 matches
- Wed May 23, 2012 1:54 am
- Forum: Windows
- Topic: Import .ses (Audition) files
- Replies: 1
- Views: 2883
Re: Import .ses (Audition) files
As far as I'm aware, the only thing that will open "Audition Sessions" is Adobe Audition (previously CoolEdit Pro) The .SES files are not audio files but XML files that contain information about the audio in the session but not the audio itself. .SES files can be opened in a plain text edi...
- Wed May 23, 2012 1:27 am
- Forum: Nyquist
- Topic: Sound object in *SCRATCH*
- Replies: 6
- Views: 3951
Re: Sound object in *SCRATCH*
Thanks Edgar. I had to read that twice ;) but it makes perfect sense. A very clear explanation of a rather muddy Audacity behaviour :P I notice that even an empty sound object still has a sample rate, start time and stop time just like any other sound. (snd-srate *scratch*) => 44100 (snd-extent *scr...
- Wed May 23, 2012 12:35 am
- Forum: GNU/Linux
- Topic: Zooming in on Spectrum Plot
- Replies: 5
- Views: 3070
Re: Zooming in on Spectrum Plot
I want the additional accuracy you get with pulling the analysis window larger... and larger... and larger. For increased accuracy, increase the "Size" setting. The maximum setting is an FFT size of 16384 which provides 8192 frequency bands (roughly one every 3 Hz). That's getting close t...
- Wed May 23, 2012 12:01 am
- Forum: Windows
- Topic: Please help me record streaming sound
- Replies: 20
- Views: 7298
Re: Please help me record streaming sound
Am I capable of recording streaming ??? Be a whole lot easier if Audacity would just list what setups it doesn't work with ? As opposed to be randomly jumping through hoops which aren't clear if they are truly a case of not being capable or not finding the hidden buttons ??? Frustrating. I see a lo...
- Tue May 22, 2012 11:43 pm
- Forum: Windows
- Topic: Audacity 2.0 can't find lame 3.99.5
- Replies: 16
- Views: 8082
Re: Audacity 2.0 can't find lame 3.99.5
I've no idea what Goldwave does as I don't use it.
In Audacity, if you want to record for a specific period, use Timer Record.
Normally with Audacity you would just press stop (or spacebar) when you want the recording to stop rather than using the Time Record feature.
In Audacity, if you want to record for a specific period, use Timer Record.
Normally with Audacity you would just press stop (or spacebar) when you want the recording to stop rather than using the Time Record feature.
- Tue May 22, 2012 11:28 pm
- Forum: Nyquist
- Topic: Stereo tracks in Nyquist
- Replies: 11
- Views: 6152
Re: Stereo tracks in Nyquist
Alternative code for RMS-MULTI (defun rms-multi (snd &optional (rate 100)) (if (not (arrayp snd))(setf snd (vector snd))) (let* ((win (round (/ *sound-srate* rate))) (channels (length snd)) (avg-snd (force-srate rate (s-rest)))) (dotimes (ch channels) (let ((sqs (mult (aref snd ch) (aref snd ch)...
- Tue May 22, 2012 11:07 pm
- Forum: Nyquist
- Topic: Stereo tracks in Nyquist
- Replies: 11
- Views: 6152
Re: Stereo tracks in Nyquist
Is this real true? Can anybody find errors? Other than a couple of typos I think that is all correct. In the first stereo example you've written (aref s 0) where it should be (aref s 1) and there's a couple of parentheses missing from the end. [update: I see you've corrected the (aref s 0) though t...
- Tue May 22, 2012 10:47 pm
- Forum: Nyquist
- Topic: Sound object in *SCRATCH*
- Replies: 6
- Views: 3951
Re: Sound object in *SCRATCH*
With me all three versions work, Yes they return a sound when the code snippet is run, but only the first one appears to store the 20Hz sample rate envelope in *scratch*. When the following is run in the Nyquist Prompt () *scratch* the envelope is returned if this code was used immediately before: ...
- Tue May 22, 2012 8:42 pm
- Forum: Nyquist
- Topic: Stereo tracks in Nyquist
- Replies: 11
- Views: 6152
Re: Stereo tracks in Nyquist
Yes, but that no aliasing occurs in one very special case doesn't mean that it never aliases. The signal combination where a signal multiplication aliases are a myriad higher than the few special cases wher no aliasing happens. For example, if I multiply no signal with no signal at all then this wi...
- Tue May 22, 2012 7:55 pm
- Forum: GNU/Linux
- Topic: Zooming in on Spectrum Plot
- Replies: 5
- Views: 3070
Re: Zooming in on Spectrum Plot
Actually you can. See here.kozikowski wrote:I wish.