Is it possible to modulate a tone with messages?

Is it possible to modulate a tone with messages?

How can I do it?

Is your question related to “audiobook production”?

If your “message” is an Audacity track, you can modulate it with a tone using the following code in the “Nyquist Prompt” (see: Nyquist Prompt - Audacity Manual)

Modify the first line as necessary according to the required modulation frequency:

(setf mod-frequency 10.0)
(mult *track* 0.5 (sum 1 (hzosc mod-frequency)))

Thanks