yepp, that way it works just great, good hack!
qjackctl does not show that it is connected, but it does record!
thanks for the support, and thanks to kjetil for his work,
cheers,
doc
Cesare Marilungo wrote:
Open jack_capture.c and change 'linfo' to 'info' at line 226. Then try
'make' again.
linfo->status = EPIPE;
should be:
info->status = EPIPE;
Kjetil is one of those old school hackers that use to voluntarily put
bugs and mispelled instructions on their code for educational purpose.
;-)
c.
Dragan Noveski wrote:
hi to the list,
would like to try this, but not able to make:
nowhiskey@murija2:~/software/nove/jcapt/jack_capture-0.2.4$ make
gcc -O3 jack_capture.c -o jack_capture -ljack -lsndfile -Wall
jack_capture.c: In function 'stop_disk_thread':
jack_capture.c:226: error: 'linfo' undeclared (first use in this
function)
jack_capture.c:226: error: (Each undeclared identifier is reported
only once
jack_capture.c:226: error: for each function it appears in.)
make: *** [all] Fehler 1
nowhiskey@murija2:~/software/nove/jcapt/jack_capture-0.2.4$
anybody an idea, what is wrong here?
cheers,
doc
Kjetil S. Matheussen wrote:
jack_capture is a small program to capture whatever
sound is going out to your speakers into a file without
every having to patch jack connections, fiddle around with
fileformats, or set options on the argument line.
This is the program I always wanted to have for jack, but no
one made. So here it is.
http://ccrma.stanford.edu/~kjetil/src/
Changes 0.2.3 -> 0.2.4:
*Give message to stderr during recording (not only after) if any
overruns
occur.
*Do not delete file after recording if any overruns have occured.
(stupid
jackreq code #$!@$)
*Increased default buffer size from 0.5M to 2M.