Easily build beautiful video experiences into your Go app.
go get github.com/muxinc/mux-go
To start, you'll need a Mux access token. Once you've got that locally, you're all set!
package main
import (
"fmt"
"os"
"github.com/muxinc/mux-go"
)
func main() {
// API Client Initialization
client := muxgo.NewAPIClient(
muxgo.NewConfiguration(
muxgo.WithBasicAuth(os.Getenv("MUX_TOKEN_ID"), os.Getenv("MUX_TOKEN_SECRET")),
))
// Create the Asset
asset, err := client.AssetsApi.CreateAsset(muxgo.CreateAssetRequest{
Input: []muxgo.InputSettings{
muxgo.InputSettings{
Url: "https://storage.googleapis.com/muxdemofiles/mux-video-intro.mp4",
},
},
PlaybackPolicy: []muxgo.PlaybackPolicy{muxgo.PUBLIC},
})
// Check everything was good, and output the playback URL
if err == nil {
fmt.Printf("Playback URL: https://stream.mux.com/%s.m3u8 \n", asset.Data.PlaybackIds[0].Id)
} else {
fmt.Printf("Oh no, there was an error: %s \n", err)
}
}
Ingest using almost any codec, including H.264, H.265, VP9, and Apple ProRes. Get multi-bitrate adaptive streaming with HLS delivery.
Adapt to new devices and codecs with no extra work. We’ll automatically update codecs and renditions over the life of a video.
Use signed playback policies by easily creating signed URL tokens for your Mux assets when you want to control access to a piece of content.
We ❤️ issues, pull requests, forks, and compliments (constructive criticism counts too).
Mux is made up of an advanced transcoding engine, streaming origin, and expertly configured CDNs which all work together to provide the best video experience for your users with the least amount of headache for you.
Get the fastest video publishing possible. Videos are encoded while the first viewers watch them so your users can publish instantly.
The right resolutions and bitrates are dynamically created for each video based on data, giving your users the best possible experience based on all their unique viewing criteria.
Handle thousands of concurrent live streamers and millions of viewers without worrying about spinning up additional servers.
RTMP for ingest and HLS for delivery so your application can stream from a mobile app, broadcast software, or hardware encoder and broadcast to any device.
Transition seamlessly from live to VoD with recordings available immediately after the event with no waiting for additional processing.
Learn more