Page 1 of 1

qlc+ controled by telnet commands

Posted: Tue Jun 16, 2015 1:14 pm
by uhinkel
Hi there,

is there any chance to control qlc+ via telnet?
First a simple "go" command for the cuelist would be nice.
Later on I think about textbased programming like "5 through 12 @ 80"
and textbased creating submasters and memories.
Any ideas?

Uwe

Re: qlc+ controled by telnet commands

Posted: Thu Jun 18, 2015 3:54 am
by karrika
If you create an executable file that send an OSC command then you can call this routine using telnet to triger virtual console buttons. Of course you need to set up your universe to losten to the OSC input. And to teach your virtual button to listen to exactly this message content.

Code: Select all

#!/usr/bin/env python

import liblo, sys

try:
    target = liblo.Address(7770)
except liblo.AddressError, err:
    print str(err)
    sys.exit()

liblo.send(target, "/foo/message1", 123)