tokenFactory/service/ffprobe_embed_stub.go

9 lines
222 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//go:build !embed_ffprobe
package service
// getEmbeddedFFprobe 在非 embed_ffprobe 构建下不可用(返回 false
func getEmbeddedFFprobe(goos, goarch string) ([]byte, string, bool) {
return nil, "", false
}