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
qlc+ controled by telnet commands
- 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)