Re: [Alsa-user] starters help (help!)

2015-08-17 Thread Clemens Ladisch
F. Dols wrote:
>   that driver is indeed installed, see below, but the module is not,

There is only one module, which is also a driver.  Its name is
"snd-indigodjx".  There isn't anything named "indigodjx".

> modinfo snd-indigodjx
>
> filename:
> /lib/modules/3.13.0-37-generic/kernel/sound/pci/echoaudio/snd-indigodjx.ko
> description:Echoaudio Indigo DJx soundcards driver

Try to load it with "modprobe snd-indigodjx" (as root).

This should have happened automatically, so probably there is some
problem with your ExpressCard port.  Do the ExpressCard controller and
the sound card show up in the output of "lspci"?


Regards,
Clemens

--
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] starters help (help!)

2015-08-17 Thread F. Dols
Hi,

thanks,
  that driver is indeed installed, see below, but the module is not, as 
shows:

$ sudo modinfo indigodjx

gives:

$ modinfo: ERROR: Module indigodjx not found.



modinfo snd-indigodjx

filename: 
/lib/modules/3.13.0-37-generic/kernel/sound/pci/echoaudio/snd-indigodjx.ko
description:Echoaudio Indigo DJx soundcards driver
license:GPL v2
author: Giuliano Pochini 
firmware:   ea/indigo_djx_dsp.fw
firmware:   ea/loader_dsp.fw
srcversion: E3C893C30981463980656D0
alias:  pci:v1057d3410svECC0sd00E0bc*sc*i*
depends:snd-pcm,snd,snd-page-alloc
intree: Y
vermagic:   3.13.0-37-generic SMP mod_unload modversions
signer: Magrathea: Glacier signing key
sig_key: 2C:B1:13:3B:35:F9:5A:9E:24:DE:AB:EE:B1:2B:A4:49:BC:BA:BB:C9
sig_hashalgo:   sha512
parm:   index:Index value for Indigo DJx soundcard. (array of int)
parm:   id:ID string for Indigo DJx soundcard. (array of charp)
parm:   enable:Enable Indigo DJx soundcard. (array of bool)


On 08/18/2015 07:29 AM, Takashi Sakamoto wrote:
> On Aug 18 2015 13:49, F. Dols wrote:
>> So, can someone give me more detailed directions for how to install in
>> Mint 17.1
>>
>> Module indigodjx
>
> Mint 17.1 is based on Ubuntu 14.04, therefore drivers are already 
> included in your system. You can confirm that your system has a driver 
> for your sound card by typing:
> $ modinfo snd-indigodjx
>
>
> Regards
>
> Takashi Sakamoto


--
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] starters help (help!)

2015-08-17 Thread Takashi Sakamoto
On Aug 18 2015 13:49, F. Dols wrote:
> So, can someone give me more detailed directions for how to install in
> Mint 17.1
>
> Module indigodjx

Mint 17.1 is based on Ubuntu 14.04, therefore drivers are already 
included in your system. You can confirm that your system has a driver 
for your sound card by typing:
$ modinfo snd-indigodjx


Regards

Takashi Sakamoto

--
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] starters help (help!)

2015-08-17 Thread F. Dols
Hi,

thanks all for your help!

So, can someone give me more detailed directions for how to install in 
Mint 17.1

Module indigodjx

?







On 08/18/2015 04:29 AM, Robert M. Riches Jr. wrote:
> There are two levels to make a module available:
>
> First, the module needs to be compiled for your kernel and
> available in (usually, IME) /lib/modules...  The distributions I
> have worked with put all modules they compile in the kernel
> packages.  Well, Tiny Core has some modules in separate packages.
> I don't know how Mint packages modules.  (I'm assuming I remember
> correctly that you're using Mint.)  It might be possible your
> kernel does not have that module compiled.  If the module isn't
> compiled for your kernel, that's beyond my ability to instruct
> for a distribution I have not used.
>
> Second, the module needs to be loaded into the running kernel.
> That is done by the modprobe command.
>
> HTH
>
> Robert
>
>
>> Date: Mon, 17 Aug 2015 20:41:08 +0200
>> From: "F. Dols" 
>> To: "Robert M. Riches Jr." ,
>>   alsa-user@lists.sourceforge.net
>>
>> Hi,
>>
>> sudo modinfo indigodjx
>>
>> gives:
>>
>> modinfo: ERROR: Module indigodjx not found.
>>
>> So, how do I proceed to install that module?
>>
>> thanks,
>>
>> F
>>
>>
>> On 08/16/2015 11:30 PM, Robert M. Riches Jr. wrote:
>>> In another reply, you posted that "sudo aplay -L" did not show
>>> the Indigodjx card.
>>>
>>> I wonder if the udev rule might be missing, which IIUC could
>>> cause the module to not load, which IIUC could cause the card to
>>> not be visible.
>>>
>>> Is the INDIGODJX kernel module loaded?
>>>
>>>   sudo lsmod | grep indigodjx
>>>
>>> You might unplug the card from USB and then do one of these
>>>
>>>   sudo tail -f /var/log/messages
>>>
>>>   sudo tail -f /var/log/syslog
>>>
>>> (whichever works on your system) while plugging the card back in
>>> to USB.  That should tell what udev is doing when the card is
>>> plugged in.  You might also do something similar to this to see
>>> what the kernel says is going on:
>>>
>>>   sudo dmesg | tail -44
>>>
>>> This should tell you if you have any udev rules for your card:
>>>
>>>   grep -ri indigodjx /etc/udev /lib/udev
>>>
>>> That recursive grep would have shown any file in or under those
>>> paths that mentioned indigodjx.  On my Debian 7 system, it does
>>> now return anything.  Debian 7 is pretty old, so perhaps too old
>>> to have a udev rule for the card.
>>>
>>> To see if the kernel module can see your card, you might try
>>> this:
>>>
>>>   sudo modprobe indigodjx
>>>
>>> Also, this indicates there's an enable parameter for the module:
>>>
>>>   sudo modinfo indigodjx
>>>
>>> IME, sound cards normally default to enabled, but perhaps this
>>> driver is different.  You might need to manually force it to be
>>> enabled.
>>>
>>> HTH
>>>
>>> Robert
>>>
>>>
 Date: Sun, 16 Aug 2015 20:14:10 +0200
 From: "F. Dols" 
 To: alsa-user@lists.sourceforge.net

 Hi,

 I need some starting pointers for the following.

 A.
 I use Mint 17.1 and bought the Indigodjx soundcard.

 On
 http://www.alsa-project.org/main/index.php/Matrix:Main

 I do not see the name ECHO nor INDIGO  in the Sound Card List.

 However, I do see the name INDIGODJX in the DRIVERS list.

 What does this mean? Is ALSA able to see this soundcard under Mint 17.1
 or not?


 B.
 I ALSA can see my soundcard, I would like to have some steps for making
 it possible.

 I have ALSA running: My Mixxx shows ALSA and uses ALSA for the build-in
 soundcard that I want to replace with the Indigodjx.

 I do understand what ALSA is, but I have as yet no intention to play
 with soundcard settings.

 My only thing is to have the Indigodjx recognised and used by Mixxx and
 Banshee.


 HOW DO I PROCEED? ( I am willing to make a intro doc based on my
 experiences, but as for now, I have to even know how to start..





 --
 ___
 Alsa-user mailing list
 Alsa-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/alsa-user


--
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] starters help (help!)

2015-08-17 Thread Robert M. Riches Jr.
There are two levels to make a module available:

First, the module needs to be compiled for your kernel and
available in (usually, IME) /lib/modules...  The distributions I
have worked with put all modules they compile in the kernel
packages.  Well, Tiny Core has some modules in separate packages.
I don't know how Mint packages modules.  (I'm assuming I remember
correctly that you're using Mint.)  It might be possible your
kernel does not have that module compiled.  If the module isn't
compiled for your kernel, that's beyond my ability to instruct
for a distribution I have not used.

Second, the module needs to be loaded into the running kernel.
That is done by the modprobe command.

HTH

Robert


> Date: Mon, 17 Aug 2015 20:41:08 +0200
> From: "F. Dols" 
> To: "Robert M. Riches Jr." , 
>  alsa-user@lists.sourceforge.net
>
> Hi,
>
> sudo modinfo indigodjx
>
> gives:
>
> modinfo: ERROR: Module indigodjx not found.
>
> So, how do I proceed to install that module?
>
> thanks,
>
> F
>
>
> On 08/16/2015 11:30 PM, Robert M. Riches Jr. wrote:
> > In another reply, you posted that "sudo aplay -L" did not show
> > the Indigodjx card.
> >
> > I wonder if the udev rule might be missing, which IIUC could
> > cause the module to not load, which IIUC could cause the card to
> > not be visible.
> >
> > Is the INDIGODJX kernel module loaded?
> >
> >  sudo lsmod | grep indigodjx
> >
> > You might unplug the card from USB and then do one of these
> >
> >  sudo tail -f /var/log/messages
> >
> >  sudo tail -f /var/log/syslog
> >
> > (whichever works on your system) while plugging the card back in
> > to USB.  That should tell what udev is doing when the card is
> > plugged in.  You might also do something similar to this to see
> > what the kernel says is going on:
> >
> >  sudo dmesg | tail -44
> >
> > This should tell you if you have any udev rules for your card:
> >
> >  grep -ri indigodjx /etc/udev /lib/udev
> >
> > That recursive grep would have shown any file in or under those
> > paths that mentioned indigodjx.  On my Debian 7 system, it does
> > now return anything.  Debian 7 is pretty old, so perhaps too old
> > to have a udev rule for the card.
> >
> > To see if the kernel module can see your card, you might try
> > this:
> >
> >  sudo modprobe indigodjx
> >
> > Also, this indicates there's an enable parameter for the module:
> >
> >  sudo modinfo indigodjx
> >
> > IME, sound cards normally default to enabled, but perhaps this
> > driver is different.  You might need to manually force it to be
> > enabled.
> >
> > HTH
> >
> > Robert
> >
> >
> >> Date: Sun, 16 Aug 2015 20:14:10 +0200
> >> From: "F. Dols" 
> >> To: alsa-user@lists.sourceforge.net
> >>
> >> Hi,
> >>
> >> I need some starting pointers for the following.
> >>
> >> A.
> >> I use Mint 17.1 and bought the Indigodjx soundcard.
> >>
> >> On
> >> http://www.alsa-project.org/main/index.php/Matrix:Main
> >>
> >> I do not see the name ECHO nor INDIGO  in the Sound Card List.
> >>
> >> However, I do see the name INDIGODJX in the DRIVERS list.
> >>
> >> What does this mean? Is ALSA able to see this soundcard under Mint 17.1
> >> or not?
> >>
> >>
> >> B.
> >> I ALSA can see my soundcard, I would like to have some steps for making
> >> it possible.
> >>
> >> I have ALSA running: My Mixxx shows ALSA and uses ALSA for the build-in
> >> soundcard that I want to replace with the Indigodjx.
> >>
> >> I do understand what ALSA is, but I have as yet no intention to play
> >> with soundcard settings.
> >>
> >> My only thing is to have the Indigodjx recognised and used by Mixxx and
> >> Banshee.
> >>
> >>
> >> HOW DO I PROCEED? ( I am willing to make a intro doc based on my
> >> experiences, but as for now, I have to even know how to start..
> >>
> >>
> >>
> >>
> >>
> >> --
> >> ___
> >> Alsa-user mailing list
> >> Alsa-user@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/alsa-user

--
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] starters help (help!)

2015-08-17 Thread F. Dols
Hi,

sudo modinfo indigodjx

gives:

modinfo: ERROR: Module indigodjx not found.

So, how do I proceed to install that module?

thanks,

F


On 08/16/2015 11:30 PM, Robert M. Riches Jr. wrote:
> In another reply, you posted that "sudo aplay -L" did not show
> the Indigodjx card.
>
> I wonder if the udev rule might be missing, which IIUC could
> cause the module to not load, which IIUC could cause the card to
> not be visible.
>
> Is the INDIGODJX kernel module loaded?
>
>  sudo lsmod | grep indigodjx
>
> You might unplug the card from USB and then do one of these
>
>  sudo tail -f /var/log/messages
>
>  sudo tail -f /var/log/syslog
>
> (whichever works on your system) while plugging the card back in
> to USB.  That should tell what udev is doing when the card is
> plugged in.  You might also do something similar to this to see
> what the kernel says is going on:
>
>  sudo dmesg | tail -44
>
> This should tell you if you have any udev rules for your card:
>
>  grep -ri indigodjx /etc/udev /lib/udev
>
> That recursive grep would have shown any file in or under those
> paths that mentioned indigodjx.  On my Debian 7 system, it does
> now return anything.  Debian 7 is pretty old, so perhaps too old
> to have a udev rule for the card.
>
> To see if the kernel module can see your card, you might try
> this:
>
>  sudo modprobe indigodjx
>
> Also, this indicates there's an enable parameter for the module:
>
>  sudo modinfo indigodjx
>
> IME, sound cards normally default to enabled, but perhaps this
> driver is different.  You might need to manually force it to be
> enabled.
>
> HTH
>
> Robert
>
>
>> Date: Sun, 16 Aug 2015 20:14:10 +0200
>> From: "F. Dols" 
>> To: alsa-user@lists.sourceforge.net
>>
>> Hi,
>>
>> I need some starting pointers for the following.
>>
>> A.
>> I use Mint 17.1 and bought the Indigodjx soundcard.
>>
>> On
>> http://www.alsa-project.org/main/index.php/Matrix:Main
>>
>> I do not see the name ECHO nor INDIGO  in the Sound Card List.
>>
>> However, I do see the name INDIGODJX in the DRIVERS list.
>>
>> What does this mean? Is ALSA able to see this soundcard under Mint 17.1
>> or not?
>>
>>
>> B.
>> I ALSA can see my soundcard, I would like to have some steps for making
>> it possible.
>>
>> I have ALSA running: My Mixxx shows ALSA and uses ALSA for the build-in
>> soundcard that I want to replace with the Indigodjx.
>>
>> I do understand what ALSA is, but I have as yet no intention to play
>> with soundcard settings.
>>
>> My only thing is to have the Indigodjx recognised and used by Mixxx and
>> Banshee.
>>
>>
>> HOW DO I PROCEED? ( I am willing to make a intro doc based on my
>> experiences, but as for now, I have to even know how to start..
>>
>>
>>
>>
>>
>> --
>> ___
>> Alsa-user mailing list
>> Alsa-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/alsa-user


--
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] Xonar D2 spdif input

2015-08-17 Thread Clemens Ladisch
Alan Bromborsky wrote:
> I have a Xonar D2 sound card.  I wish to capture 5.1 digital input from
> this sound card.

Please note that S/PDIF is designed for stereo audio data.  Using it
with multichannel data is possible only by compressing the audio so that
the compressed stream has the same bandwidth as an uncompressed stereo
stream; the compression algorithm is either Dolby Digital or DTS.

> Can this be done in linux and if so which alsa device and options should
> I use?

Run "arecord -l".  There should be a separate device for the digital
input, which should be available as "hw:D2,1".  You have to pretend to
record two channels, and the resulting file will not contain PCM audio
but compressed data.  I don't know you can decode it; probably with
ffmpeg.


Regards,
Clemens

--
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user


Re: [Alsa-user] starters help (help!)

2015-08-17 Thread Clemens Ladisch
F. Dols wrote:
> On
> http://www.alsa-project.org/main/index.php/Matrix:Main
> I do not see the name ECHO nor INDIGO  in the Sound Card List.

http://www.alsa-project.org/main/index.php/Matrix:Vendor-Echo_Corporation

> Is ALSA able to see this soundcard under Mint 17.1 or not?

That depends on whether ExpressCard and DJx support has been enabled
in Mint.

Check if "modprobe snd-indigodjx" works.  If it does, your card should
show up in /proc/asound/cards and in the output of "aplay -l".
(However, the driver should have been loaded automatically.)

Do you know if other ExpressCard devices work with your machine?


Regards,
Clemens

--
___
Alsa-user mailing list
Alsa-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-user