progress.praat 946 B

12345678910
  1. writeInfoLine ("progress…")
  2. sound1 = do ("Create Sound as pure tone...", "tone", 1, 0, 100, 44100, 440, 0.2, 0.01, 0.01)
  3. stopwatch
  4. pitch1 = do ("To Pitch...", 0, 75, 600)
  5. appendInfoLine ("With progress bar: ", stopwatch)
  6. sound2 = do ("Create Sound as pure tone...", "tone", 1, 0, 100, 44100, 440, 0.2, 0.01, 0.01)
  7. stopwatch
  8. pitch2 = noprogress do ("To Pitch...", 0, 75, 600)
  9. appendInfoLine ("Without progress bar: ", stopwatch)
  10. removeObject: sound1, pitch1, sound2, pitch2