Categorygithub.com/mattcanty/go-ffmpeg-transcode
repository
0.0.0-20210402170326-6c3660c1d224
Repository: https://github.com/mattcanty/go-ffmpeg-transcode.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

Go FFMPEG Transcode

go get github.com/mattcanty/go-ffmpeg-transcode

See the basic example:

package main

import (
	"log"

	"github.com/mattcanty/go-ffmpeg-transcode/pkg/ffmpeg"
)

func main() {
	err := ffmpeg.Transcode("input.webm", "output.mp3")

	if err != nil {
		log.Fatal(err)
	}
}