From 47d33a480d68a4a93e0d86ef5dba5f9247849cc4 Mon Sep 17 00:00:00 2001 From: ange Date: Fri, 23 Mar 2018 16:42:17 +0100 Subject: [PATCH] Changes in ttssr --- src/ttssr/ttssr-loop-human-only.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ttssr/ttssr-loop-human-only.sh b/src/ttssr/ttssr-loop-human-only.sh index 05ac20b..3e0e8ee 100644 --- a/src/ttssr/ttssr-loop-human-only.sh +++ b/src/ttssr/ttssr-loop-human-only.sh @@ -5,9 +5,9 @@ head -n 1 $1 > output/input0.txt while [[ $i -le 10 ]] do echo $i cat output/input$i.txt - python3 src/ttssr/write_audio.py src/sound$i.wav 2> /dev/null + python3 src/write_audio.py src/sound$i.wav 2> /dev/null play src/sound$i.wav repeat 5 2> /dev/null & #in the background the sound, without it all the sounds play one by one//2 is stderr - python3 src/ttssr/audio_transcribe.py sound$i.wav > output/input$((i+1)).txt 2> /dev/null + python3 src/audio_transcribe.py sound$i.wav > output/input$((i+1)).txt 2> /dev/null sleep 1 (( i++ )) done