00
Size: a a a
00
LK
LK
LK
LK
i
LK
i
i
LK
Y
AS
VL
cmd := exec.Command("ffmpeg/bin/ffmpeg.exe", "-i", filename, "-vframes", "1", "-s", fmt.Sprintf("%dx%d", width, height), "-f", "singlejpeg", "-")
var buffer bytes.Buffer
cmd.Stdout = &buffer
if cmd.Run() != nil {
panic("could not generate frame")
}
VS
00
cmd := exec.Command("ffmpeg/bin/ffmpeg.exe", "-i", filename, "-vframes", "1", "-s", fmt.Sprintf("%dx%d", width, height), "-f", "singlejpeg", "-")
var buffer bytes.Buffer
cmd.Stdout = &buffer
if cmd.Run() != nil {
panic("could not generate frame")
}
AK
A1
VS