vlc streaming using v4l2 for video, how can i stream audio from my envy24 audio card?

6,167

Solution 1

with arecord -L i got the list of channels i could use but it seems that no matter what i choose i can't hear sounds. i solved the issue by compiling vlc with oss support and using my alsa's oss emulated device /dev/dsp.

Solution 2

For me in most cases hw:x,0 works (x number of soundcard), but it does not work for one card - my cakewalk ua-1g - I get the same error. I'm not 100% sure but it seems that the format is s16le (16bit little endian) so this might file if the input does not match the format. In my case I probably need 24bit. Look in /proc/asound/cardx/... (like stream0) or directly in /proc/asound/ for some informations about the exact sample format.

Solution 3

The correct setting is to use the sample format S24_3LE (note the 3) for my sound card (24 bit signed little endian). arecord should show a summary of the exact sample format to use. On the alsa user ML I read

The envy chips are funny, they always capture something like 10 channels, and you need to reduce it to 2 if you want to save to a common 2-channel file. "plughw" can do this, so try,

arecord -f dat -D plughw:0 test.wav

As plughw works in vlc as well you can try that alternatively to dsp recording. Changing the sample format in vlc requires some digging in the vlc Wiki or docs and probably editing ~/.vlc/vlcrc. The above format is not stated in http://wiki.videolan.org/Raw so plughw is probably the best option.

Share:
6,167

Related videos on Youtube

ufk
Author by

ufk

Programmer, Administrator, Gamer and Musician

Updated on September 17, 2022

Comments

  • ufk
    ufk over 1 year

    i have VIA Technologies Inc. VT1720/24 [Envy24PT/HT] PCI Multi-Channel Audio Controller . i am able to stream video fine using v4l2 and video device name /dev/video0. the audio that i want to stream is connected to one of my envy24 inputs. no metter what audio device i try to choose (/dev/adsp,/dev/audio,/dev/audio1,/dev/dsp,/dev/dsp1) i get VLC is unable to open the MRL alsa:///dev/[device_name]. any ideas ?

  • ufk
    ufk over 14 years
    when i try to choose hw:0,0 it gives the following error: [0x1183d08] access_alsa demux error: ALSA: cannot set sample format (Invalid argument) [0x10cecb8] main access error: no access module matched "alsa" [0x1208a28] main input error: open of `alsa://hw:0,0' failed: no access module matched "alsa"