当前位置:   article > 正文

2023-02-19:请用go语言调用ffmepg,输出视频文件信息。

2023-02-19:请用go语言调用ffmepg,输出视频文件信息。

2023-02-19:请用go语言调用ffmepg,输出视频文件信息。

答案2023-02-19:

用 github.com/moonfdd/ffmpeg-go 这个库。

代码参考ffmpeg5入门教程的第四个例子输出视频信息,用golang改写的

用如下命令便可查看运行结果。

go run ./examples/a04get_stream_info/main.go
  • 1

代码用golang编写。代码如下:

package main

import (
	"fmt"
	"os"
	"os/exec"

	"github.com/moonfdd/ffmpeg-go/ffcommon"
	"github.com/moonfdd/ffmpeg-go/libavformat"
)

func main() {
	os.Setenv("Path", os.Getenv("Path")+";./lib")
	ffcommon.SetAvformatPath("./lib/avformat-58.dll")
	fmt_ctx := libavformat.AvformatAllocContext() //创建对象并初始化
	ret := int32(0)
	fileName := "./resources/big_buck_bunny.mp4" //文件地址

	for {
		//打开文件
		ret = libavformat.AvformatOpenInput(&fmt_ctx, fileName, nil, nil)
		if ret < 0 {
			fmt.Printf("Cannot open video file\n")
			break //Cannot open video file
		}

		//查找流信息(音频流和视频流)
		ret = fmt_ctx.AvformatFindStreamInfo(nil)
		if ret < 0 {
			fmt.Printf("Cannot find stream information\n")
			break
		}

		fmt_ctx.AvDumpFormat(0, fileName, 0) //输出视频信息
		break
	}

	libavformat.AvformatCloseInput(&fmt_ctx) //关闭文件

	fmt.Println("---------------------------------")
	cmd := exec.Command("./lib/ffprobe", fileName)
	data, err2 := cmd.CombinedOutput()
	if err2 != nil {
		fmt.Println("ffprobe err = ", err2)
		return
	}
	fmt.Println(string(data))
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49

在这里插入图片描述

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号