qlc+ controled by telnet commands

Archive of the non-categorized posts related to the QLC+ technical support.
Please do not create new threads here, instead, use the categories above !
Post Reply
uhinkel
Posts: 1
Joined: Tue Jun 16, 2015 1:07 pm
Real Name: Uwe Hinkel

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
User avatar
karrika
Posts: 60
Joined: Tue May 12, 2015 6:50 am
Real Name: Karri Kaksonen

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)
Post Reply