12 lines
345 B
Bash
Executable File
12 lines
345 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
mkdir -p persona
|
|
cat persona/voice-script.txt
|
|
echo
|
|
if [ ! -f persona/voice-sample.wav ]; then
|
|
echo "Record the voice script above and save it as persona/voice-sample.wav (5-22s)."
|
|
fi
|
|
if [ ! -f persona/avatar.png ]; then
|
|
echo "Drop a square avatar still into persona/avatar.png (optional for CPU prototype)."
|
|
fi
|