Hola amigos,
Noticed not many Nyquist plug-ins, for labels, and I'm sure the current vision of Audacity supports
such things, so here's mine for Audi126....
You use this one by selecting a loop, entering how many measures are in the loop, then pressing
the OK button. Labels are placed at the start of each measure. Probably has other uses...
For coders, not much error checking in this one as I was feeling lazy...
I think Audacity 1.3 has something that does this, but this one is written by me.
Here you can add labels at multiple time intervals.
Labels begin starting at where your cursor is, not necessarily at 0.000000 unless your cursor is there...
For instance, suppose your cursor was at 10.000000 and you wanted a label at 10.123456,
you could do this by entering 0.123456 into the LABEL GUNN.
Not to toot my own horn, but this is a favorite of mine and I get much use from it when trying to
figure out how to sequence DnB loops when looking at DnB loops.
It's also pretty handy as a cheap sequencer AND for loop
sequencing (ie creating loop tracks that remain in-time).
Basically, you need to figure out the sequence "button length" you need and enter it.
For instance, say your 165 bpm one measure loop is 1.455715 seconds long.
You divide that by 16, getting you "button length": 0.090908 seconds
You enter this number into 5M and it places 5 measures of labels every 0.090908 seconds.
Also has some variations of types of labels/text on labels option.
Pretty handy IMO.
LaBeL PlUg-In PaCk
Forum rules
This Forum is an archive of old topics concerning Nyquist plug-ins.
Feedback and questions relating to topics may be posted, but please
DO NOT POST NEW TOPICS HERE.
New plug-ins may be posted on the New Plug-Ins board.
Other posts relating to Nyquist should be posted to the main Nyquist board.
The main repository for Audacity/Nyquist Plug-ins is on the Audacity Wiki.
This Forum is an archive of old topics concerning Nyquist plug-ins.
Feedback and questions relating to topics may be posted, but please
DO NOT POST NEW TOPICS HERE.
New plug-ins may be posted on the New Plug-Ins board.
Other posts relating to Nyquist should be posted to the main Nyquist board.
The main repository for Audacity/Nyquist Plug-ins is on the Audacity Wiki.
Re: LaBeL PlUg-In PaCk
Audacity 1.3.x has Regular Interval Labels...loopman wrote:I'm sure the current vision of Audacity supports such things
There is also a Beat Per Minute labels plug-in.
You mean "Audacity 1.2.6 on Windows".loopman wrote:here's mine for Audi126
They should also work with Audacity 1.2.x on case sensitive operating systems if the file extension is changed to lower case ".ny".
To make "M3.NY" compatible with Audacity 1.3.x users can edit the file in a text editor (such as NotePad) and make the following changes:
line 3 from:
Code: Select all
;type generateCode: Select all
;type analyzeline 9 from:
Code: Select all
;control MEZ "#ofM" int "#" 1 1 50Code: Select all
;control MEZ "Number of Labels" int "" 1 1 50line 11 from:
Code: Select all
(SETQ AUL (/ LEN 44100.000000))to:
Code: Select all
(setq aul (get-duration 1))As Audacity 1.2.6 also supports type 2 plug-ins you could also make the label text customisable by adding a Text Input Widget.
For example:
Code: Select all
;nyquist plug-in
;version 2
;type analyze
;name "M3"
;action "measuring..."
;info ""
;control mez "Number of Beats" int "" 1 1 50
;control text "Label Text" string "" "MeZ" ""
(setq mlen (get-duration (/ 1.0 mez)))
(setq labels (list))
(dotimes (mnum mez)
(setq labels
(cons (list (* (1+ mnum) mlen) text) labels)))
labels ;return label track
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)