mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
7 lines
109 B
Go
7 lines
109 B
Go
package utils
|
|
|
|
import "os/exec"
|
|
|
|
func HasFFmpeg() bool {
|
|
return exec.Command("ffmpeg", "-h").Run() == nil
|
|
}
|