fix(library): use native arm64 ffprobe on Apple Silicon (osx-arm-64)
This commit is contained in:
parent
bea73335a8
commit
fad53a5d84
1 changed files with 3 additions and 0 deletions
|
|
@ -38,6 +38,9 @@ func ffprobePlatformKey() (string, error) {
|
|||
return "linux-arm64", nil
|
||||
}
|
||||
case "darwin":
|
||||
if runtime.GOARCH == "arm64" {
|
||||
return "osx-arm-64", nil
|
||||
}
|
||||
return "osx-64", nil
|
||||
case "windows":
|
||||
if runtime.GOARCH == "amd64" {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue