mirror of
https://github.com/aljazceru/vibeline.git
synced 2026-01-15 12:34:24 +01:00
18 lines
448 B
Bash
Executable File
18 lines
448 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 "Creating summaries for transcripts..."
|
|
python src/summarize_transcripts.py
|
|
|
|
echo "Done! All voice memos have been processed and summarized." |