Skip to content

Commit

Permalink
Update probe.go
Browse files Browse the repository at this point in the history
  • Loading branch information
iwanlebron authored Oct 24, 2024
1 parent d78b72d commit 703a36a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions probe.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package ffmpeg_go
import (
"bytes"
"context"
"fmt"
"os/exec"
"time"
)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 703a36a

Please sign in to comment.