Hi Dave! 2012/11/14 Dave Pascoe <[email protected]>: > Here is /etc/asound.conf - hope this helps but I am still at a loss. I also > tried analyzing strace output but it didn't reveal the lower level details I > had hoped for. > > Dave > > > # Asound.conf START > pcm.snoop10 { > type dsnoop > ipc_key 183673654 > ipc_key_add_uid true > ipc_perm 0666 > slave { > pcm"hw:1" > period_time 0 > period_size 1024 > buffer_size 4096 > rate 11025 > channels 10 > } > slowptr true > > } > pcm.channel1 { > type plug > slave.pcm snoop10 > ttable.0.0 1 > } > pcm.channel1 { > type plug > slave.pcm snoop10 > ttable.0.0 1 > } > pcm.channel2 { > type plug > slave.pcm snoop10 > ttable.0.1 1 > } > pcm.channel3 { > type plug > slave.pcm snoop10 > ttable.0.2 1 > } > pcm.channel4 { > type plug > slave.pcm snoop10 > ttable.0.3 1 > } > pcm.channel5 { > type plug > slave.pcm snoop10 > ttable.0.4 1 > } > pcm.channel6 { > type plug > slave.pcm snoop10 > ttable.0.5 1 > } > pcm.channel7 { > type plug > slave.pcm snoop10 > ttable.0.6 1 > } > pcm.channel8 { > type plug > slave.pcm snoop10 > ttable.0.7 1 > }
Ok, here's a possible reasons. All those alsa devices are mono. However, by default, input.alsa tries to open its device in stereo, which will be refused here.. You should try this: s = (input.alsa(...):source(1,0,0)) You can get more information about stream content there: http://liquidsoap.fm/doc-1.0.1/stream_content.html Hope that's your issue! Romain ------------------------------------------------------------------------------ Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc. Download 30-day Free Trial. Pricing starts from $795 for 25 servers or applications! http://p.sf.net/sfu/zoho_dev2dev_nov _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
