fix: Windows path for included ffmpeg

master
José Carlos Cuevas 5 months ago
parent 1bee7ae595
commit f99baee6e0

@ -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…
Cancel
Save