M-Audio Fast Track Pro

Talk about your MIDI interfaces, microphones, keyboards...

Moderators: MattKingUSA, khz

Rocky
Posts: 2
Joined: Sun Apr 28, 2013 4:13 am

M-Audio Fast Track Pro

Post by Rocky »

Hello everyone!
I am new in Linux Ubantu Studio 13.04. I use an M-Audio Fastr Track Pro, Jack and Ardour. The M-audio interface works well in playback, but it doesnt work for recording. I plug instruments and microfone but it doesnt send any signal to Ardour. There are just signal on interface. I read "envy24ctrl" could solve my problem but I didnt find it ro download. Please, if someone could help. Tks.
Pablo
Established Member
Posts: 1274
Joined: Thu Apr 17, 2008 9:57 pm
Been thanked: 3 times

Re: M-Audio Fast Track Pro

Post by Pablo »

Welcome!

FYI, envy24control doesn't work on your card but this is not a problem in itself. envy24control is just a special alsamixer gui for some PCI cards and it has nothing to do with your problem.

Please, show the terminal output of:

arecord -l && aplay -l
drfreq
Established Member
Posts: 8
Joined: Mon May 13, 2013 1:29 pm

Re: M-Audio Fast Track Pro

Post by drfreq »

well the m ausio fast track pro is a little tricky in linux...

you have to go into the qjackctl setup and choose the correct device, like hw:0,1 or so... there should be 2 or three diffrent entries for the maudio fast track pro... so what is wrong is... the m audio fast track pro is actually like 2 single sndcrds under the hood... so you need to choose the correct device in the setup to have it working at least as an 2x2 Interface...

there is also a patch to merge it to have all inputs and outputs working but i have never gotten into it...
jonS90
Posts: 1
Joined: Sun Feb 16, 2014 2:33 pm

Re: M-Audio Fast Track Pro

Post by jonS90 »

I have the same setup (with the exception of Ubuntu 13.10) and the exact same problem. I'm also new. Has anyone ever solved this?

QjackCtl shows 3 output devices for M-Audio Fast Track Pro. hw:Pro ("FastTrack Pro") and hw:Pro,0 ("USB Audio") correspond to the line outputs, and hw:Pro,1 ("USB Audio #1") corresponds to the SPDF output.

QjackCtl shows the same 3 as input devices, but none of them seem to work.

Code: Select all

$ arecord -l ; aplay -l
**** List of CAPTURE Hardware Devices ****
card 0: PCH [HDA Intel PCH], device 0: 92HD87B2/4 Analog [92HD87B2/4 Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: Pro [FastTrack Pro], device 0: USB Audio [USB Audio]
  Subdevices: 0/1
  Subdevice #0: subdevice #0
card 1: Pro [FastTrack Pro], device 1: USB Audio [USB Audio #1]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
**** List of PLAYBACK Hardware Devices ****
card 0: PCH [HDA Intel PCH], device 0: 92HD87B2/4 Analog [92HD87B2/4 Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: Pro [FastTrack Pro], device 0: USB Audio [USB Audio]
  Subdevices: 0/1
  Subdevice #0: subdevice #0
card 1: Pro [FastTrack Pro], device 1: USB Audio [USB Audio #1]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
davstar
Posts: 2
Joined: Tue Jul 01, 2014 6:29 am

Re: M-Audio Fast Track Pro

Post by davstar »

Rocky wrote:Hello everyone!
I am new in Linux Ubantu Studio 13.04. I use an M-Audio Fastr Track Pro, Jack and Ardour. The M-audio interface works well in playback, but it doesnt work for recording. I plug instruments and microfone but it doesnt send any signal to Ardour. There are just signal on interface. I read "envy24ctrl" could solve my problem but I didnt find it ro download. Please, if someone could help.

I am having the same problem too. I also have the M-Audio Fastrack Pro and just installed Linux Mint 17 on my lap top i can get it to play back through the sound card fine but trying to get it set up in ardour3 to record any sound is a different story alltogether has been a headache Linux is nothing like Windows when setting up audio software/hardware the thing that i noticed is that in the sound options it's doesn't let you select a different input like in Windows. so i'm really confused i know there's got to be a way to do it but i just can't figure it out right now any help would be greatly appreciated.
Pablo
Established Member
Posts: 1274
Joined: Thu Apr 17, 2008 9:57 pm
Been thanked: 3 times

Re: M-Audio Fast Track Pro

Post by Pablo »

The sound configuration window in Linux Mint (or in any other general purpose distro) is useless when it comes to ardour because the default sound server (pulseaudio) is not designed for realtime audio. That's why music creation software including ardour relies on Jack (another audio server) instead. Alas, with the exception of KXstudio, Jack is very badly integrated in the Linux Desktop.

So you have to configure the Jack audio server (for example by means of qjackctl, aka Jack Control) to use the Fast Track. In qjackctl, you normally select it in the Interface field but note that it won't show up by name. So you have to guess ("cat /proc/asound/cards", "aplay -l", "arecord -l" are useful informative terminal commands).

Also, run alsamixer in a terminal to make sure that software capture levels, if any, are OK.

Cheers!
DepreTux
Established Member
Posts: 135
Joined: Tue Jul 23, 2013 9:36 am

Re: M-Audio Fast Track Pro

Post by DepreTux »

I have the same soundcard. To run it at 48khz, 24bit resolution, duplex mode, you have to create the file /etc/modprobe.d/fast-track-pro.conf with the following:

Code: Select all

options snd_usb_audio vid=0x763 pid=0x2012 device_setup=0x09
Beware as the preceding will render the digital inputs useless (necessary tradeoff for a usb 1.1 card).

Reboot the computer and connect it again. Depending on your configuration, you will have to set up qjackctl (something like) the following way:

Input device: hw:Pro,1
Output device: hw:Pro,0

Also, make sure you set the sample rate to 48000hz and the periods to 3 or higher.

This should have your card working.

Let us know what it gives.
davstar
Posts: 2
Joined: Tue Jul 01, 2014 6:29 am

Re: M-Audio Fast Track Pro

Post by davstar »

Don't render your M-Audio Card Useless by doing those commands above- all you have to do is pick hw:Pro,1-1 input/output in jack setup and configure your connections. :D

Image

Image
DepreTux
Established Member
Posts: 135
Joined: Tue Jul 23, 2013 9:36 am

Re: M-Audio Fast Track Pro

Post by DepreTux »

davstar wrote:Don't render your M-Audio Card Useless by doing those commands above- all you have to do is pick hw:Pro,1-1 input/output in jack setup and configure your connections. :D
If you don't follow the steps above, you will be recording in 16-bit instead of 24.
chalee
Established Member
Posts: 29
Joined: Fri Dec 13, 2013 12:17 am

Re: M-Audio Fast Track Pro

Post by chalee »

Hey!

I uses Mixxx since many years under Linux (Mint 13) with KXStudio and got a lot of pci and usb-soundcards (M-Audio Delta 1010LT, Focusrite Scarlett 2i2, M-Audio Fast Track Mk2 good working with it.

Now i bought a M-Audio Fast Track Pro- because it's a really nice one with a lot of plugs.
It works out of the box under Linux- but without modification just as 16bit/44hz.
To get it working as a 24bit/48hz-card make a file "fast-track-pro.conf" in /etc/modprobe.d with:

Code: Select all

options snd_usb_audio vid=0x763 pid=0x2012 device_setup=0x09
like you said!

some wrote in the Internet this one:

Code: Select all

options snd_usb_audio vid=0x763 pid=0x2012 device_setup=0x09 index=5 enable=1
but the first one is working as well.

So now the m-audio fast track pro (FTP) is running in 24bit mode under Jack!
But not alone with Alsa!?!?!

for example: , if i start MIXXX now and want to load the FTP as first device, an error-message says that this is no supported samplerate.
If i choose 44hz instead of 48hz always the same. So i just can use MIXXX and the FTP with Jack (in 24bit) but NOT with Alsa alone (or just in 16bit)!?!

In the past i used always the onboard-soundchip for headphone-monitoring and this was working well. But without Alsa with the FTP there will be no more this option!???

if i have to use the Jack-Connection-Kit in MIXXX, there will be no channel 3-4 of the FTP- so i am not able to use headphone-monitoring?!?

Have somebody an idea??? or experience with the Fast Track Pro under Linux with Mixxx and ALSA!??
chalee
Established Member
Posts: 29
Joined: Fri Dec 13, 2013 12:17 am

Re: M-Audio Fast Track Pro

Post by chalee »

[update]
i can 't use the Inputs too!
I was trying a test setup with Ardour - recording a bass in mono via channel1.
With the Focusrite Scarlett no problem: Jack and Ardour recognizes the interface and inputs.
But with the FTP i can't get a sound or recording of it!!! -Just in direct monitor-modus of the soundcard i can hear my bass.
It seems so, that the Inputs are NOT activated with the "device_setup=0x9" or maybe with newer Kernels its another option???

It would be great if we solve this problems- because a lot of people just want to use this favourite Interface in the future.
And it's a great piece of the first professional usb-soundcard (under Linux too). It has too work.

So if we find the right parameter for using it in 24bit Modus AND with 2 Analog-Inputs too, it would be a great job- isn't it?!??

:D :) :) :P
chalee
Established Member
Posts: 29
Joined: Fri Dec 13, 2013 12:17 am

Re: M-Audio Fast Track Pro

Post by chalee »

So everything is fine now- i got 24bit-sound with FTP and Jack! :)
but also Mixxx i can just use in 24bit with Jack (and without Monitoring Headphones).
With ALSA-Driver it just drives only in 16bit class-compliant-mode in MIXXX- if i disable the special alsa-base.conf (or fast-track-pro.conf) entry.

So this would be no really Problem!

But it seems that with this entry of 0x9 the Analog Inputs are missing!?!?


arecord -l && aplay -l says me this:

Code: Select all

**** Liste der Hardware-Geräte (CAPTURE) ****
Karte 0: Pro [FastTrack Pro], Gerät 1: USB Audio [USB Audio #1]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 1: SB [HDA ATI SB], Gerät 0: ALC861 Analog [ALC861 Analog]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 1: SB [HDA ATI SB], Gerät 6: Si3054 Modem [Si3054 Modem]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
**** Liste der Hardware-Geräte (PLAYBACK) ****
Karte 0: Pro [FastTrack Pro], Gerät 0: USB Audio [USB Audio]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 0: Pro [FastTrack Pro], Gerät 1: USB Audio [USB Audio #1]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 1: SB [HDA ATI SB], Gerät 0: ALC861 Analog [ALC861 Analog]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 1: SB [HDA ATI SB], Gerät 1: ALC861 Digital [ALC861 Digital]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 1: SB [HDA ATI SB], Gerät 6: Si3054 Modem [Si3054 Modem]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
If i am in 16bit-Mode and the 24bit entry is off, than the analog-capture-device is listed (but not usable in Ardour too).
for example that is a driver/hardware-problem and not a system failure:
i put a Focusrite Scarlett on it, started jack with cadence, activating 1 Track in Ardour and it keeps soundly rocking! :shock:
But not my FTP do.

Is there another parameter or something i can write in the alsa-base.conf that the Analog-Inputs are usable in Ardour, Audacity, e.g!?!?

If i can't record i have to sell this card.
I need a good card to make music and not to loosing time to keep a stereo-input running ... 8)

PLEASE HELP!!!!!

PS: Jack (with cadence) is saying this:

Code: Select all

8 05:18:23 2015: self-connect-mode is "Don't restrict self connect requests"
Sat Apr 18 05:18:23 2015: Acquired audio card Audio0
Sat Apr 18 05:18:23 2015: creating alsa driver ... hw:Pro,0|hw:Pro,0|1024|3|48000|2|2|hwmon|swmeter|-|32bit
Sat Apr 18 05:18:23 2015: ERROR: ALSA: Cannot open PCM device alsa_pcm for capture. Falling back to playback-only mode
Sat Apr 18 05:18:23 2015: configuring for 48000Hz, period = 1024 frames (21.3 ms), buffer = 3 periods
Sat Apr 18 05:18:23 2015: ALSA: final selected sample format for playback: 24bit big-endian
Sat Apr 18 05:18:23 2015: ALSA: use 3 periods for playback
Sat Apr 18 05:18:23 2015: graph reorder: new port 'system:capture_1'
Sat Apr 18 05:18:23 2015: New client 'system' with PID 0
Sat Apr 18 05:18:23 2015: graph reorder: new port 'system:capture_2'
Sat Apr 18 05:18:23 2015: graph reorder: new port 'system:playback_1'
Sat Apr 18 05:18:23 2015: graph reorder: new port 'system:monitor_1'
Sat Apr 18 05:18:23 2015: graph reorder: new port 'system:playback_2'
Sat Apr 18 05:18:23 2015: graph reorder: new port 'system:monitor_2'
Sat Apr 18 05:20:24 2015: Stopping jack server...
Sat Apr 18 05:20:24 2015: Client 'system' with PID 0 is out
Sat Apr 18 05:20:24 2015: Released audio card Audio0
Sat Apr 18 05:20:27 2015: Saving settings to "/home/studio/.config/jack/conf.xml" ...
Sat Apr 18 05:20:42 2015: Saving settings to "/home/studio/.config/jack/conf.xml" ...
Sat Apr 18 05:20:43 2015: Starting jack server...
Sat Apr 18 05:20:43 2015: JACK server starting in realtime mode with priority 10
Sat Apr 18 05:20:43 2015: self-connect-mode is "Don't restrict self connect requests"
Sat Apr 18 05:20:43 2015: Acquired audio card Audio0
Sat Apr 18 05:20:43 2015: creating alsa driver ... hw:Pro,0|hw:Pro,0|1024|3|48000|2|2|nomon|swmeter|-|32bit
Sat Apr 18 05:20:43 2015: ERROR: ALSA: Cannot open PCM device alsa_pcm for capture. Falling back to playback-only mode
Sat Apr 18 05:20:43 2015: configuring for 48000Hz, period = 1024 frames (21.3 ms), buffer = 3 periods
Sat Apr 18 05:20:43 2015: ALSA: final selected sample format for playback: 24bit big-endian
Sat Apr 18 05:20:43 2015: ALSA: use 3 periods for playback
Sat Apr 18 05:20:43 2015: graph reorder: new port 'system:capture_1'
Sat Apr 18 05:20:43 2015: New client 'system' with PID 0
Sat Apr 18 05:20:43 2015: graph reorder: new port 'system:capture_2'
Sat Apr 18 05:20:43 2015: graph reorder: new port 'system:playback_1'
Sat Apr 18 05:20:43 2015: graph reorder: new port 'system:playback_2'
Sat Apr 18 05:21:52 2015: Stopping jack server...
Sat Apr 18 05:21:52 2015: Client 'system' with PID 0 is out
Sat Apr 18 05:21:52 2015: Released audio card Audio0
Sat Apr 18 05:37:46 2015: Saving settings to "/home/studio/.config/jack/conf.xml" ...
Pablo
Established Member
Posts: 1274
Joined: Thu Apr 17, 2008 9:57 pm
Been thanked: 3 times

Re: M-Audio Fast Track Pro

Post by Pablo »

According to arecord and aplay, hw:Pro,0 is playback only.

You need to tell jack (via Cadence or whatever) to use hw:Pro,1 as input device
chalee
Established Member
Posts: 29
Joined: Fri Dec 13, 2013 12:17 am

Re: M-Audio Fast Track Pro

Post by chalee »

Thanks Pablo for answering.
The Problem is, that the "m-audio-pro usb#1" the Spdif/Digital-Input is, which i really not needed most of the time.
This article here and others in the Web are saying that the option "0x9" activates all Inputs and make the FTP as 24bit running.

24bit-works - but like you see: without Analg-Inputs.

Yesterday i tried a little bit with the sums: i tried "0x2" (which was nowhere reported) an now look my arecord:

Code: Select all

**** Liste der Hardware-Geräte (CAPTURE) ****
Karte 0: Pro [FastTrack Pro], Gerät 0: USB Audio [USB Audio]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 0: Pro [FastTrack Pro], Gerät 1: USB Audio [USB Audio #1]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 1: SB [HDA ATI SB], Gerät 0: ALC861 Analog [ALC861 Analog]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 1: SB [HDA ATI SB], Gerät 6: Si3054 Modem [Si3054 Modem]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
**** Liste der Hardware-Geräte (PLAYBACK) ****
Karte 0: Pro [FastTrack Pro], Gerät 0: USB Audio [USB Audio]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 0: Pro [FastTrack Pro], Gerät 1: USB Audio [USB Audio #1]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 1: SB [HDA ATI SB], Gerät 0: ALC861 Analog [ALC861 Analog]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 1: SB [HDA ATI SB], Gerät 1: ALC861 Digital [ALC861 Digital]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
Karte 1: SB [HDA ATI SB], Gerät 6: Si3054 Modem [Si3054 Modem]
  Sub-Geräte: 1/1
  Sub-Gerät #0: subdevice #0
[code]



[code]Sat Apr 18 14:25:47 2015: ------------------
Sat Apr 18 14:25:47 2015: Controller activated. Version 1.9.10 (unknown) built on Sun Mar  8 21:37:09 2015
Sat Apr 18 14:25:47 2015: Loading settings from "/home/studio/.config/jack/conf.xml" using expat_2.0.1 ...
Sat Apr 18 14:25:47 2015: setting parameter 'engine':'driver':'(null)' to value "alsa"
Sat Apr 18 14:25:47 2015: setting parameter 'engine':'realtime':'(null)' to value "true"
Sat Apr 18 14:25:47 2015: setting parameter 'engine':'verbose':'(null)' to value "false"
Sat Apr 18 14:25:47 2015: setting parameter 'engine':'client-timeout':'(null)' to value "500"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'device' to value "hw:Pro,0"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'capture' to value "hw:Pro,0"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'playback' to value "hw:Pro,0"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'rate' to value "48000"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'period' to value "1024"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'nperiods' to value "3"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'hwmon' to value "false"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'hwmeter' to value "false"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'duplex' to value "true"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'softmode' to value "false"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'monitor' to value "false"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'dither' to value "n"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'inchannels' to value "2"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'outchannels' to value "2"
Sat Apr 18 14:25:47 2015: setting parameter 'drivers':'alsa':'shorts' to value "false"
Sat Apr 18 14:25:47 2015: Listening for D-Bus messages
Sat Apr 18 14:25:53 2015: Saving settings to "/home/studio/.config/jack/conf.xml" ...
Sat Apr 18 14:26:37 2015: Starting jack server...
Sat Apr 18 14:26:37 2015: JACK server starting in realtime mode with priority 10
Sat Apr 18 14:26:37 2015: self-connect-mode is "Don't restrict self connect requests"
Sat Apr 18 14:26:38 2015: Acquired audio card Audio0
Sat Apr 18 14:26:38 2015: creating alsa driver ... hw:Pro,0|hw:Pro,0|1024|3|48000|2|2|nomon|swmeter|-|32bit
Sat Apr 18 14:26:38 2015: configuring for 48000Hz, period = 1024 frames (21.3 ms), buffer = 3 periods
Sat Apr 18 14:26:38 2015: ALSA: final selected sample format for capture: 16bit little-endian
Sat Apr 18 14:26:38 2015: ALSA: use 3 periods for capture
Sat Apr 18 14:26:38 2015: ALSA: final selected sample format for playback: 16bit little-endian
Sat Apr 18 14:26:38 2015: ALSA: use 3 periods for playback
Sat Apr 18 14:26:38 2015: graph reorder: new port 'system:capture_1'
Sat Apr 18 14:26:38 2015: New client 'system' with PID 0
Sat Apr 18 14:26:38 2015: graph reorder: new port 'system:capture_2'
Sat Apr 18 14:26:38 2015: graph reorder: new port 'system:playback_1'
Sat Apr 18 14:26:38 2015: graph reorder: new port 'system:playback_2'
Sat Apr 18 14:27:59 2015: New client 'ardourprobe' with PID 3582
Sat Apr 18 14:27:59 2015: Client 'ardourprobe' with PID 3582 is out
Sat Apr 18 14:28:04 2015: New client 'ardour' with PID 3582
Sat Apr 18 14:28:05 2015: Connecting 'ardour:auditioner/out 1' to 'system:playback_1'
Sat Apr 18 14:28:05 2015: Connecting 'ardour:auditioner/out 2' to 'system:playback_2'
Sat Apr 18 14:28:05 2015: Connecting 'ardour:Audio 1/out 1' to 'ardour:master/in 1'
Sat Apr 18 14:28:05 2015: Connecting 'ardour:Audio 1/out 2' to 'ardour:master/in 2'
Sat Apr 18 14:28:05 2015: Connecting 'ardour:master/out 1' to 'system:playback_1'
Sat Apr 18 14:28:05 2015: Connecting 'ardour:master/out 2' to 'system:playback_2'
Sat Apr 18 14:28:05 2015: Connecting 'system:capture_1' to 'ardour:Audio 1/in 1'
Sat Apr 18 14:28:05 2015: Disconnecting 'ardour:Audio 1/out 1' from 'ardour:master/in 1'
Sat Apr 18 14:28:05 2015: Disconnecting 'ardour:Audio 1/out 2' from 'ardour:master/in 2'
Sat Apr 18 14:28:05 2015: Connecting 'ardour:Audio 1/out 1' to 'ardour:master/in 1'
Sat Apr 18 14:28:05 2015: Connecting 'ardour:Audio 1/out 2' to 'ardour:master/in 2'
Sat Apr 18 14:28:05 2015: Connecting 'ardour:click/out 1' to 'system:playback_1'
Sat Apr 18 14:28:05 2015: Connecting 'ardour:click/out 2' to 'system:playback_2'
Sat Apr 18 14:28:59 2015: Disconnecting 'system:capture_1' from 'ardour:Audio 1/in 1'
Sat Apr 18 14:29:40 2015: Connecting 'system:capture_1' to 'ardour:Audio 1/in 1'
chalee
Established Member
Posts: 29
Joined: Fri Dec 13, 2013 12:17 am

Re: M-Audio Fast Track Pro

Post by chalee »

see above the Jack-Protocol after starting it with Ardour!

So now the Analog-Inputs of the FTP are listed (without #1)- but i can't use it in audacity or Jack :(
there is coming no in sound from the analogs.
Any-Idea??

It looks like i need a little more configurating my Alsa or Jack??
In Cadence (which is really great and easy) i can choose all the right I/O's but there is coming again the error, that Jack can't capture.
Post Reply