Audacity 3.7.7 Ubuntu 22.04 Vocoder Plugin Issues

Hello Everyone,

Not sure if this is the proper place for this - please move if needed.

When I tried to use version 4 of the vocoder plugin, the gui would not display. When I tried version 3 of the plugin, the gui displayed, but would not effect the audio.

Comparing the code…

Version 3:

$control dst (_ “Distance: (1 to 120, default = 20)”) real “” 20 1 120
$control mst (_ “Output choice”) choice (
(“BothChannels” (_ “Both Channels”))
(“RightOnly” (_ “Right Only”))
) 0
$control bands (_ “Number of vocoder bands”) int “” 40 10 240
$control track-vl (_ “Amplitude of original audio (percent)”) real “” 100 0 100
$control noise-vl (_ “Amplitude of white noise (percent)”) real “” 0 0 100
$control radar-vl (_ “Amplitude of Radar Needles (percent)”) real “” 0 0 100
$control radar-f (_ “Frequency of Radar Needles (Hz)”) real “” 30 1 100

Version 4:

$control DST (_ “Distance: (1 to 120, default = 20)”) float “” 20 1 120
$control MST (_ “Output choice”) choice ((“BothChannels” (_ “Both Channels”))
(“RightOnly” (_ “Right Only”))) 0
$control BANDS (_ “Number of vocoder bands”) int “” 40 10 240
$control TRACK-VL (_ “Amplitude of carrier wave (percent)”) float “” 100 0 100
$control NOISE-VL (_ “Amplitude of white noise (percent)”) float “” 0 0 100
$control RADAR-VL (_ “Amplitude of Radar Needles (percent)”) float “” 0 0 100
$control RADAR-F (_ “Frequency of Radar Needles (Hz)”) float “” 30 1 100

There seems to be an issue with indentation - when I replaced that block of code in V4 with the block from V3, it works - GUI and effects.