fix: Windows path for included ffmpeg
This commit is contained in:
parent
1bee7ae595
commit
f99baee6e0
1 changed files with 7 additions and 1 deletions
8
main.go
8
main.go
|
@ -45,6 +45,7 @@ import (
|
|||
"net/url"
|
||||
"os"
|
||||
"os/exec"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
"strings"
|
||||
"time"
|
||||
|
@ -297,7 +298,12 @@ func main() {
|
|||
|
||||
if runtime.GOOS == "windows" {
|
||||
log.Println("Detected Windows")
|
||||
PLAYER_CMD = "ffmpeg.exe"
|
||||
ex, err := os.Executable()
|
||||
if err != nil {
|
||||
log.Fatal("Couldn't get executable path")
|
||||
}
|
||||
exPath := filepath.Dir(ex)
|
||||
PLAYER_CMD = filepath.Join(exPath, "ffmpeg.exe")
|
||||
}
|
||||
|
||||
// Command line arguments parsing
|
||||
|
|
Loading…
Reference in a new issue