Search found 59476 matches

by steve
Tue Oct 13, 2020 1:49 pm
Forum: Windows
Topic: How to reverse and change speed in one effect
Replies: 48
Views: 1998

Re: How to reverse and change speed in one effect

I'm not sure what you are hoping to do here, but it won't work. (vector (snd-function (aref *track* 0)) (snd-function (aref *track* 1)) (snd-function *track*)) Looking at the parentheses, the start of the function call is "(vector ...." and the end of that function call is the final "...
by steve
Tue Oct 13, 2020 1:42 pm
Forum: Windows
Topic: How to reverse and change speed in one effect
Replies: 48
Views: 1998

Re: How to reverse and change speed in one effect

I'll write about PRINT here, then another post about THROW. Unlike PRINT, the THROW statement does not print anything. What it does is to stop the program immediately and send a message to it's associated CATCH. See: https://www.audacity-forum.de/download/edgar/nyquist/nyquist-doc/xlisp/xlisp-ref/x...
by steve
Tue Oct 13, 2020 1:38 pm
Forum: Windows
Topic: How to reverse and change speed in one effect
Replies: 48
Views: 1998

Re: How to reverse and change speed in one effect

...which is better, "print" or "throw 'err"? It depends what you want to do. I'll write about PRINT here, then another post about THROW. PRINT writes a string (text) to the default output stream - For Nyquist in Audacity the default output stream is the debug window. It also ret...
by steve
Tue Oct 13, 2020 1:02 pm
Forum: Windows
Topic: How to reverse and change speed in one effect
Replies: 48
Views: 1998

Re: How to reverse and change speed in one effect

When you include code in your post, please use the " </> " button to create code tags. In the message editing widow they look like this: [code ][ /code] You then insert your code between the [code ] and [ /code] like this: [code ] Type or paste your code here ... [ /code] The code tags ens...
by steve
Tue Oct 13, 2020 12:10 pm
Forum: Windows
Topic: How to reverse and change speed in one effect
Replies: 48
Views: 1998

Re: How to reverse and change speed in one effect

error: unexpected EOF That means that your "(" and ")" don't match. You are missing one or more "close parentheses". A common cause of this error is if you have a quoted string that isn't closed. Example: (print "Hello World) Note the missing quote at the end of &...
by steve
Tue Oct 13, 2020 12:07 pm
Forum: Windows
Topic: How to reverse and change speed in one effect
Replies: 48
Views: 1998

Re: How to reverse and change speed in one effect

Also, there is a syntax error in the IF statement. It should be (in pseudo code) (if something (do-something) (do-something-else)) You have (if is-stereo (*track* (aud-do "Duplicate:") ... The implication of (*track* is that *track* is a function name, which it isn't. *track* is a variable...
by steve
Tue Oct 13, 2020 11:56 am
Forum: Windows
Topic: How to reverse and change speed in one effect
Replies: 48
Views: 1998

Re: How to reverse and change speed in one effect

Also note that to use THROW, there must also be a CATCH.
See: https://www.audacity-forum.de/download/ ... ef-281.htm
by steve
Tue Oct 13, 2020 11:55 am
Forum: Windows
Topic: How to reverse and change speed in one effect
Replies: 48
Views: 1998

Re: How to reverse and change speed in one effect

Winston wrote:
Tue Oct 13, 2020 11:20 am
This did nothing, was there something I'm missing or didn't get?
Try running the plug-in with the Debug button.
The first line of the debug output indicates the error in the code.
by steve
Tue Oct 13, 2020 10:26 am
Forum: Recording Equipment
Topic: Need help with Microphone purchase for home use (song recording)
Replies: 5
Views: 471

Re: Need help with Microphone purchase for home use (song recording)

I was thining about Fifine t669 USB condenser microphone. I've not seen one of those in real life, but it looks very much like one of the many ultra-cheap "badged" Chinese microphones. Ultra-cheap USB microphones are very popular with YouTube reviewers, and usually receive "great&quo...
by steve
Tue Oct 13, 2020 10:01 am
Forum: Windows
Topic: How to reverse and change speed in one effect
Replies: 48
Views: 1998

Re: How to reverse and change speed in one effect

I'm trying to find a "Duplicate" effect in Nyquist Nyquist is included with Audacity, but it is separate from Audacity. When a Nyquist plug-in runs, it returns some kind of data to Audacity, and Audacity then decides what to do with that data. For example if a Nyquist effect returns audio...