Search found 59476 matches
- Thu Jun 14, 2012 12:27 am
- Forum: New Plug-Ins
- Topic: Cross-Fade (revisited)
- Replies: 106
- Views: 30079
Re: Cross-Fade (revisited)
Version 2 of the new cross-fade demo. I find I still prefer to cut precisely where I want to cut, to timeshift to precisely where I want the overlap to be, and to apply exactly the amount of fade out/fade that I want each piece to have. Try the "advanced" method with this version. It's not...
- Wed Jun 13, 2012 10:29 pm
- Forum: Plug-in Archive
- Topic: Resonant Filter
- Replies: 20
- Views: 14841
Resonant Filter
Not much to say about it. It's a resonant filter. The "bandpass" version is equivalent to applying the high-pass and the low-pass resonant filters. See here for how to install: http://audacityteam.org/download/plugins Using a high resonance setting will probably produce peaks over 0 dB, so...
- Wed Jun 13, 2012 10:25 pm
- Forum: Windows
- Topic: bioacoustic analysis - dominant frequency?
- Replies: 4
- Views: 1827
Re: bioacoustic analysis - dominant frequency?
That sounds right, though I don't think it is actually a "power" spectrum. It shows the "amplitude" that is normalised so that a full scale sine wave will show as 0 dB. You may find it easier to "read" the spectrum if you change the Axis setting to "Log Frequency&q...
- Wed Jun 13, 2012 10:12 pm
- Forum: Windows
- Topic: Is there a way to stop auto-zoom on track you are recording.
- Replies: 4
- Views: 1168
Re: Is there a way to stop auto-zoom on track you are record
No, but you can:edgar-rft wrote:AFAIK Audacity can't record in a collapsed track automatically.
1) Press Pause
2) Press Record
3) Collapse the track
4) Press Pause
- Wed Jun 13, 2012 10:10 pm
- Forum: Nyquist
- Topic: Label data to text file
- Replies: 108
- Views: 21011
Re: Label data to text file
Sure you can. Just change the text that is in double quotes in the (format) commands. Note that ~a calls up the value from the end of the command and ~% is a new line. The rest is just text. Example that will print to a pop-up window: (format nil "My favourite number is: ~a~%My second favourite...
- Wed Jun 13, 2012 9:58 pm
- Forum: Windows
- Topic: Split Option Missing
- Replies: 7
- Views: 2011
Re: Split Option Missing
Try the Ctrl+I shortcut.sirloyne wrote: I find it more familiar.
I find it to be one of the most useful (after "space" to play and stop).
- Wed Jun 13, 2012 9:55 pm
- Forum: New Plug-Ins
- Topic: Cross-Fade (revisited)
- Replies: 106
- Views: 30079
Re: Cross-Fade (revisited)
Me tooPGA wrote:I find I still prefer to cut precisely where I want to cut, to timeshift to precisely where I want the overlap to be, and to apply exactly the amount of fade out/fade that I want each piece to have.
However I have a cunning plan.....
- Wed Jun 13, 2012 7:39 pm
- Forum: Windows
- Topic: Is there a way to stop auto-zoom on track you are recording.
- Replies: 4
- Views: 1168
Re: Is there a way to stop auto-zoom on track you are record
I'm not quite sure what you mean. Do you mean it's zooming vertically or horizontally?
- Wed Jun 13, 2012 5:30 pm
- Forum: Windows
- Topic: Split Option Missing
- Replies: 7
- Views: 2011
Re: Split Option Missing
This doesn't explain why on one 1 computer options like Split, Split New and Join are listed directly under Edit, while on 2 other computers they are under Edit --> Clip Boundaries. The other computer has an old version of Audacity. I believe that the reason it was changed is because more people ar...
- Wed Jun 13, 2012 5:05 pm
- Forum: Nyquist
- Topic: Label data to text file
- Replies: 108
- Views: 21011
Re: Label data to text file
If I wanted to remove skipping the first initial label, how would I alter the code? Lines 113, 114 ;Create the label text (setq label-string (format nil "~A" (1- sound-count))) change to: ;Create the label text (setq label-string (format nil "~A" sound-count)) Change line 129 fr...