HoneyTian commited on
Commit
e3dd4fb
·
1 Parent(s): a59e593
Files changed (1) hide show
  1. silero/main.go +2 -4
silero/main.go CHANGED
@@ -49,12 +49,10 @@ func main() {
49
  }
50
 
51
  for _, s := range segments {
52
- // log.Printf("speech starts at %0.2fs", s.SpeechStartAt)
53
- fmt.Println("speech starts at %0.2fs", s.SpeechStartAt)
54
 
55
  if s.SpeechEndAt > 0 {
56
- // log.Printf("speech ends at %0.2fs", s.SpeechEndAt)
57
- fmt.Println("speech ends at %0.2fs", s.SpeechEndAt)
58
  }
59
  }
60
 
 
49
  }
50
 
51
  for _, s := range segments {
52
+ fmt.Printf("speech starts at %0.2fs", s.SpeechStartAt)
 
53
 
54
  if s.SpeechEndAt > 0 {
55
+ fmt.Printf("speech ends at %0.2fs", s.SpeechEndAt)
 
56
  }
57
  }
58