diff --git a/encode_video.go b/encode_video.go index 67e3f30..f5973ec 100644 --- a/encode_video.go +++ b/encode_video.go @@ -17,7 +17,7 @@ func EncodeVideo(w io.Writer, encArgs, oldFile, newFile string) error { start := time.Now() - fmt.Fprintf(w, "\tencode file\n\t from: '%s'\n\t to: '%s\n'", oldFile, newFile) + fmt.Fprintf(w, "\tencode file\n\t from: '%s'\n\t to: '%s'\n", oldFile, newFile) fullArgs := []string{"-y", "-i", oldFile} fullArgs = append(fullArgs, strings.Split(encArgs, " ")...)