Ejemplo n.º 1
0
func (p *Player) GetVolume() (int, error) {
	if p.player == nil {
		return 0, errors.New("A player must first be initialized")
	}

	return int(C.libvlc_audio_get_volume(p.player)), getError()
}
Ejemplo n.º 2
0
// Volume returns the current audio level.
func (this *Player) Volume() (int, error) {
	if this.ptr == nil {
		return 0, syscall.EINVAL
	}
	return int(C.libvlc_audio_get_volume(this.ptr)), checkError()
}
Ejemplo n.º 3
0
// Volume returns the current audio level.
func (this *Player) Volume() (int, error) {
	if this.ptr == nil {
		return 0, &VLCError{"Player is nil"}
	}
	return int(C.libvlc_audio_get_volume(this.ptr)), checkError()
}