9 lines
200 B
Go
9 lines
200 B
Go
|
//go:build windows
|
||
|
// +build windows
|
||
|
|
||
|
package handler
|
||
|
|
||
|
func getPathsToFF() []convertor.FFPathUtilities {
|
||
|
return []convertor.FFPathUtilities{{"ffmpeg\\bin\\ffmpeg.exe", "ffmpeg\\bin\\ffprobe.exe"}}
|
||
|
}
|