fix: Windows path for included ffmpeg

This commit is contained in:
José Carlos Cuevas 2023-12-08 17:44:22 +01:00
parent 1bee7ae595
commit f99baee6e0

View file

@ -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