Posted by: Anonymous Coward
on March 08, 2005 01:39 AM
start jackd (I use qjackctl), start artsd with jack output, start skype
jackd runs almost always here, so I just made a script that starts artsd & skype and terminates artsd when skype is closed. You maybe have to experiment a little for the right jackd & artsd parameters.
My jackd gets started by qjackctl as follows:
jackd -dalsa -dhw:0 -r44100 -p1024 -n2 -s -S
Not very low-latency, but I don't need it for that right now anyway.
---------- script --------- #!/bin/bash
# start arts artswrapper -d -a jack -r 44100 -b 16 -F 16 &
Re:you don't need 2 machines
Posted by: Anonymous Coward on March 08, 2005 01:39 AMstart artsd with jack output,
start skype
jackd runs almost always here, so I just made a script that starts artsd & skype and terminates artsd when skype is closed.
You maybe have to experiment a little for the right jackd & artsd parameters.
My jackd gets started by qjackctl as follows:
jackd -dalsa -dhw:0 -r44100 -p1024 -n2 -s -S
Not very low-latency, but I don't need it for that right now anyway.
---------- script ---------
#!/bin/bash
# start arts
artswrapper -d -a jack -r 44100 -b 16 -F 16 &
# start skype
skype ><nobr> <wbr></nobr>/dev/null 2>&1
# stop arts
artsshell -q terminate
#