Help for Audacity on Windows.
Forum rules
This forum is for Audacity on Windows.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at
https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the
1.2.x and
1.3.x forums.
-
yugioh47
- Posts: 334
- Joined: Sun Mar 01, 2015 7:52 pm
- Operating System: Windows 10
Post
by yugioh47 » Wed Jul 20, 2016 11:20 pm
ok here's my idea. i want to feel tingly and excised from the music. so what i'm trying to get here is a plugin that i'm trying to make.
here's my code
Code: Select all
;nyquist plug-in
;version 1
;type process
;preview linear
;name "instensify..."
;action "instensify"
;control intensity "intensity (percent)" int "" 1 0 100
; Convert % to linear
(setq intensify (/ intensify 100.0))
;;; Generate modulation wave
(defun mod-wave (percent)
(when (= intensify percent)
(setq intensify (- intensify)))
(sum (1 percent)
(mult level
(osc (%-to-step ) 100.0 waveform intensify))))
(mult s (mod-wave intensify))
what it say's is: returned to 1 or 100 when i do this plugin for a test run.
why do i get 1 or 100 returned message box?
can someone tell me why or went wrong with my code to this intensify code?
-
steve
- Site Admin
- Posts: 80677
- Joined: Sat Dec 01, 2007 11:43 am
- Operating System: Linux *buntu
Post
by steve » Wed Jul 20, 2016 11:28 pm
Try clicking the "Debug" button.
-
yugioh47
- Posts: 334
- Joined: Sun Mar 01, 2015 7:52 pm
- Operating System: Windows 10
Post
by yugioh47 » Thu Jul 21, 2016 7:43 pm
steve wrote:Try clicking the "Debug" button.
i've tryed that and i get the same message. it's say's: nyquist returned the value: 100. when i put it at that
-
steve
- Site Admin
- Posts: 80677
- Joined: Sat Dec 01, 2007 11:43 am
- Operating System: Linux *buntu
Post
by steve » Thu Jul 21, 2016 7:54 pm
What else does it say?
-
yugioh47
- Posts: 334
- Joined: Sun Mar 01, 2015 7:52 pm
- Operating System: Windows 10
Post
by yugioh47 » Thu Jul 21, 2016 11:38 pm
steve wrote:What else does it say?
that's all it says. i'll post the image below.
-
Attachments
-

- audacity problem.jpg (345.67 KiB) Viewed 698 times
-
steve
- Site Admin
- Posts: 80677
- Joined: Sat Dec 01, 2007 11:43 am
- Operating System: Linux *buntu
Post
by steve » Fri Jul 22, 2016 12:40 am
Click the "Debug" button rather than the "OK" button to run the code. After you dismiss the message window that says "Nyquist returned the value: 1" there will be a debug window that gives important clues about the first problem.
-
Trebor
- Posts: 9847
- Joined: Sat Dec 27, 2008 5:22 pm
- Operating System: Windows 8 or 8.1
Post
by Trebor » Sat Jul 23, 2016 1:39 pm
yugioh47 wrote:ok here's my idea. i want to feel tingly and excised from the music.
IMO the tingly [chills] thing is a is a stereo-effect : it doesn't occur in mono ...
[ and IMO it only occurs at the high-end of the frequency range, and only if the volume is above a threshold ].
Perhaps a
resonance-effect stimulating the
stapedius reflex, which in turn activates other parts of
cranial nerve VII , (producing tingling sensation in face & scalp).
There is crossover in the wiring ...

which would explain why tingling [chills] don't occur with one ear plugged.
-
yugioh47
- Posts: 334
- Joined: Sun Mar 01, 2015 7:52 pm
- Operating System: Windows 10
Post
by yugioh47 » Sat Jul 23, 2016 4:51 pm
steve wrote:Click the "Debug" button rather than the "OK" button to run the code. After you dismiss the message window that says "Nyquist returned the value: 1" there will be a debug window that gives important clues about the first problem.
i've done that already. it can't remember the settings for some reason . this is what i get
-
yugioh47
- Posts: 334
- Joined: Sun Mar 01, 2015 7:52 pm
- Operating System: Windows 10
Post
by yugioh47 » Sun Jul 24, 2016 10:31 am
ok steve i when back to 2.0.6 audacity because of audacity not remembering the settings from 2.1.3 beta
so here's the debug cold:
Code: Select all
error: unbound variable - INTENSIFY
if continued: try evaluating symbol again
Function: #<FSubr-SETQ: #2c08cb90>
Arguments:
INTENSIFY
(/ INTENSIFY 100)
1> MOD-WAVE
1> error: unbound variable - INTENSIFY
if continued: try evaluating symbol again
Function: #<FSubr-SETQ: #2c08cb90>
Arguments:
INTENSIFY
(/ INTENSIFY 100)
2> 1>
-
steve
- Site Admin
- Posts: 80677
- Joined: Sat Dec 01, 2007 11:43 am
- Operating System: Linux *buntu
Post
by steve » Sun Jul 24, 2016 11:41 am
yugioh47 wrote:ok steve i when back to 2.0.6 audacity because of audacity not remembering the settings from 2.1.3 beta
The current supported version of Audacity is 2.1.2. It is available here:
http://www.audacityteam.org/download/
yugioh47 wrote:error: unbound variable - INTENSIFY
OK, so that's your clue to the first error in your code.
The variable "intensify" has not been given a value. I presume that you intended the control to supply that value, but there you have used the variable name "intensity".