1JACK_NETSOURCE(1) General Commands Manual JACK_NETSOURCE(1)
2
3
4
6 jack_netsource - Netjack Master client for one slave
7
9 jack_netsource [ -H hostname ] [ options ]
10
11
13 jack_netsource The Master side of a netjack connection. Represents the
14 slave jackd -dnet in the master jack graph. Most connection parameters
15 are configured via the netsource, and the slave will set itself up ac‐
16 cording to the commandline option given to jack_netsource.
17 Netjack allows low latency audio connections over general IP networks.
18 When using celt for compression, it is even possible to establish
19 transatlantic links, with latencies not much over the actual ping time.
20 But the main usecase is of course a LAN, where it can achieve one jack
21 period of latency.
22
23
25 -h this help text
26
27 -H slave host
28 Host name of the slave JACK
29
30 -o num channels
31 Number of audio playback channels
32
33 -i num channels
34 Number of audio capture channels
35
36 -O num channels
37 Number of midi playback channels
38
39 -I num channels
40 Number of midi capture channels
41
42 -n periods
43 Network latency in JACK periods
44
45 -p port
46 UDP port that the slave is listening on
47
48 -r reply port
49 UDP port that we are listening on
50
51 -B bind port
52 reply port, for use in NAT environments
53
54 -b bitdepth
55 Set transport to use 16bit or 8bit
56
57 -c bytes
58 Use CELT encoding with <bytes> per period and channel
59
60 -m mtu
61 Assume this mtu for the link
62
63 -R N
64 Redundancy: send out packets N times.
65
66 -e
67 skip host-to-network endianness conversion
68
69 -N jack name
70 Reports a different client name to jack
71
72
73 -s, --server servername
74 Connect to the jack server named servername
75
76 -h, --help
77 Display help/usage message
78
79 -v, --version
80 Output version information and exit
81
82
83
85 run a 4 audio channel bidirectional link with one period of latency and
86 no midi channels. Audio data is flowing uncompressed over the wire:
87 On hostA:
88
89 jackd -d alsa
90 jack_netsource -H hostB -n1 -i4 -o4 -I0 -O0
91
92 On hostB:
93
94 jackd -d net
95
96
97
98
991.9.20 January 2022 JACK_NETSOURCE(1)