I have created, at the moment, a simple script that generates several beeps with synusoids and that after concatenates them, to have more complex sounds. I used a bash script to do that, as I could not understand how to do this using simply sox... My script with play is something like
count=0
while [ 1 ]
do
play -n synth 1 sine C
play -n synth 0.2 sine E
play -n synth 0.2 sine C
play -n synth 0.2 sine E
if [ $count -eq 5 ]
then
sleep 1
count=0
fi
count=$(($count+1))
done
Which produces something like an italian ambulance. That's not the aim of course, but the idea is... How can I produce with one command several consecutive sines without needing of different commands?
There is a way to do this although it's not very clear or discoverable in the documentation despite claims to the contrary. I came across this method by accident while looking for something else in the man page. You can use the ':' character to separate effects chains like this:
That plays C, D on a sine waveform at two different lengths. You can also create separate effects chains for each note:
This will play C3 D3 and E3 using different lengths for the notes, waveforms and effects.
Apparently you can also use newline separators, but that's for if you're using the --effects-file option, which is how I found out about the ':' character. This is described in the "Multiple Effects Chains" in the man page, which is about 25% into a rather long man page.
Another method of doing this which combines the notes into a single sample is to use the delay and remix effects like this:
The issue with this though is that the notes are all the same length.
When you need notes of variable length and with silent spaces around, say in Morse codes, then you can use these commands:
Without saving a temporal file:
With saving a temporal file:
A faster solution is to use the temporal file in shared memory, if it is possible in your system: