Thanks for your reply.
Python HTSP-library could do the job for me, but i cant make it work.
When i initialize and send hello:
htsp = HTSPClient((opts.host, opts.port))
msg = htsp.hello()
the script crash and i get the following stacktrace.
Traceback (most recent call last):
File "htsp.py", line 110, in <module>
r=h.hello()
File "htsp.py", line 79, in hello
resp = self.recv()
File "htsp.py", line 66, in recv
ret = htsmsg.deserialize(self._sock, False)
File "/sda1/home/dag17/pyapp/tvserver/htsmsg.py", line 207, in deserialize
ret = ret.next()
File "/sda1/home/dag17/pyapp/tvserver/htsmsg.py", line 195, in next
raise StopIteration()
StopIteration
Is there maybe a difference in HTSP between 3.x and 4.x?
More ideas?