We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eae4ca0 commit 05bf249Copy full SHA for 05bf249
pkg/utils/ffmpeg.go
@@ -11,7 +11,7 @@ import (
11
12
func ffmpegCommand(args []string) (string, error) {
13
cmd := exec.Command("ffmpeg", args...) // Constrain this to ffmpeg to permit security scanner to see that the command is safe.
14
- cmd.Env = os.Environ()
+ cmd.Env = []string{}
15
out, err := cmd.CombinedOutput()
16
return string(out), err
17
}
0 commit comments