Categorygithub.com/bisoncorps/mplayer
modulepackage
0.0.0-20200330192254-e2f647162350
Repository: https://github.com/bisoncorps/mplayer.git
Documentation: pkg.go.dev

# README

mplayer

A library to allow playing media files (remote and local) from your gocode

Install

go get github.com/bisoncorps/mplayer

What is mplayer

mplayer is just a means to allow for playing media files from golang. It allows for streaming online media files and local media files as well. It hopes to incorporate functionalities that support using any known media player. Currently only browser is supported but other players are currently being considered. It supports

  • In Browser Playing, MPV and VLC
  • playing local files
  • streaming online resource

Usage

package main

import  (
  "log"
  "github.com/bisoncorps/mplayer"
)

func main() {
		p, err := mplayer.GetPlayer("browser")
		if err != nil {
			log.Fatal(err)
		}
    // urls can be remote too
		p.SetURL("/home/manasseh/Videos/Jumanji.mp4")
		p.SetTitle("Jumanji MP4")
		p.Play()
}

TODO

  • Add other players (mpv, vlc)
  • Add subtitle options

# Functions

GetPlayer : get a player for streaming.
GetPlayers : A map of all available players.

# Structs

BrowserPlayer : Plays a movie in a HTML web page.
MPVPlayer : Plays a movie in a HTML web page.
Props : Props to be passed to Player.
VLCPlayer : Plays a movie in a HTML web page.

# Interfaces

Player : interface functions for every Player.