Removed extraneous comment

This commit is contained in:
Alex Eidt 2022-04-08 15:33:53 -07:00
parent b07339a04c
commit c8bed93b92

View file

@ -42,7 +42,7 @@ func ffprobe(filename, stype string) map[string]string {
cmd := exec.Command(
"ffprobe",
"-show_streams",
"-select_streams", stype, // Only show video data
"-select_streams", stype,
"-print_format", "compact",
"-loglevel", "quiet",
filename,