Morse Ringtones
I am such a geek. In order to hopefuly help me learn morse, I now have morse ringtones for most of my friends and family.
I spent some time putzing around with pulse audio on the laptop trying to record these myself, and then found http://morseringtones.com.
So I wrote a script to slurp down ringtones, I just add a name or callsign to lists.txt and run generate.sh
#!/bin/bash for i in $(cat list.txt) do if [ ! -f "${i}_medium.mp3" ];then wget -O /dev/null "http://morseringtones.com/cgi-bin/generate_ringtone.sh?text=${i}&speed=medium&pitch=600&repeat=3" wget http://morseringtones.com/working/${i}_medium.mp3 fi done