<div dir="ltr"><br><div class="gmail_extra">On Wed, Jan 2, 2013 at 10:25 AM, Josu Lazkano <span dir="ltr"><<a href="mailto:josu.lazkano@gmail.com" target="_blank">josu.lazkano@gmail.com</a>></span> wrote:<br><div class="gmail_quote">
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hello all, thanks for the replys.<br>
<br>
I read the wiki page:<br>
<a href="http://www.mythtv.org/wiki/Simultaneous_Audio_Output_to_Independent_Devices" target="_blank">http://www.mythtv.org/wiki/Simultaneous_Audio_Output_to_Independent_Devices</a><br>
<br>
But I don't understand the ALSA "coding" for the .asoundrc file.<br>
<br>
On the audio setting I have working HDMI with<br>
"ALSA:hdmi:CARD=NVIDIA,DEV=1". And I have working analog with<br>
"ALSA:default:CARD=Intel" or "ALSA:sysdefault:CARD=Intel.<br>
<br>
But I want to mix both of them and get simultaneous output to HDMI and analog.<br>
<br>
Preston, I have same configuration as yours on a different MythTV<br>
system, maybe this will help for you: <a href="http://pastebin.com/vQtudef7" target="_blank">http://pastebin.com/vQtudef7</a><br>
<br>
The problem is that I don't know how to adapt it to my new audio configuration.<br>
<br>
I will appreciate any help.<br>
<br>
Thanks and best regards.<br>
<div class=""><div class="h5">--<br>
Josu Lazkano<br>
_______________________________________________<br>
mythtv-users mailing list<br>
<a href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a><br>
<a href="http://www.mythtv.org/mailman/listinfo/mythtv-users" target="_blank">http://www.mythtv.org/mailman/listinfo/mythtv-users</a><br>
</div></div></blockquote></div><br></div><div class="gmail_extra">Try this one:<br><br>pcm.!default {<br> type plug<br> slave {<br> pcm "both"<br> }<br>}<br><br>pcm.both {<br> type route<br> slave {<br>
pcm multi<br> channels 4<br> }<br> ttable.0.0 1.0<br> ttable.1.1 1.0<br> ttable.0.2 1.0<br> ttable.1.3 1.0<br>}<br><br>pcm.multi {<br> type multi<br> slaves.a {<br> pcm "tv"<br>
channels 2<br> }<br> slaves.b {<br> pcm "analog"<br> channels 2<br> }<br> bindings.0.slave a<br> bindings.0.channel 0<br> bindings.1.slave a<br> bindings.1.channel 1<br>
bindings.2.slave b<br> bindings.2.channel 0<br> bindings.3.slave b<br> bindings.3.channel 1<br>}<br><br><a href="http://pcm.tv">pcm.tv</a> {<br> type hw<br> card 1<br> <b>device 3</b><br> channels 2<br>
}<br><br>pcm.analog {<br> type hw<br> card 0<br> device 0<br> channels 2<br>}<br><br></div><div class="gmail_extra">I'm not sure exactly which device is the HDMI so if it is not working replace the bold out "device 3" with "device 9" and then "device 8" and "device 7" in the consequent retries. use ALSA:default as device in MythTV.<br>
<br></div></div>