m3u8d/ffmpeg_other.go

10 lines
189 B
Go
Raw Normal View History

2022-05-15 03:05:31 +00:00
//+build !windows
package m3u8d
import "errors"
func UnzipFfmpegToLocal(exeFileDir string) (targetFile string, err error) {
return "", errors.New("UnzipFfmpegToLocal not implement.")
}