File: TIPS

package info (click to toggle)
ocaml-bjack 0.1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 260 kB
  • sloc: ansic: 1,639; ml: 228; makefile: 3
file content (34 lines) | stat: -rw-r--r-- 523 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
********
* TIPS *
********

* To use jack without a soundcard, tweaking the -w parameter of dummy driver of
  jack can be useful. For example:

  jackd -d dummy -r 44100 -P -p 2048 -w 20000

* To have alsa output rerouted to jack, use the following .asoundrc:

--------

pcm.jack
{
  type jack
  playback_ports
  {
    0 alsa_pcm:playback_1
    1 alsa_pcm:playback_2
  }
  capture_ports
  {
    0 alsa_pcm:capture_1
    1 alsa_pcm:capture_2
  }
}

pcm.!default {
        type plug
        slave { pcm "jack" }
}

---------