Search found 59476 matches

by steve
Tue Jun 12, 2012 7:53 pm
Forum: New Plug-Ins
Topic: Cross-Fade (revisited)
Replies: 106
Views: 30079

Re: Cross-Fade (revisited)

can we see your production version? I've not got it here (it's on my "work" machine), but basically it is a stripped down version that has just those features that I find useful. For myself it is obvious that the maximum fade length for an "in-line" fade is half of the selection...
by steve
Tue Jun 12, 2012 6:32 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

The "hint" is just one approach. There are a number of ways that it can be done. The difficulty with a single loop is that it gets quite complicated when, for example, the time between the nth label and the nth+1 label is: (- (first (nth (1+ n) label-list))(first (nth n label-list))) and t...
by steve
Tue Jun 12, 2012 6:19 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

I'm glad that I didn't say this would be easy :D
by steve
Tue Jun 12, 2012 6:18 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

The "hint" lists are a step in the processing. By splitting the label data into the lists that we are interested in makes it easier to extract the relevant data. Once we have the lists, then we can loop through the lists to get the average durations and so on. Something that we have not co...
by steve
Tue Jun 12, 2012 6:06 pm
Forum: Audacity 2.x Feedback and Reviews
Topic: Extended silence automatically stops recording feature?
Replies: 1
Views: 2463

Re: Extended silence automatically stops recording feature?

Audacity 2.0.0 has "Sound Activated Recording" but this starts and stops immediately on the sound level passing a threshold level. http://manual.audacityteam.org/manual/help/manual/man/transport_menu.html#sar Audacity does not currently have any way to stop the recording a delayed time aft...
by steve
Tue Jun 12, 2012 6:03 pm
Forum: Audacity 2.x Feedback and Reviews
Topic: Efficient way to import a song list?
Replies: 5
Views: 2816

Re: Efficient way to import a song list?

I think this is (mostly) a matter for iTunes (or other media player/library manager). Audacity is a multi-track audio editor, not a music library manager. When you export recordings from Audacity, use a format that has good support for metadata (such as AIFF or MP3) and add Artist and Title data wit...
by steve
Tue Jun 12, 2012 5:41 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

Hint: ;; list of labels in correct order (setf label-list (list (list 1 2 "first list") (list 4 6 "second list") (list 7.5 8 "third list"))) (setf odd-lab ()) ; initialise list of odd labels (setf even-lab ()) ; initialise list of even labels (setf odd-dur ()) ; initial...
by steve
Tue Jun 12, 2012 5:31 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

I'm going to have to leave this for a bit now - other things to do, so spend some time on the logic and try to work out as clearly as possible "how" this will work.
by steve
Tue Jun 12, 2012 5:29 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

I would like to get a print out of all of the odd labels and their lengths, and the total average for the odd(label 1, 3, 5, etc) lengths. As well as a print out of all the even labels and their lengths, and the total average for the even (label 2, 4, 6, etc) lengths. Ideally I would like to have t...