You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code currently uses
time.sleep("4")
to delay at the end of the program while audio is played.
You could use:
sounddevice.wait()
to play the file, wait until it is finished, then exit. For short files, this avoids having to
wait extra time after the audio has played.
Very nice program! Thanks!
John P
The text was updated successfully, but these errors were encountered:
The code currently uses
time.sleep("4")
to delay at the end of the program while audio is played.
You could use:
sounddevice.wait()
to play the file, wait until it is finished, then exit. For short files, this avoids having to
wait extra time after the audio has played.
Very nice program! Thanks!
John P
The text was updated successfully, but these errors were encountered: