diff --git a/probe.go b/probe.go index b9bb469..887c06c 100644 --- a/probe.go +++ b/probe.go @@ -3,7 +3,6 @@ package ffmpeg_go import ( "bytes" "context" - "fmt" "os/exec" "time" ) @@ -38,7 +37,6 @@ func ProbeWithTimeoutExec(probePath, fileName string, timeOut time.Duration, kwa cmd := exec.CommandContext(ctx, probePath, args...) buf := bytes.NewBuffer(nil) cmd.Stdout = buf - fmt.Println(cmd.String()) err := cmd.Run() if err != nil { return "", err