<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Notes &#187; skype</title>
	<atom:link href="http://alexpb.com/notes/articles/tag/skype/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexpb.com/notes</link>
	<description></description>
	<lastBuildDate>Sun, 20 May 2012 00:39:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Change Skype&#8217;s 2.1.0.47 Default Sound Device in PulseAudio</title>
		<link>http://alexpb.com/notes/articles/2009/09/13/change-skypes-2-1-0-47-default-sound-device-in-pulseaudio/</link>
		<comments>http://alexpb.com/notes/articles/2009/09/13/change-skypes-2-1-0-47-default-sound-device-in-pulseaudio/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 03:37:31 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[voip]]></category>
		<category><![CDATA[pulseaudio]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://alexpb.com/notes/?p=668</guid>
		<description><![CDATA[Skype 2.1.0.47 beta uses pulseaudio as the default sound device, so you need to change the default sound device fo skype using a pulseaudio. Install pavucontrol if it&#8217;s not already installed Start pavucontrol Play a sound in the application where you need to change the default sound device. While the sound is playing, switch back [...]]]></description>
			<content:encoded><![CDATA[<p>Skype 2.1.0.47 beta uses pulseaudio as the default sound device, so you need to change the default sound device fo skype using a pulseaudio.</p>
<ol>
<li>Install pavucontrol if it&#8217;s not already installed</li>
<li>Start pavucontrol</li>
<li>Play a sound in the application where you need to change the default sound device.</li>
<li>While the sound is playing, switch back to pavucontrol and change the sound device.</li>
<li>that should be it.</li>
</ol>
<p>I needed to set my Logitech Clearchat Wireless Headphones as the default sound device for Skype 2.1.0.47 beta in Ubuntu Karmic Alpha (pavucontrol was not installed).</p>
]]></content:encoded>
			<wfw:commentRss>http://alexpb.com/notes/articles/2009/09/13/change-skypes-2-1-0-47-default-sound-device-in-pulseaudio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How-To Change The Default Sound Card in Slackware Linux</title>
		<link>http://alexpb.com/notes/articles/2009/04/20/howto-change-default-sound-card-slackware-linux/</link>
		<comments>http://alexpb.com/notes/articles/2009/04/20/howto-change-default-sound-card-slackware-linux/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 23:46:06 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[slackware]]></category>
		<category><![CDATA[headset]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[sound cards]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://alexpb.com/notes/?p=586</guid>
		<description><![CDATA[How-To Change The Default Sound Card in Slackware Linux My case: I have an on-board sound card that I use for everything except for Skype, where I use my Logitech ClearChat Wireless USB Headset. It is easy in Skype to select a different sound device. So I needed to set my on-board sound card as [...]]]></description>
			<content:encoded><![CDATA[<p>How-To Change The Default Sound Card in Slackware Linux</p>
<p>My case: I have an on-board sound card that I use for everything except for Skype, where I use my <a href="http://www.amazon.com/gp/product/B0015EY5RE?ie=UTF8&#038;tag=wusum-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B0015EY5RE">Logitech ClearChat Wireless USB Headset</a><img src="http://www.assoc-amazon.com/e/ir?t=wusum-20&#038;l=as2&#038;o=1&#038;a=B0015EY5RE" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />.  It is easy in Skype to select a different sound device.  So I needed to set my on-board sound card as the default output for everything else.</p>
<p>If they both use a different kernel module you can easily make sure the right one is the default card.</p>
<p>Find out what module is being used for your soundcards:</p>
<p><code>cat /proc/asound/modules</code></p>
<p>On my computer this gave</p>
<p><code>0 snd_usb_audio<br />
1 snd_intel8x0<br />
</code></p>
<p>Sound card 0 is the default one (snd_usb_audio in this case).  This is the module&#8217;s name.</p>
<p>You can&#8217;t assign card 0 because whichever card get&#8217;s loaded first get # 0.  So, you have to assign # 1 to the one you don&#8217;t want as the default card.  This can be done by adding one simple line to /etc/modprobe.d/sound (create it if it doesn&#8217;t exist):</p>
<p><code>options name_of_offending_module index=1</code></p>
<p>So, in my case this would be</p>
<p><code>options snd_usb_audio index=1</code></p>
<p>Reboot and try</p>
<p>via <a href='http://forum.vectorlinux.com/index.php?topic=4888.0'>HOWTO make one soundcard default</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexpb.com/notes/articles/2009/04/20/howto-change-default-sound-card-slackware-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

