Member-only story
How To Edit Videos With Golang
Welcome back! Golang is one of my favorite programming languages, if you’re new to Golang, check out the link below to learn more about it:
So, let’s take a look at an awesome Golang project that allows us to edit videos with Golang! This project is called moviego, luckily for us, it’s hosted on GitHub, here is a link to their repository:
This project uses ffmpeg-go, this allows us to edit our videos programmatically, as of right now, there are tons of different features within this package! We have the ability of resizing videos, cutting videos, combining multiple videos, adding effects, and even taking screenshots within a video as well! Here are some sample commands for these projects:
func main() {
first, _ := moviego.Load("forest.mp4")
// A simple screenshot from the video.
first.Screenshot(5…