11 lines
243 B
Go
11 lines
243 B
Go
|
//go:build !windows
|
||
|
// +build !windows
|
||
|
|
||
|
package handler
|
||
|
|
||
|
import "ffmpegGui/convertor"
|
||
|
|
||
|
func getPathsToFF() []convertor.FFPathUtilities {
|
||
|
return []convertor.FFPathUtilities{{"ffmpeg/bin/ffmpeg", "ffmpeg/bin/ffprobe"}, {"ffmpeg", "ffprobe"}}
|
||
|
}
|