mirror of
https://github.com/aljazceru/vibeline.git
synced 2026-01-13 03:24:24 +01:00
Update run.sh to process all .m4a files in VoiceMemos directory
This commit is contained in:
10
run.sh
10
run.sh
@@ -3,8 +3,14 @@
|
||||
# Activate virtual environment
|
||||
source vibenv/bin/activate
|
||||
|
||||
echo "Processing voice memos to create transcripts..."
|
||||
./process.sh
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user