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 matlab中使用gurobi时报错
  • ¥15 WPF 大屏看板表格背景图片设置
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂