Skip to content

oikomi/gumble

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gumble

Sub-projects

  • gumble
    • Client library
  • gumble_openal
    • OpenAL audio system for gumble
  • gumble_ffmpeg
    • ffmpeg audio source for gumble
  • gumbleutil
    • Extras that can make working with gumble easier

Example

package main

import (
  "github.com/layeh/gumble/gumble"
  "github.com/layeh/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 scriptable Mumble bots using JavaScript and Lua

License

MIT

Author

Tim Cooper (tim.cooper@layeh.com)

About

gumble is a Go (golang) client library for the Mumble voice chat software

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 85.4%
  • Protocol Buffer 14.6%