Codebase list jack-stdio / 2927bf3
Merge commit 'upstream/1.4' Solved conflicts: debian/changelog Alessio Treglia 12 years ago
4 changed file(s) with 14 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
0 2011-06-07 rgareus <robin@gareus.org>
1 * clean-up manual page (thanks to Alessio Tregilia)
2 * small PREFIX makefile patch (also by Alessio)
3 * v1.4
4
05 2011-04-03 rgareus <robin@gareus.org>
16 * fixed jack-stdout write retry/abort
27 * increased default jack-stdin buffer-prefill to 50%
00 # override e.g. `make install PREFIX=/usr`
1 PREFIX = /usr/local
1 PREFIX ?= /usr/local
22
33 CFLAGS=-Wall `pkg-config --cflags jack` -O3
44 LIBS=`pkg-config --libs jack` -lpthread -lm
5959 \fB-p\fR, \fB--prebuffer\fR \fIPERCENT\fR
6060 .RS
6161 Pre-fill the buffer before starting audio output to JACK (default 50.0%).
62 NOTE: disable pre-buffering (-p 0) or use a small buffer size to play back
62 NOTE: disable pre-buffering (\-p 0) or use a small buffer size to play back
6363 very short samples.
6464 .RE
6565
9494 .SH EXAMPLES
9595 .nf
9696 jack-stdout vlc_31994:out_1 vlc_31994:out_2 \\
97 | sox -t raw -r 48k -e signed -b 16 -c 2 - \\
98 -t raw -r 48k -e signed -b 16 -c 2 - \\
97 | sox \-t raw \-r 48k \-e signed \-b 16 \-c 2 \- \\
98 \-t raw \-r 48k \-e signed \-b 16 \-c 2 \- \\
9999 tremolo 5 100 \\
100100 | ./jack-stdin system:playback_1 system:playback_2
101101
7979 jack-stdout xmms_0:out_1 xmms_0:out_2 \\
8080 | mono ~/Desktop/Downloads/JustePort.exe - 10.0.1.6 0
8181
82 jack-stdout -b 24 -e unsigned -B system:capture_1 system:capture_2 \\
83 | sox -t raw -r 48k -e unsigned -b 24 -B -c 2 - /tmp/recording.wav
82 jack-stdout \-b 24 \-e unsigned \-B system:capture_1 system:capture_2 \\
83 | sox \-t raw \-r 48k \-e unsigned \-b 24 \-B \-c 2 \- /tmp/recording.wav
8484
8585 jack-stdout system:capture_1 system:capture_2 \\
86 | oggenc -r -R 48000 -B 16 -C 2 - \\
86 | oggenc \-r \-R 48000 \-B 16 \-C 2 \- \\
8787 > /tmp/recording.ogg
8888
8989 jack-stdout system:capture_1 \\
90 | oggenc -r -R 48000 -B 16 -C 1 - \\
91 | oggfwd -p -n "my live stream" localhost 5900 hackme live.ogg
90 | oggenc \-r \-R 48000 \-B 16 \-C 1 \- \\
91 | oggfwd \-p \-n "my live stream" localhost 5900 hackme live.ogg
9292 .fi
9393 .SH AUTHOR
9494 Robin Gareus <robin@gareus.org>.