def change(seconds): vlc.tell('set current time to %s' % seconds)
def get(): if vlc.pid(): return int(vlc.tell('get current time'))
def change(value): """set VLC volume""" vlc.tell('set audio volume to %s' % value)
def get(): """return VLC volume""" if vlc.pid(): return int(vlc.tell('audio volume'))
def change(seconds): """set current video time""" vlc.tell('set current time to %s' % seconds)
def get(): """return current video time""" if vlc.pid(): return int(vlc.tell('get current time'))
def detect(): return "true" in vlc.tell("fullscreen mode")
def exit(): vlc.tell("set fullscreen mode to false")
def enter(): vlc.tell("set fullscreen mode to true")
def get(): if vlc.pid(): return int(vlc.tell('audio volume'))
def change(value): vlc.tell('set audio volume to %s' % value)