go_mediainfo alternatives and similar packages
Based on the "Audio/Music" category.
Alternatively, view go_mediainfo alternatives based on common mentions on social networks and blogs.
-
waveform
Go package capable of generating waveform images from audio streams. MIT Licensed. -
flac-mewkiz
Package flac provides access to FLAC (Free Lossless Audio Codec) streams. -
Package snd
Package snd provides methods and types for sound processing and synthesis.
Collect and Analyze Billions of Data Points in Real Time
Do you think we are missing an alternative of go_mediainfo or a related project?
README
mediainfo
Golang binding for libmediainfo
Duration, Bitrate, Codec, Streams and a lot of other meta-information about media files can be extracted through it.
For now supports only media files with one stream. Bindings for MediaInfoList is not provided. It can be easy fixed if anybody ask me.
Works through MediaInfoDLL/MediaInfoDLL.h(dynamic load and so on), so your mediainfo installation should has it.
Supports direct reading files by name and reading data from []byte buffers(without copying it for C calls).
Documentation for libmediainfo is poor and ascetic, can be found here.
Your advices and suggestions are welcome!
Example
package main
import (
"fmt"
"github.com/zhulik/go_mediainfo"
"io/ioutil"
"os"
)
func main() {
f, err := os.Open(os.Args[1])
if err != nil {
panic(err)
}
bytes, err := ioutil.ReadAll(f)
if err != nil {
panic(err)
}
mi := mediainfo.NewMediaInfo()
err = mi.OpenMemory(bytes)
if err != nil {
panic(err)
}
fmt.Println(mi.AvailableParameters()) // Print all supported params for Get
fmt.Println(mi.Get("BitRate")) // Print bitrate
}
Read the documentation for other functions
Contributing
You know=)