mmikkola / gumble

gumble is a Mumble client implementation in Go (golang)

Home Page:https://godoc.org/github.com/layeh/gumble

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gumble

Sub-projects

  • gumble GoDoc
    • Client library
  • gumbleopenal
    • OpenAL audio system for gumble
  • gumbleffmpeg
    • ffmpeg audio source for gumble
  • gumbleutil
    • Extras that can make working with gumble easier

Example

package main

import (
  "github.com/mikolan/gumble/gumble"
  "github.com/mikolan/gumble/gumbleutil"
)

func main() {
  gumbleutil.Main(nil, gumbleutil.Listener{
    UserChange: func(e *gumble.UserChangeEvent) {
      if e.Type.Has(gumble.UserChangeConnected) {
        e.User.Send("Welcome to the server, " + e.User.Name + "!")
      }
    },
  })
}

Related projects

  • barnard
    • terminal-based Mumble client
  • piepan
    • an easy to use framework for writing Mumble bots using Lua

License

MPL 2.0

Author

Tim Cooper (tim.cooper@mikolan.com)

About

gumble is a Mumble client implementation in Go (golang)

https://godoc.org/github.com/layeh/gumble

License:Mozilla Public License 2.0


Languages

Language:Go 100.0%