dtup3446 2019-02-10 16:33
浏览 206
已采纳

使用Go图像库从stdout解码bmp图像

I am trying to decode a bmp image using the image and golang.org/x/image/bmp libraries. The image is output by ffmpeg into stdout. This is the code to get the frame:

cmd := exec.Command("ffmpeg", "-accurate_seek", "-ss", strconv.Itoa(index), "-i",
    filename, "-frames:v", "1", "-hide_banner", "-loglevel", "0", "pipe:.bmp")
var out bytes.Buffer
cmd.Stdout = &out
err := cmd.Run()
if err != nil {
    log.Fatal(err)
}

o := bufio.NewReader(&out)

and then I decode it using img, _, err := image.Decode(o) However this gives an error of "image: unknown format". I have already registered the bmp format in the main method, and I have successfully decoded actual BMP files from disk previously, just not from stdout.

I have tried just using bmp.Decode instead of image.Decode but this just gives the error "EOF".

I thought maybe I was not getting the stdout in the correct way, but if I just write it straight to a file:

o := bufio.NewReader(&out)

outputfile, err := os.Create("test.bmp")
if err != nil {
    log.Fatal(err)
}
defer outputfile.Close()
io.Copy(outputfile, o)

then it works fine and I can open it.

Edit: code

  • 写回答

1条回答 默认 最新

  • douyao3895 2019-02-10 23:56
    关注

    Update: turns out the issue was -ss takes time not frame index.

    I tried to reproduce the issue but it seems to work for me. Maybe add cmd.Stderr = os.Stderr to see if ffmpeg output gives come clue. Could you also post a fully runnable example?

    package main
    
    import (
        "bytes"
        "image"
        "log"
        "os"
        "os/exec"
    
        _ "golang.org/x/image/bmp"
    )
    
    func main() {
        cmd := exec.Command(
            "docker", "run",
            "--rm",
            "mwader/static-ffmpeg",
            "-ss", "5",
            "-f", "lavfi",
            "-i", "testsrc",
            "-frames:v", "1",
            "-f", "image2",
            "-vcodec", "bmp",
            "pipe:1",
        )
        var out bytes.Buffer
        cmd.Stderr = os.Stderr
        cmd.Stdout = &out
        err := cmd.Run()
        if err != nil {
            log.Fatal(err)
        }
    
        img, imgFormat, imgErr := image.Decode(&out)
    
        log.Printf("img.Bounds(): %#+v
    ", img.Bounds())
        log.Printf("imgFormat: %#+v
    ", imgFormat)
        log.Printf("imgErr: %#+v
    ", imgErr)
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 mmocr的训练错误,结果全为0
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀