Search found 59476 matches

by steve
Mon Jan 04, 2016 8:50 pm
Forum: Feature Request Archive
Topic: Zoom Normal (Cmd+2) cursor position
Replies: 59
Views: 5927

Re: Zoom Normal (Cmd+2) cursor position

I've logged bug 1292 and 1293 as "enhancement" issues.
Bug 1292 - Zoom Normal (Ctrl+2) may move selection off screen
Bug 1293 - Unable to mouse wheel zoom in beyond end of project
by steve
Mon Jan 04, 2016 8:16 pm
Forum: Nyquist
Topic: command to find loudest sample in selection, possible?
Replies: 44
Views: 6606

Re: command to find loudest sample in selection, possible?

possible to do the same without splitting the track? The split line is a behaviour implemented by Audacity on effects that change the length of the selection. However there is a plug-in header command that overrides the behaviour: ;mergeclips 1 http://wiki.audacityteam.org/wiki/Nyquist_Plug-ins_Ref...
by steve
Mon Jan 04, 2016 7:28 pm
Forum: Nyquist
Topic: command to find loudest sample in selection, possible?
Replies: 44
Views: 6606

Re: command to find loudest sample in selection, possible?

Something like this perhaps: (setq maxval 0.0) (setf num 0) (defun get-peak (sig) (do ((count 0 (1+ count)) (val (snd-fetch sig)(snd-fetch sig))) ((not val) (/ num *sound-srate*)) (when (> (abs val) maxval) (setf maxval (abs val)) (setf num count)))) (extract-abs (get-peak (snd-copy *track*)) (get-d...
by steve
Mon Jan 04, 2016 7:00 pm
Forum: Feature Request Archive
Topic: Regular Interval Region Labels
Replies: 90
Views: 24834

Re: Regular Interval Region Labels

Regular Interval Region Labels needs to be updated because of bug 1020, but until we have a more flexible GUI for Nyquist effects I don't see that we can make any major improvements so moving this to the archive for now.
by steve
Mon Jan 04, 2016 4:39 pm
Forum: Nyquist
Topic: command to find loudest sample in selection, possible?
Replies: 44
Views: 6606

Re: command to find loudest sample in selection, possible?

Unfortunately Nyquist plug-ins are not able to change the selection times.
However, Nyquist plug-ins can delete part of the selection. Would that be any help?
It would certainly help us if you could paint a picture in words to describe what the job is - what exactly are you trying to do, and why?
by steve
Mon Jan 04, 2016 3:21 pm
Forum: Windows
Topic: Commentary audio not splitting correctly in audacity
Replies: 13
Views: 1270

Re: Commentary audio not splitting correctly in audacity

Have a look in the recording settings in the Windows Sound Control Panel. Are you able to set the microphone input to "2 channel stereo"?
by steve
Mon Jan 04, 2016 3:17 pm
Forum: Maintaining / Improving this Forum
Topic: "Operating system" for existing users
Replies: 17
Views: 6414

Re: "Operating system" for existing users

To set the operating system, click on the "User Control Panel" link near the top left corner of the forum page.
Then select the "Profile" tab.
Then select your operating system from the multi-choice near the bottom of that section.
by steve
Mon Jan 04, 2016 10:10 am
Forum: Nyquist
Topic: command to find loudest sample in selection, possible?
Replies: 44
Views: 6606

Re: command to find loudest sample in selection, possible?

If we want a label for each sample that has the maximum value (which is only likely to occur if the audio is clipped) then we could save a list of maximum values rather than just one maximum value, then on completion we would convert that list into labels. Like this: (setf maxval 0.0) (setf labels ...
by steve
Mon Jan 04, 2016 9:54 am
Forum: Windows
Topic: Commentary audio not splitting correctly in audacity
Replies: 13
Views: 1270

Re: Commentary audio not splitting correctly in audacity

At 1 minute 26 seconds
https://www.youtube.com/watch?v=lxROjL3 ... be&t=1m26s
"...I know that some of your computers might have a mono mic input..."
by steve
Mon Jan 04, 2016 9:45 am
Forum: Windows
Topic: How to Remove Vocals from a Song Using Audacity
Replies: 2
Views: 410

Re: How to Remove Vocals from a Song Using Audacity

See: http://manual.audacityteam.org/o/man/tutorial_vocal_removal_and_isolation.html One program that is not mentioned there is "Melodyne" (http://www.celemony.com/en/melodyne/what-is-melodyne). It is one of the best programs for this sort of thing, but it does not come cheap. A non-save tr...