Closed bramtayl closed 3 years ago
Well, the oss.conf seems to be able to be fixed by replacing "port" with device. But it turns out I don't think I have oss in the first place, so I'm just going to delete the conf file for it. For the usb stream conf file, I think you're missing an @
on the function for the default card name. Also, defaults.pcm.card seems to be an int for me (0), but card seems to expect a string...so many a different default is needed?
I can fix the usb stream conf by setting the default to the actual name of a sound card and deleting the hints:
default "PCH [HDA Intel PCH]"
So presumably, card is expecting a name, not an index
So in summary:
oss.conf
should have "device" instead of "port" as a field nameusb-stream.conf
needs @func
instead of func
, doesn't accept hints, and refers to a card index when a name is expected...I don't mean to be rude, but is anyone maintaining this? Should these things be caught by tests?
The surround devices may not be available and there's no fix for this (the HDA config is too generic). It's just easy to ignore these errors. If we move completely to UCM, we can create a better device scheme.
Thank you for your report.
Sweet, thanks for the fix!
I've been trying to get Julia's PortAudio to load alsa-plugins (it's been a process). I thought I might as well see if I can cut down on the warnings on start up (
using PortAudio
from Julia) and some of them I've been able to knock out but some of them not so much:These ones
I got rid of by commenting out lines in my alsa.conf file:
This one
I got rid of by commening out:
I'm not sure if these work arounds are the best solutions...shouldn't alsa be able to tell that my laptop doesn't have surround sound?
This one is expected, I haven't yet figured out how to build jack on Julia's BinaryBuilder:
These ones are a bit confusing;
Is it possible that
oss/50-oss.conf
andusb_stream/98-usb-stream.conf
need to get updated?