Traktor Audio 2 DJ声卡配置

我有一个Traktor Audio 2 DJ USB声卡 (现在简称为Traktor Audio 2的第一个版本)

设置中的问题只看到一个输出,当应该有两个(我需要它用于Mixxx等)

此外,我希望能够将采样率设置为以下值之一:44.1,48,88.2,96 kHz或至少检查哪一个设置。

另外,如果可能的话,设置延迟将是一个优势。

一些信息:

$ aplay -l **** List of PLAYBACK Hardware Devices **** card 0: HDMI [HDA ATI HDMI], device 3: HDMI 0 [HDMI 0] Subdevices: 1/1 Subdevice #0: subdevice #0 card 1: TraktorAudio2 [Traktor Audio 2], device 0: Traktor Audio 2 [Traktor Audio 2] Subdevices: 1/2 Subdevice #0: subdevice #0 Subdevice #1: subdevice #1 $ cat /proc/asound/cards 0 [HDMI ]: HDA-Intel - HDA ATI HDMI HDA ATI HDMI at 0xfdcfc000 irq 45 1 [TraktorAudio2 ]: snd-usb-caiaq - Traktor Audio 2 Native Instruments Traktor Audio 2 (usb-0000:00:1d.7-8) 

也许这可以帮到你: Audio2DJ,在Ubuntu Linux上使用Mixxx

总之,您需要在主文件夹中使用以下内容创建.asoundrc文件。 然后,您应该能够在音频软件的首选项中选择每个通道(例如djAdjBdjAB )(例如Mixxx)。

 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- # Native Instruments :: Audio2DJ ALSA Configuration # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # # device channels ports # -------- --- --------- # djA 2 12xx # djB 2 xx34 # # djAB 4 1234 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- # dj(ad) :: Raw 1x1 Stereo Devices # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - pcm.djA { type plug; slave.pcm "hw:Audio2DJ,0,0"; } pcm.djB { type plug; slave.pcm "hw:Audio2DJ,0,1"; } # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # djAB :: Multi 2x2 Stereo Device (Ports 1-4, Channels A+B) # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - pcm.djAB { type multi # bind hardware devices slaves.a.pcm djA slaves.a.channels 2 slaves.b.pcm djB slaves.b.channels 2 # bind channels to virtual device bindings.0.slave a bindings.0.channel 0 bindings.1.slave a bindings.1.channel 1 bindings.2.slave b bindings.2.channel 0 bindings.3.slave b bindings.3.channel 1 }