mirror of
https://github.com/aljazceru/vibeline.git
synced 2026-01-13 03:24:24 +01:00
15 lines
351 B
Bash
Executable File
15 lines
351 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Activate virtual environment
|
|
source vibenv/bin/activate
|
|
|
|
echo "Processing all voice memos..."
|
|
for file in VoiceMemos/*.m4a; do
|
|
if [ -f "$file" ]; then
|
|
echo "Processing: $file"
|
|
./process.sh "$file"
|
|
echo "----------------------------------------"
|
|
fi
|
|
done
|
|
|
|
echo "Done! All voice memos have been processed." |