|
From: Christian S. <chr...@ep...> - 2004-05-03 23:26:15
|
Es geschah am Dienstag, 4. Mai 2004 00:00 als Garett Shulman schrieb:
> Hello, I have checked out the linux sampler source from cvs, built, &
> installed it. I can access the server with the python sockets module.
> However, I was wondering what the easiest way to control the sampler
> currently is? It seems that the cvs version does not accept any options
> when starting and only starts with the server. It seems that there is no
> other way to access the sampler than through the network sockets. Is
> there a simple cli client that would allow me to send and receive
> control protocol data? Thanks. -Garett
The easiest way currently is to write a LSCP script and to send it via
netcat to the running sampler:
cat yourscript.lscp | nc -t localhost 8888
or you can of course simply connect via telnet ('telnet localhost 8888') and
write the LSCP commands manually. Rui is working on a Qt based GUI fronted
for LinuxSampler, but it's not finished yet. And note that recent LS version
is still a bit buggy, due to the recent transition to multi channel support,
so you simply might use the old single channel version of LinuxSampler for
the moment which also has the old command line parameters. You can checkout
the old version by doing:
cvs -z3 -d:pserver:ano...@cv...:/var/cvs/linuxsampler co -r v0_1_0 linuxsampler
CU
Christian
P.S. btw sorry in my last mail the CVS command line was wrong; it should be
'-d:pserver:anonymous' instead of 'd:pserver:schoenebeck' of course.
|