Fix goimport and gosec warnings

This commit is contained in:
Deluan 2020-04-26 12:53:36 -04:00 committed by Deluan Quintão
parent 5cd453afeb
commit ddeefad501
10 changed files with 10 additions and 2 deletions

View file

@ -30,7 +30,7 @@ func (ff *ffmpeg) Start(ctx context.Context, command, path string, maxBitRate in
args := createTranscodeCommand(command, path, maxBitRate)
log.Trace(ctx, "Executing ffmpeg command", "cmd", args)
cmd := exec.Command(args[0], args[1:]...)
cmd := exec.Command(args[0], args[1:]...) // #nosec
cmd.Stderr = os.Stderr
if f, err = cmd.StdoutPipe(); err != nil {
return