First frame of video

有些话、适合烂在心里 提交于 2019-12-12 07:37:06

问题


I'm creating a single page application with Golang on the backend and javascript on the frontend. I´d like to find a way how to get the first frame of a video using Golang.

First, I upload a .mp4 video file to the server. It is saved on the server.

Is there a way to get the first frame of this video, using Golang? It should be possible to do it using Javascript on frontend, but I don't feel like it is the right way to solve this issue.

I have no idea how to implement it using Golang, and I haven't found any useful libraries, not even built-in functions that could help me to solve this.

Every piece of advice or any recommendations will be much appreciated.


回答1:


As suggested in the comments, using ffmpeg would be the easiest approach. Below is an example adapted from this answer:

package main

import (
    "bytes"
    "fmt"
    "os/exec"
)
func main() {
    filename := "test.mp4"
    width := 640
    height := 360
    cmd := exec.Command("ffmpeg", "-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")
    }
    // Do something with buffer, which contains a JPEG image
}


来源:https://stackoverflow.com/questions/35411585/first-frame-of-video

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!