Версия 0.9.0 #10

Merged
kor-elf merged 12 commits from develop into main 2025-05-25 23:13:26 +05:00
Showing only changes of commit 7340f43d6e - Show all commits

View File

@ -1,7 +1,6 @@
package kernel
import (
"git.kor-elf.net/kor-elf/gui-for-ffmpeg/helper"
"os/exec"
)
@ -24,7 +23,6 @@ func NewFFplay(ffPathUtilities *FFPathUtilities) *FFplay {
func (ffplay FFplay) Run(setting FFplaySetting) error {
args := []string{setting.PathToFile}
cmd := exec.Command(ffplay.ffPathUtilities.FFplay, args...)
helper.PrepareBackgroundCommand(cmd)
return cmd.Start()
}