pshute wrote:Is that ability a planned enhancement, or just an idea at the moment?
Currently there are no developers working on the Nyquist plug-in interface,
I don't suppose you are a highly skilled C++ programmer by any chance?
pshute wrote:I guess then the plugin would require me to do the Labelled Regions Cut/Paste myself
Label tracks can be exported as text files.
Text can be input into a Nyquist plug-in, either be pasting into a text box (the easier method) or by the plug-in reading a text file (trickier).
pshute wrote:I could probably base it on the Silence Marker or Sound Finder plugins,
The code in these plug-ins is somewhat convoluted. I've got some cleaner "detect sounds" code if you are interested in pursuing this as a plug-in. In fact (rummaging around...) this code isn't too bad:
http://forum.audacityteam.org/viewtopic ... 80#p197980
Nyquist does not have access to the Audacity clipboard, but it is possible to copy audio from one track to another by temporarily holding the data in the *SCRATCH* symbol. There's an example of this here:
http://forum.audacityteam.org/viewtopic ... 03#p197403
It would be relatively easy to adapt this code to copy a selection from one track, apply a fade-in fade-out to the copied data and paste it into the next selected track.