21 lines
700 B
Bash
Executable File
21 lines
700 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CMD=$0
|
|
PROGDIR=$(echo $CMD|perl -pe 's|/[^/]*$||')
|
|
cd $PROGDIR
|
|
|
|
echo ""
|
|
echo -e "\033[37;41m Welcome to SBaGen \033[0m"
|
|
echo ""
|
|
echo "This is a quick half-hour demo of a binaural beat slide at 10Hz going "
|
|
echo "through carrier frequencies from 200Hz down to 5Hz. You should listen "
|
|
echo "with headphones and with eyes closed. This uses alpha frequencies which"
|
|
echo "you will probably find leave you feeling light, awake and relaxed. If "
|
|
echo "you want to stop before the end, press Ctrl-C. Hopefully this is enough "
|
|
echo "of a taster to get you to read the docs and work out how to access all "
|
|
echo "the other files."
|
|
echo ""
|
|
|
|
./sbagen -m river1.ogg -p slide 200+10/1 mix/100
|
|
|