diff --git a/pulseaudio-client-test/.DS_Store b/pulseaudio-client-test/.DS_Store new file mode 100644 index 0000000..47a3c76 Binary files /dev/null and b/pulseaudio-client-test/.DS_Store differ diff --git a/pulseaudio-client-test/start.sh b/pulseaudio-client-test/start.sh index b583612..7f4accb 100644 --- a/pulseaudio-client-test/start.sh +++ b/pulseaudio-client-test/start.sh @@ -55,17 +55,21 @@ case $test_id in ;; 2) echo "Starting test 2: " echo "- Starting recording audio within 5 sec !" - paplay + paplay ./test_id_2/step1_welcome.wav sleep 5 echo "- Recording for $recording_time seconds started ... (SAY SOMETHING) " + paplay ./test_id_2/step2_recording_starts.wav parecord --channels=1 record_session1.wav & sleep $recording_time kill $! #$! expands to the PID of the last process executed in the background echo "- Recording finished !" + paplay ./test_id_2/step3_recording_finished.wav sleep 3 + paplay ./test_id_2/step4_play_recording.wav echo "- Playing recorded audio..." paplay record_session1.wav echo "... end of test 2" + paplay ./test_id_2/step5_end_of_playing.wav ;; 3) if [ "$remote_display" = "" ]; then echo "ERROR: \$remote_display must be set for test 3 and is not set !"